Files
DLE/backend/artifacts/build-info/0a8127733a4304f351c9edaa66ba7dc8.json

1 line
5.0 MiB
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{"id":"0a8127733a4304f351c9edaa66ba7dc8","_format":"hh-sol-build-info-1","solcVersion":"0.8.20","solcLongVersion":"0.8.20+commit.a1b79de6","input":{"language":"Solidity","sources":{"@openzeppelin/contracts/access/AccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)\n\npragma solidity ^0.8.20;\n\nimport {IAccessControl} from \"./IAccessControl.sol\";\nimport {Context} from \"../utils/Context.sol\";\nimport {ERC165} from \"../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Contract module that allows children to implement role-based access\n * control mechanisms. This is a lightweight version that doesn't allow enumerating role\n * members except through off-chain means by accessing the contract event logs. Some\n * applications may benefit from on-chain enumerability, for those cases see\n * {AccessControlEnumerable}.\n *\n * Roles are referred to by their `bytes32` identifier. These should be exposed\n * in the external API and be unique. The best way to achieve this is by\n * using `public constant` hash digests:\n *\n * ```solidity\n * bytes32 public constant MY_ROLE = keccak256(\"MY_ROLE\");\n * ```\n *\n * Roles can be used to represent a set of permissions. To restrict access to a\n * function call, use {hasRole}:\n *\n * ```solidity\n * function foo() public {\n * require(hasRole(MY_ROLE, msg.sender));\n * ...\n * }\n * ```\n *\n * Roles can be granted and revoked dynamically via the {grantRole} and\n * {revokeRole} functions. Each role has an associated admin role, and only\n * accounts that have a role's admin role can call {grantRole} and {revokeRole}.\n *\n * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means\n * that only accounts with this role will be able to grant or revoke other\n * roles. More complex role relationships can be created by using\n * {_setRoleAdmin}.\n *\n * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to\n * grant and revoke this role. Extra precautions should be taken to secure\n * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}\n * to enforce additional security measures for this role.\n */\nabstract contract AccessControl is Context, IAccessControl, ERC165 {\n struct RoleData {\n mapping(address account => bool) hasRole;\n bytes32 adminRole;\n }\n\n mapping(bytes32 role => RoleData) private _roles;\n\n bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;\n\n /**\n * @dev Modifier that checks that an account has a specific role. Reverts\n * with an {AccessControlUnauthorizedAccount} error including the required role.\n */\n modifier onlyRole(bytes32 role) {\n _checkRole(role);\n _;\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev Returns `true` if `account` has been granted `role`.\n */\n function hasRole(bytes32 role, address account) public view virtual returns (bool) {\n return _roles[role].hasRole[account];\n }\n\n /**\n * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.\n */\n function _checkRole(bytes32 role) internal view virtual {\n _checkRole(role, _msgSender());\n }\n\n /**\n * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`\n * is missing `role`.\n */\n function _checkRole(bytes32 role, address account) internal view virtual {\n if (!hasRole(role, account)) {\n revert AccessControlUnauthorizedAccount(account, role);\n }\n }\n\n /**\n * @dev Returns the admin role that controls `role`. See {grantRole} and\n * {revokeRole}.\n *\n * To change a role's admin, use {_setRoleAdmin}.\n */\n function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {\n return _roles[role].adminRole;\n }\n\n /**\n * @dev Grants `role` to `account`.\n *\n * If `account` had not been already granted `role`, emits a {RoleGranted}\n * event.\n *\n * Requirements:\n *\n * - the caller must have ``role``'s admin role.\n *\n * May emit a {RoleGranted} event.\n */\n function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {\n _grantRole(role, account);\n }\n\n /**\n * @dev Revokes `role` from `account`.\n *\n * If `account` had been granted `role`, emits a {RoleRevoked} event.\n *\n * Requirements:\n *\n * - the caller must have ``role``'s admin role.\n *\n * May emit a {RoleRevoked} event.\n */\n function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {\n _revokeRole(role, account);\n }\n\n /**\n * @dev Revokes `role` from the calling account.\n *\n * Roles are often managed via {grantRole} and {revokeRole}: this function's\n * purpose is to provide a mechanism for accounts to lose their privileges\n * if they are compromised (such as when a trusted device is misplaced).\n *\n * If the calling account had been revoked `role`, emits a {RoleRevoked}\n * event.\n *\n * Requirements:\n *\n * - the caller must be `callerConfirmation`.\n *\n * May emit a {RoleRevoked} event.\n */\n function renounceRole(bytes32 role, address callerConfirmation) public virtual {\n if (callerConfirmation != _msgSender()) {\n revert AccessControlBadConfirmation();\n }\n\n _revokeRole(role, callerConfirmation);\n }\n\n /**\n * @dev Sets `adminRole` as ``role``'s admin role.\n *\n * Emits a {RoleAdminChanged} event.\n */\n function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {\n bytes32 previousAdminRole = getRoleAdmin(role);\n _roles[role].adminRole = adminRole;\n emit RoleAdminChanged(role, previousAdminRole, adminRole);\n }\n\n /**\n * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.\n *\n * Internal function without access restriction.\n *\n * May emit a {RoleGranted} event.\n */\n function _grantRole(bytes32 role, address account) internal virtual returns (bool) {\n if (!hasRole(role, account)) {\n _roles[role].hasRole[account] = true;\n emit RoleGranted(role, account, _msgSender());\n return true;\n } else {\n return false;\n }\n }\n\n /**\n * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.\n *\n * Internal function without access restriction.\n *\n * May emit a {RoleRevoked} event.\n */\n function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {\n if (hasRole(role, account)) {\n _roles[role].hasRole[account] = false;\n emit RoleRevoked(role, account, _msgSender());\n return true;\n } else {\n return false;\n }\n }\n}\n"},"@openzeppelin/contracts/access/IAccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev External interface of AccessControl declared to support ERC-165 detection.\n */\ninterface IAccessControl {\n /**\n * @dev The `account` is missing a role.\n */\n error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);\n\n /**\n * @dev The caller of a function is not the expected one.\n *\n * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\n */\n error AccessControlBadConfirmation();\n\n /**\n * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n *\n * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n * {RoleAdminChanged} not being emitted signaling this.\n */\n event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);\n\n /**\n * @dev Emitted when `account` is granted `role`.\n *\n * `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).\n * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\n */\n event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);\n\n /**\n * @dev Emitted when `account` is revoked `role`.\n *\n * `sender` is the account that originated the contract call:\n * - if using `revokeRole`, it is the admin role bearer\n * - if using `renounceRole`, it is the role bearer (i.e. `account`)\n */\n event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);\n\n /**\n * @dev Returns `true` if `account` has been granted `role`.\n */\n function hasRole(bytes32 role, address account) external view returns (bool);\n\n /**\n * @dev Returns the admin role that controls `role`. See {grantRole} and\n * {revokeRole}.\n *\n * To change a role's admin, use {AccessControl-_setRoleAdmin}.\n */\n function getRoleAdmin(bytes32 role) external view returns (bytes32);\n\n /**\n * @dev Grants `role` to `account`.\n *\n * If `account` had not been already granted `role`, emits a {RoleGranted}\n * event.\n *\n * Requirements:\n *\n * - the caller must have ``role``'s admin role.\n */\n function grantRole(bytes32 role, address account) external;\n\n /**\n * @dev Revokes `role` from `account`.\n *\n * If `account` had been granted `role`, emits a {RoleRevoked} event.\n *\n * Requirements:\n *\n * - the caller must have ``role``'s admin role.\n */\n function revokeRole(bytes32 role, address account) external;\n\n /**\n * @dev Revokes `role` from the calling account.\n *\n * Roles are often managed via {grantRole} and {revokeRole}: this function's\n * purpose is to provide a mechanism for accounts to lose their privileges\n * if they are compromised (such as when a trusted device is misplaced).\n *\n * If the calling account had been granted `role`, emits a {RoleRevoked}\n * event.\n *\n * Requirements:\n *\n * - the caller must be `callerConfirmation`.\n */\n function renounceRole(bytes32 role, address callerConfirmation) external;\n}\n"},"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (governance/extensions/GovernorCountingSimple.sol)\n\npragma solidity ^0.8.20;\n\nimport {Governor} from \"../Governor.sol\";\n\n/**\n * @dev Extension of {Governor} for simple, 3 options, vote counting.\n */\nabstract contract GovernorCountingSimple is Governor {\n /**\n * @dev Supported vote types. Matches Governor Bravo ordering.\n */\n enum VoteType {\n Against,\n For,\n Abstain\n }\n\n struct ProposalVote {\n uint256 againstVotes;\n uint256 forVotes;\n uint256 abstainVotes;\n mapping(address voter => bool) hasVoted;\n }\n\n mapping(uint256 proposalId => ProposalVote) private _proposalVotes;\n\n /**\n * @dev See {IGovernor-COUNTING_MODE}.\n */\n // solhint-disable-next-line func-name-mixedcase\n function COUNTING_MODE() public pure virtual override returns (string memory) {\n return \"support=bravo&quorum=for,abstain\";\n }\n\n /**\n * @dev See {IGovernor-hasVoted}.\n */\n function hasVoted(uint256 proposalId, address account) public view virtual override returns (bool) {\n return _proposalVotes[proposalId].hasVoted[account];\n }\n\n /**\n * @dev Accessor to the internal vote counts.\n */\n function proposalVotes(\n uint256 proposalId\n ) public view virtual returns (uint256 againstVotes, uint256 forVotes, uint256 abstainVotes) {\n ProposalVote storage proposalVote = _proposalVotes[proposalId];\n return (proposalVote.againstVotes, proposalVote.forVotes, proposalVote.abstainVotes);\n }\n\n /**\n * @dev See {Governor-_quorumReached}.\n */\n function _quorumReached(uint256 proposalId) internal view virtual override returns (bool) {\n ProposalVote storage proposalVote = _proposalVotes[proposalId];\n\n return quorum(proposalSnapshot(proposalId)) <= proposalVote.forVotes + proposalVote.abstainVotes;\n }\n\n /**\n * @dev See {Governor-_voteSucceeded}. In this module, the forVotes must be strictly over the againstVotes.\n */\n function _voteSucceeded(uint256 proposalId) internal view virtual override returns (bool) {\n ProposalVote storage proposalVote = _proposalVotes[proposalId];\n\n return proposalVote.forVotes > proposalVote.againstVotes;\n }\n\n /**\n * @dev See {Governor-_countVote}. In this module, the support follows the `VoteType` enum (from Governor Bravo).\n */\n function _countVote(\n uint256 proposalId,\n address account,\n uint8 support,\n uint256 totalWeight,\n bytes memory // params\n ) internal virtual override returns (uint256) {\n ProposalVote storage proposalVote = _proposalVotes[proposalId];\n\n if (proposalVote.hasVoted[account]) {\n revert GovernorAlreadyCastVote(account);\n }\n proposalVote.hasVoted[account] = true;\n\n if (support == uint8(VoteType.Against)) {\n proposalVote.againstVotes += totalWeight;\n } else if (support == uint8(VoteType.For)) {\n proposalVote.forVotes += totalWeight;\n } else if (support == uint8(VoteType.Abstain)) {\n proposalVote.abstainVotes += totalWeight;\n } else {\n revert GovernorInvalidVoteType();\n }\n\n return totalWeight;\n }\n}\n"},"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (governance/extensions/GovernorSettings.sol)\n\npragma solidity ^0.8.20;\n\nimport {Governor} from \"../Governor.sol\";\n\n/**\n * @dev Extension of {Governor} for settings updatable through governance.\n */\nabstract contract GovernorSettings is Governor {\n // amount of token\n uint256 private _proposalThreshold;\n // timepoint: limited to uint48 in core (same as clock() type)\n uint48 private _votingDelay;\n // duration: limited to uint32 in core\n uint32 private _votingPeriod;\n\n event VotingDelaySet(uint256 oldVotingDelay, uint256 newVotingDelay);\n event VotingPeriodSet(uint256 oldVotingPeriod, uint256 newVotingPeriod);\n event ProposalThresholdSet(uint256 oldProposalThreshold, uint256 newProposalThreshold);\n\n /**\n * @dev Initialize the governance parameters.\n */\n constructor(uint48 initialVotingDelay, uint32 initialVotingPeriod, uint256 initialProposalThreshold) {\n _setVotingDelay(initialVotingDelay);\n _setVotingPeriod(initialVotingPeriod);\n _setProposalThreshold(initialProposalThreshold);\n }\n\n /**\n * @dev See {IGovernor-votingDelay}.\n */\n function votingDelay() public view virtual override returns (uint256) {\n return _votingDelay;\n }\n\n /**\n * @dev See {IGovernor-votingPeriod}.\n */\n function votingPeriod() public view virtual override returns (uint256) {\n return _votingPeriod;\n }\n\n /**\n * @dev See {Governor-proposalThreshold}.\n */\n function proposalThreshold() public view virtual override returns (uint256) {\n return _proposalThreshold;\n }\n\n /**\n * @dev Update the voting delay. This operation can only be performed through a governance proposal.\n *\n * Emits a {VotingDelaySet} event.\n */\n function setVotingDelay(uint48 newVotingDelay) public virtual onlyGovernance {\n _setVotingDelay(newVotingDelay);\n }\n\n /**\n * @dev Update the voting period. This operation can only be performed through a governance proposal.\n *\n * Emits a {VotingPeriodSet} event.\n */\n function setVotingPeriod(uint32 newVotingPeriod) public virtual onlyGovernance {\n _setVotingPeriod(newVotingPeriod);\n }\n\n /**\n * @dev Update the proposal threshold. This operation can only be performed through a governance proposal.\n *\n * Emits a {ProposalThresholdSet} event.\n */\n function setProposalThreshold(uint256 newProposalThreshold) public virtual onlyGovernance {\n _setProposalThreshold(newProposalThreshold);\n }\n\n /**\n * @dev Internal setter for the voting delay.\n *\n * Emits a {VotingDelaySet} event.\n */\n function _setVotingDelay(uint48 newVotingDelay) internal virtual {\n emit VotingDelaySet(_votingDelay, newVotingDelay);\n _votingDelay = newVotingDelay;\n }\n\n /**\n * @dev Internal setter for the voting period.\n *\n * Emits a {VotingPeriodSet} event.\n */\n function _setVotingPeriod(uint32 newVotingPeriod) internal virtual {\n if (newVotingPeriod == 0) {\n revert GovernorInvalidVotingPeriod(0);\n }\n emit VotingPeriodSet(_votingPeriod, newVotingPeriod);\n _votingPeriod = newVotingPeriod;\n }\n\n /**\n * @dev Internal setter for the proposal threshold.\n *\n * Emits a {ProposalThresholdSet} event.\n */\n function _setProposalThreshold(uint256 newProposalThreshold) internal virtual {\n emit ProposalThresholdSet(_proposalThreshold, newProposalThreshold);\n _proposalThreshold = newProposalThreshold;\n }\n}\n"},"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (governance/extensions/GovernorTimelockControl.sol)\n\npragma solidity ^0.8.20;\n\nimport {IGovernor, Governor} from \"../Governor.sol\";\nimport {TimelockController} from \"../TimelockController.sol\";\nimport {IERC165} from \"../../interfaces/IERC165.sol\";\nimport {SafeCast} from \"../../utils/math/SafeCast.sol\";\n\n/**\n * @dev Extension of {Governor} that binds the execution process to an instance of {TimelockController}. This adds a\n * delay, enforced by the {TimelockController} to all successful proposal (in addition to the voting duration). The\n * {Governor} needs the proposer (and ideally the executor and canceller) roles for the {Governor} to work properly.\n *\n * Using this model means the proposal will be operated by the {TimelockController} and not by the {Governor}. Thus,\n * the assets and permissions must be attached to the {TimelockController}. Any asset sent to the {Governor} will be\n * inaccessible from a proposal, unless executed via {Governor-relay}.\n *\n * WARNING: Setting up the TimelockController to have additional proposers or cancellers besides the governor is very\n * risky, as it grants them the ability to: 1) execute operations as the timelock, and thus possibly performing\n * operations or accessing funds that are expected to only be accessible through a vote, and 2) block governance\n * proposals that have been approved by the voters, effectively executing a Denial of Service attack.\n */\nabstract contract GovernorTimelockControl is Governor {\n TimelockController private _timelock;\n mapping(uint256 proposalId => bytes32) private _timelockIds;\n\n /**\n * @dev Emitted when the timelock controller used for proposal execution is modified.\n */\n event TimelockChange(address oldTimelock, address newTimelock);\n\n /**\n * @dev Set the timelock.\n */\n constructor(TimelockController timelockAddress) {\n _updateTimelock(timelockAddress);\n }\n\n /**\n * @dev Overridden version of the {Governor-state} function that considers the status reported by the timelock.\n */\n function state(uint256 proposalId) public view virtual override returns (ProposalState) {\n ProposalState currentState = super.state(proposalId);\n\n if (currentState != ProposalState.Queued) {\n return currentState;\n }\n\n bytes32 queueid = _timelockIds[proposalId];\n if (_timelock.isOperationPending(queueid)) {\n return ProposalState.Queued;\n } else if (_timelock.isOperationDone(queueid)) {\n // This can happen if the proposal is executed directly on the timelock.\n return ProposalState.Executed;\n } else {\n // This can happen if the proposal is canceled directly on the timelock.\n return ProposalState.Canceled;\n }\n }\n\n /**\n * @dev Public accessor to check the address of the timelock\n */\n function timelock() public view virtual returns (address) {\n return address(_timelock);\n }\n\n /**\n * @dev See {IGovernor-proposalNeedsQueuing}.\n */\n function proposalNeedsQueuing(uint256) public view virtual override returns (bool) {\n return true;\n }\n\n /**\n * @dev Function to queue a proposal to the timelock.\n */\n function _queueOperations(\n uint256 proposalId,\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal virtual override returns (uint48) {\n uint256 delay = _timelock.getMinDelay();\n\n bytes32 salt = _timelockSalt(descriptionHash);\n _timelockIds[proposalId] = _timelock.hashOperationBatch(targets, values, calldatas, 0, salt);\n _timelock.scheduleBatch(targets, values, calldatas, 0, salt, delay);\n\n return SafeCast.toUint48(block.timestamp + delay);\n }\n\n /**\n * @dev Overridden version of the {Governor-_executeOperations} function that runs the already queued proposal\n * through the timelock.\n */\n function _executeOperations(\n uint256 proposalId,\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal virtual override {\n // execute\n _timelock.executeBatch{value: msg.value}(targets, values, calldatas, 0, _timelockSalt(descriptionHash));\n // cleanup for refund\n delete _timelockIds[proposalId];\n }\n\n /**\n * @dev Overridden version of the {Governor-_cancel} function to cancel the timelocked proposal if it has already\n * been queued.\n */\n // This function can reenter through the external call to the timelock, but we assume the timelock is trusted and\n // well behaved (according to TimelockController) and this will not happen.\n // slither-disable-next-line reentrancy-no-eth\n function _cancel(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal virtual override returns (uint256) {\n uint256 proposalId = super._cancel(targets, values, calldatas, descriptionHash);\n\n bytes32 timelockId = _timelockIds[proposalId];\n if (timelockId != 0) {\n // cancel\n _timelock.cancel(timelockId);\n // cleanup\n delete _timelockIds[proposalId];\n }\n\n return proposalId;\n }\n\n /**\n * @dev Address through which the governor executes action. In this case, the timelock.\n */\n function _executor() internal view virtual override returns (address) {\n return address(_timelock);\n }\n\n /**\n * @dev Public endpoint to update the underlying timelock instance. Restricted to the timelock itself, so updates\n * must be proposed, scheduled, and executed through governance proposals.\n *\n * CAUTION: It is not recommended to change the timelock while there are other queued governance proposals.\n */\n function updateTimelock(TimelockController newTimelock) external virtual onlyGovernance {\n _updateTimelock(newTimelock);\n }\n\n function _updateTimelock(TimelockController newTimelock) private {\n emit TimelockChange(address(_timelock), address(newTimelock));\n _timelock = newTimelock;\n }\n\n /**\n * @dev Computes the {TimelockController} operation salt.\n *\n * It is computed with the governor address itself to avoid collisions across governor instances using the\n * same timelock.\n */\n function _timelockSalt(bytes32 descriptionHash) private view returns (bytes32) {\n return bytes20(address(this)) ^ descriptionHash;\n }\n}\n"},"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (governance/extensions/GovernorVotes.sol)\n\npragma solidity ^0.8.20;\n\nimport {Governor} from \"../Governor.sol\";\nimport {IVotes} from \"../utils/IVotes.sol\";\nimport {IERC5805} from \"../../interfaces/IERC5805.sol\";\nimport {SafeCast} from \"../../utils/math/SafeCast.sol\";\nimport {Time} from \"../../utils/types/Time.sol\";\n\n/**\n * @dev Extension of {Governor} for voting weight extraction from an {ERC20Votes} token, or since v4.5 an {ERC721Votes}\n * token.\n */\nabstract contract GovernorVotes is Governor {\n IERC5805 private immutable _token;\n\n constructor(IVotes tokenAddress) {\n _token = IERC5805(address(tokenAddress));\n }\n\n /**\n * @dev The token that voting power is sourced from.\n */\n function token() public view virtual returns (IERC5805) {\n return _token;\n }\n\n /**\n * @dev Clock (as specified in ERC-6372) is set to match the token's clock. Fallback to block numbers if the token\n * does not implement ERC-6372.\n */\n function clock() public view virtual override returns (uint48) {\n try token().clock() returns (uint48 timepoint) {\n return timepoint;\n } catch {\n return Time.blockNumber();\n }\n }\n\n /**\n * @dev Machine-readable description of the clock as specified in ERC-6372.\n */\n // solhint-disable-next-line func-name-mixedcase\n function CLOCK_MODE() public view virtual override returns (string memory) {\n try token().CLOCK_MODE() returns (string memory clockmode) {\n return clockmode;\n } catch {\n return \"mode=blocknumber&from=default\";\n }\n }\n\n /**\n * Read the voting weight from the token's built in snapshot mechanism (see {Governor-_getVotes}).\n */\n function _getVotes(\n address account,\n uint256 timepoint,\n bytes memory /*params*/\n ) internal view virtual override returns (uint256) {\n return token().getPastVotes(account, timepoint);\n }\n}\n"},"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (governance/extensions/GovernorVotesQuorumFraction.sol)\n\npragma solidity ^0.8.20;\n\nimport {GovernorVotes} from \"./GovernorVotes.sol\";\nimport {SafeCast} from \"../../utils/math/SafeCast.sol\";\nimport {Checkpoints} from \"../../utils/structs/Checkpoints.sol\";\n\n/**\n * @dev Extension of {Governor} for voting weight extraction from an {ERC20Votes} token and a quorum expressed as a\n * fraction of the total supply.\n */\nabstract contract GovernorVotesQuorumFraction is GovernorVotes {\n using Checkpoints for Checkpoints.Trace208;\n\n Checkpoints.Trace208 private _quorumNumeratorHistory;\n\n event QuorumNumeratorUpdated(uint256 oldQuorumNumerator, uint256 newQuorumNumerator);\n\n /**\n * @dev The quorum set is not a valid fraction.\n */\n error GovernorInvalidQuorumFraction(uint256 quorumNumerator, uint256 quorumDenominator);\n\n /**\n * @dev Initialize quorum as a fraction of the token's total supply.\n *\n * The fraction is specified as `numerator / denominator`. By default the denominator is 100, so quorum is\n * specified as a percent: a numerator of 10 corresponds to quorum being 10% of total supply. The denominator can be\n * customized by overriding {quorumDenominator}.\n */\n constructor(uint256 quorumNumeratorValue) {\n _updateQuorumNumerator(quorumNumeratorValue);\n }\n\n /**\n * @dev Returns the current quorum numerator. See {quorumDenominator}.\n */\n function quorumNumerator() public view virtual returns (uint256) {\n return _quorumNumeratorHistory.latest();\n }\n\n /**\n * @dev Returns the quorum numerator at a specific timepoint. See {quorumDenominator}.\n */\n function quorumNumerator(uint256 timepoint) public view virtual returns (uint256) {\n uint256 length = _quorumNumeratorHistory._checkpoints.length;\n\n // Optimistic search, check the latest checkpoint\n Checkpoints.Checkpoint208 storage latest = _quorumNumeratorHistory._checkpoints[length - 1];\n uint48 latestKey = latest._key;\n uint208 latestValue = latest._value;\n if (latestKey <= timepoint) {\n return latestValue;\n }\n\n // Otherwise, do the binary search\n return _quorumNumeratorHistory.upperLookupRecent(SafeCast.toUint48(timepoint));\n }\n\n /**\n * @dev Returns the quorum denominator. Defaults to 100, but may be overridden.\n */\n function quorumDenominator() public view virtual returns (uint256) {\n return 100;\n }\n\n /**\n * @dev Returns the quorum for a timepoint, in terms of number of votes: `supply * numerator / denominator`.\n */\n function quorum(uint256 timepoint) public view virtual override returns (uint256) {\n return (token().getPastTotalSupply(timepoint) * quorumNumerator(timepoint)) / quorumDenominator();\n }\n\n /**\n * @dev Changes the quorum numerator.\n *\n * Emits a {QuorumNumeratorUpdated} event.\n *\n * Requirements:\n *\n * - Must be called through a governance proposal.\n * - New numerator must be smaller or equal to the denominator.\n */\n function updateQuorumNumerator(uint256 newQuorumNumerator) external virtual onlyGovernance {\n _updateQuorumNumerator(newQuorumNumerator);\n }\n\n /**\n * @dev Changes the quorum numerator.\n *\n * Emits a {QuorumNumeratorUpdated} event.\n *\n * Requirements:\n *\n * - New numerator must be smaller or equal to the denominator.\n */\n function _updateQuorumNumerator(uint256 newQuorumNumerator) internal virtual {\n uint256 denominator = quorumDenominator();\n if (newQuorumNumerator > denominator) {\n revert GovernorInvalidQuorumFraction(newQuorumNumerator, denominator);\n }\n\n uint256 oldQuorumNumerator = quorumNumerator();\n _quorumNumeratorHistory.push(clock(), SafeCast.toUint208(newQuorumNumerator));\n\n emit QuorumNumeratorUpdated(oldQuorumNumerator, newQuorumNumerator);\n }\n}\n"},"@openzeppelin/contracts/governance/Governor.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (governance/Governor.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721Receiver} from \"../token/ERC721/IERC721Receiver.sol\";\nimport {IERC1155Receiver} from \"../token/ERC1155/IERC1155Receiver.sol\";\nimport {EIP712} from \"../utils/cryptography/EIP712.sol\";\nimport {SignatureChecker} from \"../utils/cryptography/SignatureChecker.sol\";\nimport {IERC165, ERC165} from \"../utils/introspection/ERC165.sol\";\nimport {SafeCast} from \"../utils/math/SafeCast.sol\";\nimport {DoubleEndedQueue} from \"../utils/structs/DoubleEndedQueue.sol\";\nimport {Address} from \"../utils/Address.sol\";\nimport {Context} from \"../utils/Context.sol\";\nimport {Nonces} from \"../utils/Nonces.sol\";\nimport {Strings} from \"../utils/Strings.sol\";\nimport {IGovernor, IERC6372} from \"./IGovernor.sol\";\n\n/**\n * @dev Core of the governance system, designed to be extended through various modules.\n *\n * This contract is abstract and requires several functions to be implemented in various modules:\n *\n * - A counting module must implement {quorum}, {_quorumReached}, {_voteSucceeded} and {_countVote}\n * - A voting module must implement {_getVotes}\n * - Additionally, {votingPeriod} must also be implemented\n */\nabstract contract Governor is Context, ERC165, EIP712, Nonces, IGovernor, IERC721Receiver, IERC1155Receiver {\n using DoubleEndedQueue for DoubleEndedQueue.Bytes32Deque;\n\n bytes32 public constant BALLOT_TYPEHASH =\n keccak256(\"Ballot(uint256 proposalId,uint8 support,address voter,uint256 nonce)\");\n bytes32 public constant EXTENDED_BALLOT_TYPEHASH =\n keccak256(\n \"ExtendedBallot(uint256 proposalId,uint8 support,address voter,uint256 nonce,string reason,bytes params)\"\n );\n\n struct ProposalCore {\n address proposer;\n uint48 voteStart;\n uint32 voteDuration;\n bool executed;\n bool canceled;\n uint48 etaSeconds;\n }\n\n bytes32 private constant ALL_PROPOSAL_STATES_BITMAP = bytes32((2 ** (uint8(type(ProposalState).max) + 1)) - 1);\n string private _name;\n\n mapping(uint256 proposalId => ProposalCore) private _proposals;\n\n // This queue keeps track of the governor operating on itself. Calls to functions protected by the {onlyGovernance}\n // modifier needs to be whitelisted in this queue. Whitelisting is set in {execute}, consumed by the\n // {onlyGovernance} modifier and eventually reset after {_executeOperations} completes. This ensures that the\n // execution of {onlyGovernance} protected calls can only be achieved through successful proposals.\n DoubleEndedQueue.Bytes32Deque private _governanceCall;\n\n /**\n * @dev Restricts a function so it can only be executed through governance proposals. For example, governance\n * parameter setters in {GovernorSettings} are protected using this modifier.\n *\n * The governance executing address may be different from the Governor's own address, for example it could be a\n * timelock. This can be customized by modules by overriding {_executor}. The executor is only able to invoke these\n * functions during the execution of the governor's {execute} function, and not under any other circumstances. Thus,\n * for example, additional timelock proposers are not able to change governance parameters without going through the\n * governance protocol (since v4.6).\n */\n modifier onlyGovernance() {\n _checkGovernance();\n _;\n }\n\n /**\n * @dev Sets the value for {name} and {version}\n */\n constructor(string memory name_) EIP712(name_, version()) {\n _name = name_;\n }\n\n /**\n * @dev Function to receive ETH that will be handled by the governor (disabled if executor is a third party contract)\n */\n receive() external payable virtual {\n if (_executor() != address(this)) {\n revert GovernorDisabledDeposit();\n }\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {\n return\n interfaceId == type(IGovernor).interfaceId ||\n interfaceId == type(IERC1155Receiver).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IGovernor-name}.\n */\n function name() public view virtual returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IGovernor-version}.\n */\n function version() public view virtual returns (string memory) {\n return \"1\";\n }\n\n /**\n * @dev See {IGovernor-hashProposal}.\n *\n * The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array\n * and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id\n * can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in\n * advance, before the proposal is submitted.\n *\n * Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the\n * same proposal (with same operation and same description) will have the same id if submitted on multiple governors\n * across multiple networks. This also means that in order to execute the same operation twice (on the same\n * governor) the proposer will have to change the description in order to avoid proposal id conflicts.\n */\n function hashProposal(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) public pure virtual returns (uint256) {\n return uint256(keccak256(abi.encode(targets, values, calldatas, descriptionHash)));\n }\n\n /**\n * @dev See {IGovernor-state}.\n */\n function state(uint256 proposalId) public view virtual returns (ProposalState) {\n // We read the struct fields into the stack at once so Solidity emits a single SLOAD\n ProposalCore storage proposal = _proposals[proposalId];\n bool proposalExecuted = proposal.executed;\n bool proposalCanceled = proposal.canceled;\n\n if (proposalExecuted) {\n return ProposalState.Executed;\n }\n\n if (proposalCanceled) {\n return ProposalState.Canceled;\n }\n\n uint256 snapshot = proposalSnapshot(proposalId);\n\n if (snapshot == 0) {\n revert GovernorNonexistentProposal(proposalId);\n }\n\n uint256 currentTimepoint = clock();\n\n if (snapshot >= currentTimepoint) {\n return ProposalState.Pending;\n }\n\n uint256 deadline = proposalDeadline(proposalId);\n\n if (deadline >= currentTimepoint) {\n return ProposalState.Active;\n } else if (!_quorumReached(proposalId) || !_voteSucceeded(proposalId)) {\n return ProposalState.Defeated;\n } else if (proposalEta(proposalId) == 0) {\n return ProposalState.Succeeded;\n } else {\n return ProposalState.Queued;\n }\n }\n\n /**\n * @dev See {IGovernor-proposalThreshold}.\n */\n function proposalThreshold() public view virtual returns (uint256) {\n return 0;\n }\n\n /**\n * @dev See {IGovernor-proposalSnapshot}.\n */\n function proposalSnapshot(uint256 proposalId) public view virtual returns (uint256) {\n return _proposals[proposalId].voteStart;\n }\n\n /**\n * @dev See {IGovernor-proposalDeadline}.\n */\n function proposalDeadline(uint256 proposalId) public view virtual returns (uint256) {\n return _proposals[proposalId].voteStart + _proposals[proposalId].voteDuration;\n }\n\n /**\n * @dev See {IGovernor-proposalProposer}.\n */\n function proposalProposer(uint256 proposalId) public view virtual returns (address) {\n return _proposals[proposalId].proposer;\n }\n\n /**\n * @dev See {IGovernor-proposalEta}.\n */\n function proposalEta(uint256 proposalId) public view virtual returns (uint256) {\n return _proposals[proposalId].etaSeconds;\n }\n\n /**\n * @dev See {IGovernor-proposalNeedsQueuing}.\n */\n function proposalNeedsQueuing(uint256) public view virtual returns (bool) {\n return false;\n }\n\n /**\n * @dev Reverts if the `msg.sender` is not the executor. In case the executor is not this contract\n * itself, the function reverts if `msg.data` is not whitelisted as a result of an {execute}\n * operation. See {onlyGovernance}.\n */\n function _checkGovernance() internal virtual {\n if (_executor() != _msgSender()) {\n revert GovernorOnlyExecutor(_msgSender());\n }\n if (_executor() != address(this)) {\n bytes32 msgDataHash = keccak256(_msgData());\n // loop until popping the expected operation - throw if deque is empty (operation not authorized)\n while (_governanceCall.popFront() != msgDataHash) {}\n }\n }\n\n /**\n * @dev Amount of votes already cast passes the threshold limit.\n */\n function _quorumReached(uint256 proposalId) internal view virtual returns (bool);\n\n /**\n * @dev Is the proposal successful or not.\n */\n function _voteSucceeded(uint256 proposalId) internal view virtual returns (bool);\n\n /**\n * @dev Get the voting weight of `account` at a specific `timepoint`, for a vote as described by `params`.\n */\n function _getVotes(address account, uint256 timepoint, bytes memory params) internal view virtual returns (uint256);\n\n /**\n * @dev Register a vote for `proposalId` by `account` with a given `support`, voting `weight` and voting `params`.\n *\n * Note: Support is generic and can represent various things depending on the voting system used.\n */\n function _countVote(\n uint256 proposalId,\n address account,\n uint8 support,\n uint256 totalWeight,\n bytes memory params\n ) internal virtual returns (uint256);\n\n /**\n * @dev Hook that should be called every time the tally for a proposal is updated.\n *\n * Note: This function must run successfully. Reverts will result in the bricking of governance\n */\n function _tallyUpdated(uint256 proposalId) internal virtual {}\n\n /**\n * @dev Default additional encoded parameters used by castVote methods that don't include them\n *\n * Note: Should be overridden by specific implementations to use an appropriate value, the\n * meaning of the additional params, in the context of that implementation\n */\n function _defaultParams() internal view virtual returns (bytes memory) {\n return \"\";\n }\n\n /**\n * @dev See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\n */\n function propose(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n string memory description\n ) public virtual returns (uint256) {\n address proposer = _msgSender();\n\n // check description restriction\n if (!_isValidDescriptionForProposer(proposer, description)) {\n revert GovernorRestrictedProposer(proposer);\n }\n\n // check proposal threshold\n uint256 votesThreshold = proposalThreshold();\n if (votesThreshold > 0) {\n uint256 proposerVotes = getVotes(proposer, clock() - 1);\n if (proposerVotes < votesThreshold) {\n revert GovernorInsufficientProposerVotes(proposer, proposerVotes, votesThreshold);\n }\n }\n\n return _propose(targets, values, calldatas, description, proposer);\n }\n\n /**\n * @dev Internal propose mechanism. Can be overridden to add more logic on proposal creation.\n *\n * Emits a {IGovernor-ProposalCreated} event.\n */\n function _propose(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n string memory description,\n address proposer\n ) internal virtual returns (uint256 proposalId) {\n proposalId = hashProposal(targets, values, calldatas, keccak256(bytes(description)));\n\n if (targets.length != values.length || targets.length != calldatas.length || targets.length == 0) {\n revert GovernorInvalidProposalLength(targets.length, calldatas.length, values.length);\n }\n if (_proposals[proposalId].voteStart != 0) {\n revert GovernorUnexpectedProposalState(proposalId, state(proposalId), bytes32(0));\n }\n\n uint256 snapshot = clock() + votingDelay();\n uint256 duration = votingPeriod();\n\n ProposalCore storage proposal = _proposals[proposalId];\n proposal.proposer = proposer;\n proposal.voteStart = SafeCast.toUint48(snapshot);\n proposal.voteDuration = SafeCast.toUint32(duration);\n\n emit ProposalCreated(\n proposalId,\n proposer,\n targets,\n values,\n new string[](targets.length),\n calldatas,\n snapshot,\n snapshot + duration,\n description\n );\n\n // Using a named return variable to avoid stack too deep errors\n }\n\n /**\n * @dev See {IGovernor-queue}.\n */\n function queue(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) public virtual returns (uint256) {\n uint256 proposalId = hashProposal(targets, values, calldatas, descriptionHash);\n\n _validateStateBitmap(proposalId, _encodeStateBitmap(ProposalState.Succeeded));\n\n uint48 etaSeconds = _queueOperations(proposalId, targets, values, calldatas, descriptionHash);\n\n if (etaSeconds != 0) {\n _proposals[proposalId].etaSeconds = etaSeconds;\n emit ProposalQueued(proposalId, etaSeconds);\n } else {\n revert GovernorQueueNotImplemented();\n }\n\n return proposalId;\n }\n\n /**\n * @dev Internal queuing mechanism. Can be overridden (without a super call) to modify the way queuing is\n * performed (for example adding a vault/timelock).\n *\n * This is empty by default, and must be overridden to implement queuing.\n *\n * This function returns a timestamp that describes the expected ETA for execution. If the returned value is 0\n * (which is the default value), the core will consider queueing did not succeed, and the public {queue} function\n * will revert.\n *\n * NOTE: Calling this function directly will NOT check the current state of the proposal, or emit the\n * `ProposalQueued` event. Queuing a proposal should be done using {queue}.\n */\n function _queueOperations(\n uint256 /*proposalId*/,\n address[] memory /*targets*/,\n uint256[] memory /*values*/,\n bytes[] memory /*calldatas*/,\n bytes32 /*descriptionHash*/\n ) internal virtual returns (uint48) {\n return 0;\n }\n\n /**\n * @dev See {IGovernor-execute}.\n */\n function execute(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) public payable virtual returns (uint256) {\n uint256 proposalId = hashProposal(targets, values, calldatas, descriptionHash);\n\n _validateStateBitmap(\n proposalId,\n _encodeStateBitmap(ProposalState.Succeeded) | _encodeStateBitmap(ProposalState.Queued)\n );\n\n // mark as executed before calls to avoid reentrancy\n _proposals[proposalId].executed = true;\n\n // before execute: register governance call in queue.\n if (_executor() != address(this)) {\n for (uint256 i = 0; i < targets.length; ++i) {\n if (targets[i] == address(this)) {\n _governanceCall.pushBack(keccak256(calldatas[i]));\n }\n }\n }\n\n _executeOperations(proposalId, targets, values, calldatas, descriptionHash);\n\n // after execute: cleanup governance call queue.\n if (_executor() != address(this) && !_governanceCall.empty()) {\n _governanceCall.clear();\n }\n\n emit ProposalExecuted(proposalId);\n\n return proposalId;\n }\n\n /**\n * @dev Internal execution mechanism. Can be overridden (without a super call) to modify the way execution is\n * performed (for example adding a vault/timelock).\n *\n * NOTE: Calling this function directly will NOT check the current state of the proposal, set the executed flag to\n * true or emit the `ProposalExecuted` event. Executing a proposal should be done using {execute} or {_execute}.\n */\n function _executeOperations(\n uint256 /* proposalId */,\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 /*descriptionHash*/\n ) internal virtual {\n for (uint256 i = 0; i < targets.length; ++i) {\n (bool success, bytes memory returndata) = targets[i].call{value: values[i]}(calldatas[i]);\n Address.verifyCallResult(success, returndata);\n }\n }\n\n /**\n * @dev See {IGovernor-cancel}.\n */\n function cancel(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) public virtual returns (uint256) {\n // The proposalId will be recomputed in the `_cancel` call further down. However we need the value before we\n // do the internal call, because we need to check the proposal state BEFORE the internal `_cancel` call\n // changes it. The `hashProposal` duplication has a cost that is limited, and that we accept.\n uint256 proposalId = hashProposal(targets, values, calldatas, descriptionHash);\n\n // public cancel restrictions (on top of existing _cancel restrictions).\n _validateStateBitmap(proposalId, _encodeStateBitmap(ProposalState.Pending));\n if (_msgSender() != proposalProposer(proposalId)) {\n revert GovernorOnlyProposer(_msgSender());\n }\n\n return _cancel(targets, values, calldatas, descriptionHash);\n }\n\n /**\n * @dev Internal cancel mechanism with minimal restrictions. A proposal can be cancelled in any state other than\n * Canceled, Expired, or Executed. Once cancelled a proposal can't be re-submitted.\n *\n * Emits a {IGovernor-ProposalCanceled} event.\n */\n function _cancel(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal virtual returns (uint256) {\n uint256 proposalId = hashProposal(targets, values, calldatas, descriptionHash);\n\n _validateStateBitmap(\n proposalId,\n ALL_PROPOSAL_STATES_BITMAP ^\n _encodeStateBitmap(ProposalState.Canceled) ^\n _encodeStateBitmap(ProposalState.Expired) ^\n _encodeStateBitmap(ProposalState.Executed)\n );\n\n _proposals[proposalId].canceled = true;\n emit ProposalCanceled(proposalId);\n\n return proposalId;\n }\n\n /**\n * @dev See {IGovernor-getVotes}.\n */\n function getVotes(address account, uint256 timepoint) public view virtual returns (uint256) {\n return _getVotes(account, timepoint, _defaultParams());\n }\n\n /**\n * @dev See {IGovernor-getVotesWithParams}.\n */\n function getVotesWithParams(\n address account,\n uint256 timepoint,\n bytes memory params\n ) public view virtual returns (uint256) {\n return _getVotes(account, timepoint, params);\n }\n\n /**\n * @dev See {IGovernor-castVote}.\n */\n function castVote(uint256 proposalId, uint8 support) public virtual returns (uint256) {\n address voter = _msgSender();\n return _castVote(proposalId, voter, support, \"\");\n }\n\n /**\n * @dev See {IGovernor-castVoteWithReason}.\n */\n function castVoteWithReason(\n uint256 proposalId,\n uint8 support,\n string calldata reason\n ) public virtual returns (uint256) {\n address voter = _msgSender();\n return _castVote(proposalId, voter, support, reason);\n }\n\n /**\n * @dev See {IGovernor-castVoteWithReasonAndParams}.\n */\n function castVoteWithReasonAndParams(\n uint256 proposalId,\n uint8 support,\n string calldata reason,\n bytes memory params\n ) public virtual returns (uint256) {\n address voter = _msgSender();\n return _castVote(proposalId, voter, support, reason, params);\n }\n\n /**\n * @dev See {IGovernor-castVoteBySig}.\n */\n function castVoteBySig(\n uint256 proposalId,\n uint8 support,\n address voter,\n bytes memory signature\n ) public virtual returns (uint256) {\n bool valid = SignatureChecker.isValidSignatureNow(\n voter,\n _hashTypedDataV4(keccak256(abi.encode(BALLOT_TYPEHASH, proposalId, support, voter, _useNonce(voter)))),\n signature\n );\n\n if (!valid) {\n revert GovernorInvalidSignature(voter);\n }\n\n return _castVote(proposalId, voter, support, \"\");\n }\n\n /**\n * @dev See {IGovernor-castVoteWithReasonAndParamsBySig}.\n */\n function castVoteWithReasonAndParamsBySig(\n uint256 proposalId,\n uint8 support,\n address voter,\n string calldata reason,\n bytes memory params,\n bytes memory signature\n ) public virtual returns (uint256) {\n bool valid = SignatureChecker.isValidSignatureNow(\n voter,\n _hashTypedDataV4(\n keccak256(\n abi.encode(\n EXTENDED_BALLOT_TYPEHASH,\n proposalId,\n support,\n voter,\n _useNonce(voter),\n keccak256(bytes(reason)),\n keccak256(params)\n )\n )\n ),\n signature\n );\n\n if (!valid) {\n revert GovernorInvalidSignature(voter);\n }\n\n return _castVote(proposalId, voter, support, reason, params);\n }\n\n /**\n * @dev Internal vote casting mechanism: Check that the vote is pending, that it has not been cast yet, retrieve\n * voting weight using {IGovernor-getVotes} and call the {_countVote} internal function. Uses the _defaultParams().\n *\n * Emits a {IGovernor-VoteCast} event.\n */\n function _castVote(\n uint256 proposalId,\n address account,\n uint8 support,\n string memory reason\n ) internal virtual returns (uint256) {\n return _castVote(proposalId, account, support, reason, _defaultParams());\n }\n\n /**\n * @dev Internal vote casting mechanism: Check that the vote is pending, that it has not been cast yet, retrieve\n * voting weight using {IGovernor-getVotes} and call the {_countVote} internal function.\n *\n * Emits a {IGovernor-VoteCast} event.\n */\n function _castVote(\n uint256 proposalId,\n address account,\n uint8 support,\n string memory reason,\n bytes memory params\n ) internal virtual returns (uint256) {\n _validateStateBitmap(proposalId, _encodeStateBitmap(ProposalState.Active));\n\n uint256 totalWeight = _getVotes(account, proposalSnapshot(proposalId), params);\n uint256 votedWeight = _countVote(proposalId, account, support, totalWeight, params);\n\n if (params.length == 0) {\n emit VoteCast(account, proposalId, support, votedWeight, reason);\n } else {\n emit VoteCastWithParams(account, proposalId, support, votedWeight, reason, params);\n }\n\n _tallyUpdated(proposalId);\n\n return votedWeight;\n }\n\n /**\n * @dev Relays a transaction or function call to an arbitrary target. In cases where the governance executor\n * is some contract other than the governor itself, like when using a timelock, this function can be invoked\n * in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake.\n * Note that if the executor is simply the governor itself, use of `relay` is redundant.\n */\n function relay(address target, uint256 value, bytes calldata data) external payable virtual onlyGovernance {\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n Address.verifyCallResult(success, returndata);\n }\n\n /**\n * @dev Address through which the governor executes action. Will be overloaded by module that execute actions\n * through another contract such as a timelock.\n */\n function _executor() internal view virtual returns (address) {\n return address(this);\n }\n\n /**\n * @dev See {IERC721Receiver-onERC721Received}.\n * Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\n */\n function onERC721Received(address, address, uint256, bytes memory) public virtual returns (bytes4) {\n if (_executor() != address(this)) {\n revert GovernorDisabledDeposit();\n }\n return this.onERC721Received.selector;\n }\n\n /**\n * @dev See {IERC1155Receiver-onERC1155Received}.\n * Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\n */\n function onERC1155Received(address, address, uint256, uint256, bytes memory) public virtual returns (bytes4) {\n if (_executor() != address(this)) {\n revert GovernorDisabledDeposit();\n }\n return this.onERC1155Received.selector;\n }\n\n /**\n * @dev See {IERC1155Receiver-onERC1155BatchReceived}.\n * Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\n */\n function onERC1155BatchReceived(\n address,\n address,\n uint256[] memory,\n uint256[] memory,\n bytes memory\n ) public virtual returns (bytes4) {\n if (_executor() != address(this)) {\n revert GovernorDisabledDeposit();\n }\n return this.onERC1155BatchReceived.selector;\n }\n\n /**\n * @dev Encodes a `ProposalState` into a `bytes32` representation where each bit enabled corresponds to\n * the underlying position in the `ProposalState` enum. For example:\n *\n * 0x000...10000\n * ^^^^^^------ ...\n * ^----- Succeeded\n * ^---- Defeated\n * ^--- Canceled\n * ^-- Active\n * ^- Pending\n */\n function _encodeStateBitmap(ProposalState proposalState) internal pure returns (bytes32) {\n return bytes32(1 << uint8(proposalState));\n }\n\n /**\n * @dev Check that the current state of a proposal matches the requirements described by the `allowedStates` bitmap.\n * This bitmap should be built using `_encodeStateBitmap`.\n *\n * If requirements are not met, reverts with a {GovernorUnexpectedProposalState} error.\n */\n function _validateStateBitmap(uint256 proposalId, bytes32 allowedStates) internal view returns (ProposalState) {\n ProposalState currentState = state(proposalId);\n if (_encodeStateBitmap(currentState) & allowedStates == bytes32(0)) {\n revert GovernorUnexpectedProposalState(proposalId, currentState, allowedStates);\n }\n return currentState;\n }\n\n /*\n * @dev Check if the proposer is authorized to submit a proposal with the given description.\n *\n * If the proposal description ends with `#proposer=0x???`, where `0x???` is an address written as a hex string\n * (case insensitive), then the submission of this proposal will only be authorized to said address.\n *\n * This is used for frontrunning protection. By adding this pattern at the end of their proposal, one can ensure\n * that no other address can submit the same proposal. An attacker would have to either remove or change that part,\n * which would result in a different proposal id.\n *\n * If the description does not match this pattern, it is unrestricted and anyone can submit it. This includes:\n * - If the `0x???` part is not a valid hex string.\n * - If the `0x???` part is a valid hex string, but does not contain exactly 40 hex digits.\n * - If it ends with the expected suffix followed by newlines or other whitespace.\n * - If it ends with some other similar suffix, e.g. `#other=abc`.\n * - If it does not end with any such suffix.\n */\n function _isValidDescriptionForProposer(\n address proposer,\n string memory description\n ) internal view virtual returns (bool) {\n unchecked {\n uint256 length = bytes(description).length;\n\n // Length is too short to contain a valid proposer suffix\n if (length < 52) {\n return true;\n }\n\n // Extract what would be the `#proposer=` marker beginning the suffix\n bytes10 marker = bytes10(_unsafeReadBytesOffset(bytes(description), length - 52));\n\n // If the marker is not found, there is no proposer suffix to check\n if (marker != bytes10(\"#proposer=\")) {\n return true;\n }\n\n // Check that the last 42 characters (after the marker) are a properly formatted address.\n (bool success, address recovered) = Strings.tryParseAddress(description, length - 42, length);\n return !success || recovered == proposer;\n }\n }\n\n /**\n * @inheritdoc IERC6372\n */\n function clock() public view virtual returns (uint48);\n\n /**\n * @inheritdoc IERC6372\n */\n // solhint-disable-next-line func-name-mixedcase\n function CLOCK_MODE() public view virtual returns (string memory);\n\n /**\n * @inheritdoc IGovernor\n */\n function votingDelay() public view virtual returns (uint256);\n\n /**\n * @inheritdoc IGovernor\n */\n function votingPeriod() public view virtual returns (uint256);\n\n /**\n * @inheritdoc IGovernor\n */\n function quorum(uint256 timepoint) public view virtual returns (uint256);\n\n /**\n * @dev Reads a bytes32 from a bytes array without bounds checking.\n *\n * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n * assembly block as such would prevent some optimizations.\n */\n function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {\n // This is not memory safe in the general case, but all calls to this private function are within bounds.\n assembly (\"memory-safe\") {\n value := mload(add(buffer, add(0x20, offset)))\n }\n }\n}\n"},"@openzeppelin/contracts/governance/IGovernor.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (governance/IGovernor.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"../interfaces/IERC165.sol\";\nimport {IERC6372} from \"../interfaces/IERC6372.sol\";\n\n/**\n * @dev Interface of the {Governor} core.\n *\n * NOTE: Event parameters lack the `indexed` keyword for compatibility with GovernorBravo events.\n * Making event parameters `indexed` affects how events are decoded, potentially breaking existing indexers.\n */\ninterface IGovernor is IERC165, IERC6372 {\n enum ProposalState {\n Pending,\n Active,\n Canceled,\n Defeated,\n Succeeded,\n Queued,\n Expired,\n Executed\n }\n\n /**\n * @dev Empty proposal or a mismatch between the parameters length for a proposal call.\n */\n error GovernorInvalidProposalLength(uint256 targets, uint256 calldatas, uint256 values);\n\n /**\n * @dev The vote was already cast.\n */\n error GovernorAlreadyCastVote(address voter);\n\n /**\n * @dev Token deposits are disabled in this contract.\n */\n error GovernorDisabledDeposit();\n\n /**\n * @dev The `account` is not a proposer.\n */\n error GovernorOnlyProposer(address account);\n\n /**\n * @dev The `account` is not the governance executor.\n */\n error GovernorOnlyExecutor(address account);\n\n /**\n * @dev The `proposalId` doesn't exist.\n */\n error GovernorNonexistentProposal(uint256 proposalId);\n\n /**\n * @dev The current state of a proposal is not the required for performing an operation.\n * The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position\n * counting from right to left.\n *\n * NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist).\n * This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated).\n *\n * See {Governor-_encodeStateBitmap}.\n */\n error GovernorUnexpectedProposalState(uint256 proposalId, ProposalState current, bytes32 expectedStates);\n\n /**\n * @dev The voting period set is not a valid period.\n */\n error GovernorInvalidVotingPeriod(uint256 votingPeriod);\n\n /**\n * @dev The `proposer` does not have the required votes to create a proposal.\n */\n error GovernorInsufficientProposerVotes(address proposer, uint256 votes, uint256 threshold);\n\n /**\n * @dev The `proposer` is not allowed to create a proposal.\n */\n error GovernorRestrictedProposer(address proposer);\n\n /**\n * @dev The vote type used is not valid for the corresponding counting module.\n */\n error GovernorInvalidVoteType();\n\n /**\n * @dev The provided params buffer is not supported by the counting module.\n */\n error GovernorInvalidVoteParams();\n\n /**\n * @dev Queue operation is not implemented for this governor. Execute should be called directly.\n */\n error GovernorQueueNotImplemented();\n\n /**\n * @dev The proposal hasn't been queued yet.\n */\n error GovernorNotQueuedProposal(uint256 proposalId);\n\n /**\n * @dev The proposal has already been queued.\n */\n error GovernorAlreadyQueuedProposal(uint256 proposalId);\n\n /**\n * @dev The provided signature is not valid for the expected `voter`.\n * If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\n */\n error GovernorInvalidSignature(address voter);\n\n /**\n * @dev Emitted when a proposal is created.\n */\n event ProposalCreated(\n uint256 proposalId,\n address proposer,\n address[] targets,\n uint256[] values,\n string[] signatures,\n bytes[] calldatas,\n uint256 voteStart,\n uint256 voteEnd,\n string description\n );\n\n /**\n * @dev Emitted when a proposal is queued.\n */\n event ProposalQueued(uint256 proposalId, uint256 etaSeconds);\n\n /**\n * @dev Emitted when a proposal is executed.\n */\n event ProposalExecuted(uint256 proposalId);\n\n /**\n * @dev Emitted when a proposal is canceled.\n */\n event ProposalCanceled(uint256 proposalId);\n\n /**\n * @dev Emitted when a vote is cast without params.\n *\n * Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\n */\n event VoteCast(address indexed voter, uint256 proposalId, uint8 support, uint256 weight, string reason);\n\n /**\n * @dev Emitted when a vote is cast with params.\n *\n * Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\n * `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\n */\n event VoteCastWithParams(\n address indexed voter,\n uint256 proposalId,\n uint8 support,\n uint256 weight,\n string reason,\n bytes params\n );\n\n /**\n * @notice module:core\n * @dev Name of the governor instance (used in building the EIP-712 domain separator).\n */\n function name() external view returns (string memory);\n\n /**\n * @notice module:core\n * @dev Version of the governor instance (used in building the EIP-712 domain separator). Default: \"1\"\n */\n function version() external view returns (string memory);\n\n /**\n * @notice module:voting\n * @dev A description of the possible `support` values for {castVote} and the way these votes are counted, meant to\n * be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of\n * key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`.\n *\n * There are 2 standard keys: `support` and `quorum`.\n *\n * - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`.\n * - `quorum=bravo` means that only For votes are counted towards quorum.\n * - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum.\n *\n * If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique\n * name that describes the behavior. For example:\n *\n * - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain.\n * - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote.\n *\n * NOTE: The string can be decoded by the standard\n * https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`]\n * JavaScript class.\n */\n // solhint-disable-next-line func-name-mixedcase\n function COUNTING_MODE() external view returns (string memory);\n\n /**\n * @notice module:core\n * @dev Hashing function used to (re)build the proposal id from the proposal details..\n */\n function hashProposal(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) external pure returns (uint256);\n\n /**\n * @notice module:core\n * @dev Current state of a proposal, following Compound's convention\n */\n function state(uint256 proposalId) external view returns (ProposalState);\n\n /**\n * @notice module:core\n * @dev The number of votes required in order for a voter to become a proposer.\n */\n function proposalThreshold() external view returns (uint256);\n\n /**\n * @notice module:core\n * @dev Timepoint used to retrieve user's votes and quorum. If using block number (as per Compound's Comp), the\n * snapshot is performed at the end of this block. Hence, voting for this proposal starts at the beginning of the\n * following block.\n */\n function proposalSnapshot(uint256 proposalId) external view returns (uint256);\n\n /**\n * @notice module:core\n * @dev Timepoint at which votes close. If using block number, votes close at the end of this block, so it is\n * possible to cast a vote during this block.\n */\n function proposalDeadline(uint256 proposalId) external view returns (uint256);\n\n /**\n * @notice module:core\n * @dev The account that created a proposal.\n */\n function proposalProposer(uint256 proposalId) external view returns (address);\n\n /**\n * @notice module:core\n * @dev The time when a queued proposal becomes executable (\"ETA\"). Unlike {proposalSnapshot} and\n * {proposalDeadline}, this doesn't use the governor clock, and instead relies on the executor's clock which may be\n * different. In most cases this will be a timestamp.\n */\n function proposalEta(uint256 proposalId) external view returns (uint256);\n\n /**\n * @notice module:core\n * @dev Whether a proposal needs to be queued before execution.\n */\n function proposalNeedsQueuing(uint256 proposalId) external view returns (bool);\n\n /**\n * @notice module:user-config\n * @dev Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends\n * on the clock (see ERC-6372) this contract uses.\n *\n * This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a\n * proposal starts.\n *\n * NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type.\n * Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\n */\n function votingDelay() external view returns (uint256);\n\n /**\n * @notice module:user-config\n * @dev Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock\n * (see ERC-6372) this contract uses.\n *\n * NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting\n * duration compared to the voting delay.\n *\n * NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect\n * proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this\n * interface returns a uint256, the value it returns should fit in a uint32.\n */\n function votingPeriod() external view returns (uint256);\n\n /**\n * @notice module:user-config\n * @dev Minimum number of cast voted required for a proposal to be successful.\n *\n * NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the\n * quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\n */\n function quorum(uint256 timepoint) external view returns (uint256);\n\n /**\n * @notice module:reputation\n * @dev Voting power of an `account` at a specific `timepoint`.\n *\n * Note: this can be implemented in a number of ways, for example by reading the delegated balance from one (or\n * multiple), {ERC20Votes} tokens.\n */\n function getVotes(address account, uint256 timepoint) external view returns (uint256);\n\n /**\n * @notice module:reputation\n * @dev Voting power of an `account` at a specific `timepoint` given additional encoded parameters.\n */\n function getVotesWithParams(\n address account,\n uint256 timepoint,\n bytes memory params\n ) external view returns (uint256);\n\n /**\n * @notice module:voting\n * @dev Returns whether `account` has cast a vote on `proposalId`.\n */\n function hasVoted(uint256 proposalId, address account) external view returns (bool);\n\n /**\n * @dev Create a new proposal. Vote start after a delay specified by {IGovernor-votingDelay} and lasts for a\n * duration specified by {IGovernor-votingPeriod}.\n *\n * Emits a {ProposalCreated} event.\n *\n * NOTE: The state of the Governor and `targets` may change between the proposal creation and its execution.\n * This may be the result of third party actions on the targeted contracts, or other governor proposals.\n * For example, the balance of this contract could be updated or its access control permissions may be modified,\n * possibly compromising the proposal's ability to execute successfully (e.g. the governor doesn't have enough\n * value to cover a proposal with multiple transfers).\n */\n function propose(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n string memory description\n ) external returns (uint256 proposalId);\n\n /**\n * @dev Queue a proposal. Some governors require this step to be performed before execution can happen. If queuing\n * is not necessary, this function may revert.\n * Queuing a proposal requires the quorum to be reached, the vote to be successful, and the deadline to be reached.\n *\n * Emits a {ProposalQueued} event.\n */\n function queue(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) external returns (uint256 proposalId);\n\n /**\n * @dev Execute a successful proposal. This requires the quorum to be reached, the vote to be successful, and the\n * deadline to be reached. Depending on the governor it might also be required that the proposal was queued and\n * that some delay passed.\n *\n * Emits a {ProposalExecuted} event.\n *\n * NOTE: Some modules can modify the requirements for execution, for example by adding an additional timelock.\n */\n function execute(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) external payable returns (uint256 proposalId);\n\n /**\n * @dev Cancel a proposal. A proposal is cancellable by the proposer, but only while it is Pending state, i.e.\n * before the vote starts.\n *\n * Emits a {ProposalCanceled} event.\n */\n function cancel(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) external returns (uint256 proposalId);\n\n /**\n * @dev Cast a vote\n *\n * Emits a {VoteCast} event.\n */\n function castVote(uint256 proposalId, uint8 support) external returns (uint256 balance);\n\n /**\n * @dev Cast a vote with a reason\n *\n * Emits a {VoteCast} event.\n */\n function castVoteWithReason(\n uint256 proposalId,\n uint8 support,\n string calldata reason\n ) external returns (uint256 balance);\n\n /**\n * @dev Cast a vote with a reason and additional encoded parameters\n *\n * Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\n */\n function castVoteWithReasonAndParams(\n uint256 proposalId,\n uint8 support,\n string calldata reason,\n bytes memory params\n ) external returns (uint256 balance);\n\n /**\n * @dev Cast a vote using the voter's signature, including ERC-1271 signature support.\n *\n * Emits a {VoteCast} event.\n */\n function castVoteBySig(\n uint256 proposalId,\n uint8 support,\n address voter,\n bytes memory signature\n ) external returns (uint256 balance);\n\n /**\n * @dev Cast a vote with a reason and additional encoded parameters using the voter's signature,\n * including ERC-1271 signature support.\n *\n * Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\n */\n function castVoteWithReasonAndParamsBySig(\n uint256 proposalId,\n uint8 support,\n address voter,\n string calldata reason,\n bytes memory params,\n bytes memory signature\n ) external returns (uint256 balance);\n}\n"},"@openzeppelin/contracts/governance/TimelockController.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (governance/TimelockController.sol)\n\npragma solidity ^0.8.20;\n\nimport {AccessControl} from \"../access/AccessControl.sol\";\nimport {ERC721Holder} from \"../token/ERC721/utils/ERC721Holder.sol\";\nimport {ERC1155Holder} from \"../token/ERC1155/utils/ERC1155Holder.sol\";\nimport {Address} from \"../utils/Address.sol\";\n\n/**\n * @dev Contract module which acts as a timelocked controller. When set as the\n * owner of an `Ownable` smart contract, it enforces a timelock on all\n * `onlyOwner` maintenance operations. This gives time for users of the\n * controlled contract to exit before a potentially dangerous maintenance\n * operation is applied.\n *\n * By default, this contract is self administered, meaning administration tasks\n * have to go through the timelock process. The proposer (resp executor) role\n * is in charge of proposing (resp executing) operations. A common use case is\n * to position this {TimelockController} as the owner of a smart contract, with\n * a multisig or a DAO as the sole proposer.\n */\ncontract TimelockController is AccessControl, ERC721Holder, ERC1155Holder {\n bytes32 public constant PROPOSER_ROLE = keccak256(\"PROPOSER_ROLE\");\n bytes32 public constant EXECUTOR_ROLE = keccak256(\"EXECUTOR_ROLE\");\n bytes32 public constant CANCELLER_ROLE = keccak256(\"CANCELLER_ROLE\");\n uint256 internal constant _DONE_TIMESTAMP = uint256(1);\n\n mapping(bytes32 id => uint256) private _timestamps;\n uint256 private _minDelay;\n\n enum OperationState {\n Unset,\n Waiting,\n Ready,\n Done\n }\n\n /**\n * @dev Mismatch between the parameters length for an operation call.\n */\n error TimelockInvalidOperationLength(uint256 targets, uint256 payloads, uint256 values);\n\n /**\n * @dev The schedule operation doesn't meet the minimum delay.\n */\n error TimelockInsufficientDelay(uint256 delay, uint256 minDelay);\n\n /**\n * @dev The current state of an operation is not as required.\n * The `expectedStates` is a bitmap with the bits enabled for each OperationState enum position\n * counting from right to left.\n *\n * See {_encodeStateBitmap}.\n */\n error TimelockUnexpectedOperationState(bytes32 operationId, bytes32 expectedStates);\n\n /**\n * @dev The predecessor to an operation not yet done.\n */\n error TimelockUnexecutedPredecessor(bytes32 predecessorId);\n\n /**\n * @dev The caller account is not authorized.\n */\n error TimelockUnauthorizedCaller(address caller);\n\n /**\n * @dev Emitted when a call is scheduled as part of operation `id`.\n */\n event CallScheduled(\n bytes32 indexed id,\n uint256 indexed index,\n address target,\n uint256 value,\n bytes data,\n bytes32 predecessor,\n uint256 delay\n );\n\n /**\n * @dev Emitted when a call is performed as part of operation `id`.\n */\n event CallExecuted(bytes32 indexed id, uint256 indexed index, address target, uint256 value, bytes data);\n\n /**\n * @dev Emitted when new proposal is scheduled with non-zero salt.\n */\n event CallSalt(bytes32 indexed id, bytes32 salt);\n\n /**\n * @dev Emitted when operation `id` is cancelled.\n */\n event Cancelled(bytes32 indexed id);\n\n /**\n * @dev Emitted when the minimum delay for future operations is modified.\n */\n event MinDelayChange(uint256 oldDuration, uint256 newDuration);\n\n /**\n * @dev Initializes the contract with the following parameters:\n *\n * - `minDelay`: initial minimum delay in seconds for operations\n * - `proposers`: accounts to be granted proposer and canceller roles\n * - `executors`: accounts to be granted executor role\n * - `admin`: optional account to be granted admin role; disable with zero address\n *\n * IMPORTANT: The optional admin can aid with initial configuration of roles after deployment\n * without being subject to delay, but this role should be subsequently renounced in favor of\n * administration through timelocked proposals. Previous versions of this contract would assign\n * this admin to the deployer automatically and should be renounced as well.\n */\n constructor(uint256 minDelay, address[] memory proposers, address[] memory executors, address admin) {\n // self administration\n _grantRole(DEFAULT_ADMIN_ROLE, address(this));\n\n // optional admin\n if (admin != address(0)) {\n _grantRole(DEFAULT_ADMIN_ROLE, admin);\n }\n\n // register proposers and cancellers\n for (uint256 i = 0; i < proposers.length; ++i) {\n _grantRole(PROPOSER_ROLE, proposers[i]);\n _grantRole(CANCELLER_ROLE, proposers[i]);\n }\n\n // register executors\n for (uint256 i = 0; i < executors.length; ++i) {\n _grantRole(EXECUTOR_ROLE, executors[i]);\n }\n\n _minDelay = minDelay;\n emit MinDelayChange(0, minDelay);\n }\n\n /**\n * @dev Modifier to make a function callable only by a certain role. In\n * addition to checking the sender's role, `address(0)` 's role is also\n * considered. Granting a role to `address(0)` is equivalent to enabling\n * this role for everyone.\n */\n modifier onlyRoleOrOpenRole(bytes32 role) {\n if (!hasRole(role, address(0))) {\n _checkRole(role, _msgSender());\n }\n _;\n }\n\n /**\n * @dev Contract might receive/hold ETH as part of the maintenance process.\n */\n receive() external payable {}\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(\n bytes4 interfaceId\n ) public view virtual override(AccessControl, ERC1155Holder) returns (bool) {\n return super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev Returns whether an id corresponds to a registered operation. This\n * includes both Waiting, Ready, and Done operations.\n */\n function isOperation(bytes32 id) public view returns (bool) {\n return getOperationState(id) != OperationState.Unset;\n }\n\n /**\n * @dev Returns whether an operation is pending or not. Note that a \"pending\" operation may also be \"ready\".\n */\n function isOperationPending(bytes32 id) public view returns (bool) {\n OperationState state = getOperationState(id);\n return state == OperationState.Waiting || state == OperationState.Ready;\n }\n\n /**\n * @dev Returns whether an operation is ready for execution. Note that a \"ready\" operation is also \"pending\".\n */\n function isOperationReady(bytes32 id) public view returns (bool) {\n return getOperationState(id) == OperationState.Ready;\n }\n\n /**\n * @dev Returns whether an operation is done or not.\n */\n function isOperationDone(bytes32 id) public view returns (bool) {\n return getOperationState(id) == OperationState.Done;\n }\n\n /**\n * @dev Returns the timestamp at which an operation becomes ready (0 for\n * unset operations, 1 for done operations).\n */\n function getTimestamp(bytes32 id) public view virtual returns (uint256) {\n return _timestamps[id];\n }\n\n /**\n * @dev Returns operation state.\n */\n function getOperationState(bytes32 id) public view virtual returns (OperationState) {\n uint256 timestamp = getTimestamp(id);\n if (timestamp == 0) {\n return OperationState.Unset;\n } else if (timestamp == _DONE_TIMESTAMP) {\n return OperationState.Done;\n } else if (timestamp > block.timestamp) {\n return OperationState.Waiting;\n } else {\n return OperationState.Ready;\n }\n }\n\n /**\n * @dev Returns the minimum delay in seconds for an operation to become valid.\n *\n * This value can be changed by executing an operation that calls `updateDelay`.\n */\n function getMinDelay() public view virtual returns (uint256) {\n return _minDelay;\n }\n\n /**\n * @dev Returns the identifier of an operation containing a single\n * transaction.\n */\n function hashOperation(\n address target,\n uint256 value,\n bytes calldata data,\n bytes32 predecessor,\n bytes32 salt\n ) public pure virtual returns (bytes32) {\n return keccak256(abi.encode(target, value, data, predecessor, salt));\n }\n\n /**\n * @dev Returns the identifier of an operation containing a batch of\n * transactions.\n */\n function hashOperationBatch(\n address[] calldata targets,\n uint256[] calldata values,\n bytes[] calldata payloads,\n bytes32 predecessor,\n bytes32 salt\n ) public pure virtual returns (bytes32) {\n return keccak256(abi.encode(targets, values, payloads, predecessor, salt));\n }\n\n /**\n * @dev Schedule an operation containing a single transaction.\n *\n * Emits {CallSalt} if salt is nonzero, and {CallScheduled}.\n *\n * Requirements:\n *\n * - the caller must have the 'proposer' role.\n */\n function schedule(\n address target,\n uint256 value,\n bytes calldata data,\n bytes32 predecessor,\n bytes32 salt,\n uint256 delay\n ) public virtual onlyRole(PROPOSER_ROLE) {\n bytes32 id = hashOperation(target, value, data, predecessor, salt);\n _schedule(id, delay);\n emit CallScheduled(id, 0, target, value, data, predecessor, delay);\n if (salt != bytes32(0)) {\n emit CallSalt(id, salt);\n }\n }\n\n /**\n * @dev Schedule an operation containing a batch of transactions.\n *\n * Emits {CallSalt} if salt is nonzero, and one {CallScheduled} event per transaction in the batch.\n *\n * Requirements:\n *\n * - the caller must have the 'proposer' role.\n */\n function scheduleBatch(\n address[] calldata targets,\n uint256[] calldata values,\n bytes[] calldata payloads,\n bytes32 predecessor,\n bytes32 salt,\n uint256 delay\n ) public virtual onlyRole(PROPOSER_ROLE) {\n if (targets.length != values.length || targets.length != payloads.length) {\n revert TimelockInvalidOperationLength(targets.length, payloads.length, values.length);\n }\n\n bytes32 id = hashOperationBatch(targets, values, payloads, predecessor, salt);\n _schedule(id, delay);\n for (uint256 i = 0; i < targets.length; ++i) {\n emit CallScheduled(id, i, targets[i], values[i], payloads[i], predecessor, delay);\n }\n if (salt != bytes32(0)) {\n emit CallSalt(id, salt);\n }\n }\n\n /**\n * @dev Schedule an operation that is to become valid after a given delay.\n */\n function _schedule(bytes32 id, uint256 delay) private {\n if (isOperation(id)) {\n revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Unset));\n }\n uint256 minDelay = getMinDelay();\n if (delay < minDelay) {\n revert TimelockInsufficientDelay(delay, minDelay);\n }\n _timestamps[id] = block.timestamp + delay;\n }\n\n /**\n * @dev Cancel an operation.\n *\n * Requirements:\n *\n * - the caller must have the 'canceller' role.\n */\n function cancel(bytes32 id) public virtual onlyRole(CANCELLER_ROLE) {\n if (!isOperationPending(id)) {\n revert TimelockUnexpectedOperationState(\n id,\n _encodeStateBitmap(OperationState.Waiting) | _encodeStateBitmap(OperationState.Ready)\n );\n }\n delete _timestamps[id];\n\n emit Cancelled(id);\n }\n\n /**\n * @dev Execute an (ready) operation containing a single transaction.\n *\n * Emits a {CallExecuted} event.\n *\n * Requirements:\n *\n * - the caller must have the 'executor' role.\n */\n // This function can reenter, but it doesn't pose a risk because _afterCall checks that the proposal is pending,\n // thus any modifications to the operation during reentrancy should be caught.\n // slither-disable-next-line reentrancy-eth\n function execute(\n address target,\n uint256 value,\n bytes calldata payload,\n bytes32 predecessor,\n bytes32 salt\n ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) {\n bytes32 id = hashOperation(target, value, payload, predecessor, salt);\n\n _beforeCall(id, predecessor);\n _execute(target, value, payload);\n emit CallExecuted(id, 0, target, value, payload);\n _afterCall(id);\n }\n\n /**\n * @dev Execute an (ready) operation containing a batch of transactions.\n *\n * Emits one {CallExecuted} event per transaction in the batch.\n *\n * Requirements:\n *\n * - the caller must have the 'executor' role.\n */\n // This function can reenter, but it doesn't pose a risk because _afterCall checks that the proposal is pending,\n // thus any modifications to the operation during reentrancy should be caught.\n // slither-disable-next-line reentrancy-eth\n function executeBatch(\n address[] calldata targets,\n uint256[] calldata values,\n bytes[] calldata payloads,\n bytes32 predecessor,\n bytes32 salt\n ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) {\n if (targets.length != values.length || targets.length != payloads.length) {\n revert TimelockInvalidOperationLength(targets.length, payloads.length, values.length);\n }\n\n bytes32 id = hashOperationBatch(targets, values, payloads, predecessor, salt);\n\n _beforeCall(id, predecessor);\n for (uint256 i = 0; i < targets.length; ++i) {\n address target = targets[i];\n uint256 value = values[i];\n bytes calldata payload = payloads[i];\n _execute(target, value, payload);\n emit CallExecuted(id, i, target, value, payload);\n }\n _afterCall(id);\n }\n\n /**\n * @dev Execute an operation's call.\n */\n function _execute(address target, uint256 value, bytes calldata data) internal virtual {\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n Address.verifyCallResult(success, returndata);\n }\n\n /**\n * @dev Checks before execution of an operation's calls.\n */\n function _beforeCall(bytes32 id, bytes32 predecessor) private view {\n if (!isOperationReady(id)) {\n revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Ready));\n }\n if (predecessor != bytes32(0) && !isOperationDone(predecessor)) {\n revert TimelockUnexecutedPredecessor(predecessor);\n }\n }\n\n /**\n * @dev Checks after execution of an operation's calls.\n */\n function _afterCall(bytes32 id) private {\n if (!isOperationReady(id)) {\n revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Ready));\n }\n _timestamps[id] = _DONE_TIMESTAMP;\n }\n\n /**\n * @dev Changes the minimum timelock duration for future operations.\n *\n * Emits a {MinDelayChange} event.\n *\n * Requirements:\n *\n * - the caller must be the timelock itself. This can only be achieved by scheduling and later executing\n * an operation where the timelock is the target and the data is the ABI-encoded call to this function.\n */\n function updateDelay(uint256 newDelay) external virtual {\n address sender = _msgSender();\n if (sender != address(this)) {\n revert TimelockUnauthorizedCaller(sender);\n }\n emit MinDelayChange(_minDelay, newDelay);\n _minDelay = newDelay;\n }\n\n /**\n * @dev Encodes a `OperationState` into a `bytes32` representation where each bit enabled corresponds to\n * the underlying position in the `OperationState` enum. For example:\n *\n * 0x000...1000\n * ^^^^^^----- ...\n * ^---- Done\n * ^--- Ready\n * ^-- Waiting\n * ^- Unset\n */\n function _encodeStateBitmap(OperationState operationState) internal pure returns (bytes32) {\n return bytes32(1 << uint8(operationState));\n }\n}\n"},"@openzeppelin/contracts/governance/utils/IVotes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (governance/utils/IVotes.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.\n */\ninterface IVotes {\n /**\n * @dev The signature used has expired.\n */\n error VotesExpiredSignature(uint256 expiry);\n\n /**\n * @dev Emitted when an account changes their delegate.\n */\n event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);\n\n /**\n * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\n */\n event DelegateVotesChanged(address indexed delegate, uint256 previousVotes, uint256 newVotes);\n\n /**\n * @dev Returns the current amount of votes that `account` has.\n */\n function getVotes(address account) external view returns (uint256);\n\n /**\n * @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is\n * configured to use block numbers, this will return the value at the end of the corresponding block.\n */\n function getPastVotes(address account, uint256 timepoint) external view returns (uint256);\n\n /**\n * @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is\n * configured to use block numbers, this will return the value at the end of the corresponding block.\n *\n * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n * Votes that have not been delegated are still part of total supply, even though they would not participate in a\n * vote.\n */\n function getPastTotalSupply(uint256 timepoint) external view returns (uint256);\n\n /**\n * @dev Returns the delegate that `account` has chosen.\n */\n function delegates(address account) external view returns (address);\n\n /**\n * @dev Delegates votes from the sender to `delegatee`.\n */\n function delegate(address delegatee) external;\n\n /**\n * @dev Delegates votes from signer to `delegatee`.\n */\n function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external;\n}\n"},"@openzeppelin/contracts/governance/utils/Votes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (governance/utils/Votes.sol)\npragma solidity ^0.8.20;\n\nimport {IERC5805} from \"../../interfaces/IERC5805.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {Nonces} from \"../../utils/Nonces.sol\";\nimport {EIP712} from \"../../utils/cryptography/EIP712.sol\";\nimport {Checkpoints} from \"../../utils/structs/Checkpoints.sol\";\nimport {SafeCast} from \"../../utils/math/SafeCast.sol\";\nimport {ECDSA} from \"../../utils/cryptography/ECDSA.sol\";\nimport {Time} from \"../../utils/types/Time.sol\";\n\n/**\n * @dev This is a base abstract contract that tracks voting units, which are a measure of voting power that can be\n * transferred, and provides a system of vote delegation, where an account can delegate its voting units to a sort of\n * \"representative\" that will pool delegated voting units from different accounts and can then use it to vote in\n * decisions. In fact, voting units _must_ be delegated in order to count as actual votes, and an account has to\n * delegate those votes to itself if it wishes to participate in decisions and does not have a trusted representative.\n *\n * This contract is often combined with a token contract such that voting units correspond to token units. For an\n * example, see {ERC721Votes}.\n *\n * The full history of delegate votes is tracked on-chain so that governance protocols can consider votes as distributed\n * at a particular block number to protect against flash loans and double voting. The opt-in delegate system makes the\n * cost of this history tracking optional.\n *\n * When using this module the derived contract must implement {_getVotingUnits} (for example, make it return\n * {ERC721-balanceOf}), and can use {_transferVotingUnits} to track a change in the distribution of those units (in the\n * previous example, it would be included in {ERC721-_update}).\n */\nabstract contract Votes is Context, EIP712, Nonces, IERC5805 {\n using Checkpoints for Checkpoints.Trace208;\n\n bytes32 private constant DELEGATION_TYPEHASH =\n keccak256(\"Delegation(address delegatee,uint256 nonce,uint256 expiry)\");\n\n mapping(address account => address) private _delegatee;\n\n mapping(address delegatee => Checkpoints.Trace208) private _delegateCheckpoints;\n\n Checkpoints.Trace208 private _totalCheckpoints;\n\n /**\n * @dev The clock was incorrectly modified.\n */\n error ERC6372InconsistentClock();\n\n /**\n * @dev Lookup to future votes is not available.\n */\n error ERC5805FutureLookup(uint256 timepoint, uint48 clock);\n\n /**\n * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based\n * checkpoints (and voting), in which case {CLOCK_MODE} should be overridden as well to match.\n */\n function clock() public view virtual returns (uint48) {\n return Time.blockNumber();\n }\n\n /**\n * @dev Machine-readable description of the clock as specified in ERC-6372.\n */\n // solhint-disable-next-line func-name-mixedcase\n function CLOCK_MODE() public view virtual returns (string memory) {\n // Check that the clock was not modified\n if (clock() != Time.blockNumber()) {\n revert ERC6372InconsistentClock();\n }\n return \"mode=blocknumber&from=default\";\n }\n\n /**\n * @dev Validate that a timepoint is in the past, and return it as a uint48.\n */\n function _validateTimepoint(uint256 timepoint) internal view returns (uint48) {\n uint48 currentTimepoint = clock();\n if (timepoint >= currentTimepoint) revert ERC5805FutureLookup(timepoint, currentTimepoint);\n return SafeCast.toUint48(timepoint);\n }\n\n /**\n * @dev Returns the current amount of votes that `account` has.\n */\n function getVotes(address account) public view virtual returns (uint256) {\n return _delegateCheckpoints[account].latest();\n }\n\n /**\n * @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is\n * configured to use block numbers, this will return the value at the end of the corresponding block.\n *\n * Requirements:\n *\n * - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\n */\n function getPastVotes(address account, uint256 timepoint) public view virtual returns (uint256) {\n return _delegateCheckpoints[account].upperLookupRecent(_validateTimepoint(timepoint));\n }\n\n /**\n * @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is\n * configured to use block numbers, this will return the value at the end of the corresponding block.\n *\n * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n * Votes that have not been delegated are still part of total supply, even though they would not participate in a\n * vote.\n *\n * Requirements:\n *\n * - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\n */\n function getPastTotalSupply(uint256 timepoint) public view virtual returns (uint256) {\n return _totalCheckpoints.upperLookupRecent(_validateTimepoint(timepoint));\n }\n\n /**\n * @dev Returns the current total supply of votes.\n */\n function _getTotalSupply() internal view virtual returns (uint256) {\n return _totalCheckpoints.latest();\n }\n\n /**\n * @dev Returns the delegate that `account` has chosen.\n */\n function delegates(address account) public view virtual returns (address) {\n return _delegatee[account];\n }\n\n /**\n * @dev Delegates votes from the sender to `delegatee`.\n */\n function delegate(address delegatee) public virtual {\n address account = _msgSender();\n _delegate(account, delegatee);\n }\n\n /**\n * @dev Delegates votes from signer to `delegatee`.\n */\n function delegateBySig(\n address delegatee,\n uint256 nonce,\n uint256 expiry,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) public virtual {\n if (block.timestamp > expiry) {\n revert VotesExpiredSignature(expiry);\n }\n address signer = ECDSA.recover(\n _hashTypedDataV4(keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry))),\n v,\n r,\n s\n );\n _useCheckedNonce(signer, nonce);\n _delegate(signer, delegatee);\n }\n\n /**\n * @dev Delegate all of `account`'s voting units to `delegatee`.\n *\n * Emits events {IVotes-DelegateChanged} and {IVotes-DelegateVotesChanged}.\n */\n function _delegate(address account, address delegatee) internal virtual {\n address oldDelegate = delegates(account);\n _delegatee[account] = delegatee;\n\n emit DelegateChanged(account, oldDelegate, delegatee);\n _moveDelegateVotes(oldDelegate, delegatee, _getVotingUnits(account));\n }\n\n /**\n * @dev Transfers, mints, or burns voting units. To register a mint, `from` should be zero. To register a burn, `to`\n * should be zero. Total supply of voting units will be adjusted with mints and burns.\n */\n function _transferVotingUnits(address from, address to, uint256 amount) internal virtual {\n if (from == address(0)) {\n _push(_totalCheckpoints, _add, SafeCast.toUint208(amount));\n }\n if (to == address(0)) {\n _push(_totalCheckpoints, _subtract, SafeCast.toUint208(amount));\n }\n _moveDelegateVotes(delegates(from), delegates(to), amount);\n }\n\n /**\n * @dev Moves delegated votes from one delegate to another.\n */\n function _moveDelegateVotes(address from, address to, uint256 amount) internal virtual {\n if (from != to && amount > 0) {\n if (from != address(0)) {\n (uint256 oldValue, uint256 newValue) = _push(\n _delegateCheckpoints[from],\n _subtract,\n SafeCast.toUint208(amount)\n );\n emit DelegateVotesChanged(from, oldValue, newValue);\n }\n if (to != address(0)) {\n (uint256 oldValue, uint256 newValue) = _push(\n _delegateCheckpoints[to],\n _add,\n SafeCast.toUint208(amount)\n );\n emit DelegateVotesChanged(to, oldValue, newValue);\n }\n }\n }\n\n /**\n * @dev Get number of checkpoints for `account`.\n */\n function _numCheckpoints(address account) internal view virtual returns (uint32) {\n return SafeCast.toUint32(_delegateCheckpoints[account].length());\n }\n\n /**\n * @dev Get the `pos`-th checkpoint for `account`.\n */\n function _checkpoints(\n address account,\n uint32 pos\n ) internal view virtual returns (Checkpoints.Checkpoint208 memory) {\n return _delegateCheckpoints[account].at(pos);\n }\n\n function _push(\n Checkpoints.Trace208 storage store,\n function(uint208, uint208) view returns (uint208) op,\n uint208 delta\n ) private returns (uint208 oldValue, uint208 newValue) {\n return store.push(clock(), op(store.latest(), delta));\n }\n\n function _add(uint208 a, uint208 b) private pure returns (uint208) {\n return a + b;\n }\n\n function _subtract(uint208 a, uint208 b) private pure returns (uint208) {\n return a - b;\n }\n\n /**\n * @dev Must return the voting units held by an account.\n */\n function _getVotingUnits(address) internal view virtual returns (uint256);\n}\n"},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Standard ERC-20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\n */\ninterface IERC20Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC20InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC20InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `spender`s `allowance`. Used in transfers.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n * @param allowance Amount of tokens a `spender` is allowed to operate with.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC20InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC20InvalidSpender(address spender);\n}\n\n/**\n * @dev Standard ERC-721 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\n */\ninterface IERC721Errors {\n /**\n * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n * Used in balance queries.\n * @param owner Address of the current owner of a token.\n */\n error ERC721InvalidOwner(address owner);\n\n /**\n * @dev Indicates a `tokenId` whose `owner` is the zero address.\n * @param tokenId Identifier number of a token.\n */\n error ERC721NonexistentToken(uint256 tokenId);\n\n /**\n * @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param tokenId Identifier number of a token.\n * @param owner Address of the current owner of a token.\n */\n error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC721InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC721InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param tokenId Identifier number of a token.\n */\n error ERC721InsufficientApproval(address operator, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC721InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC721InvalidOperator(address operator);\n}\n\n/**\n * @dev Standard ERC-1155 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\n */\ninterface IERC1155Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n * @param tokenId Identifier number of a token.\n */\n error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC1155InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC1155InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param owner Address of the current owner of a token.\n */\n error ERC1155MissingApprovalForAll(address operator, address owner);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC1155InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC1155InvalidOperator(address operator);\n\n /**\n * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n * Used in batch transfers.\n * @param idsLength Length of the array of token identifiers\n * @param valuesLength Length of the array of token amounts\n */\n error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);\n}\n"},"@openzeppelin/contracts/interfaces/IERC1271.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1271.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-1271 standard signature validation method for\n * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].\n */\ninterface IERC1271 {\n /**\n * @dev Should return whether the signature provided is valid for the provided data\n * @param hash Hash of the data to be signed\n * @param signature Signature byte array associated with _data\n */\n function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);\n}\n"},"@openzeppelin/contracts/interfaces/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"../utils/introspection/IERC165.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)\n\npragma solidity ^0.8.20;\n\ninterface IERC5267 {\n /**\n * @dev MAY be emitted to signal that the domain could have changed.\n */\n event EIP712DomainChanged();\n\n /**\n * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n * signature.\n */\n function eip712Domain()\n external\n view\n returns (\n bytes1 fields,\n string memory name,\n string memory version,\n uint256 chainId,\n address verifyingContract,\n bytes32 salt,\n uint256[] memory extensions\n );\n}\n"},"@openzeppelin/contracts/interfaces/IERC5805.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5805.sol)\n\npragma solidity ^0.8.20;\n\nimport {IVotes} from \"../governance/utils/IVotes.sol\";\nimport {IERC6372} from \"./IERC6372.sol\";\n\ninterface IERC5805 is IERC6372, IVotes {}\n"},"@openzeppelin/contracts/interfaces/IERC6372.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC6372.sol)\n\npragma solidity ^0.8.20;\n\ninterface IERC6372 {\n /**\n * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\n */\n function clock() external view returns (uint48);\n\n /**\n * @dev Description of the clock\n */\n // solhint-disable-next-line func-name-mixedcase\n function CLOCK_MODE() external view returns (string memory);\n}\n"},"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/IERC1155Receiver.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Interface that must be implemented by smart contracts in order to receive\n * ERC-1155 token transfers.\n */\ninterface IERC1155Receiver is IERC165 {\n /**\n * @dev Handles the receipt of a single ERC-1155 token type. This function is\n * called at the end of a `safeTransferFrom` after the balance has been updated.\n *\n * NOTE: To accept the transfer, this must return\n * `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))`\n * (i.e. 0xf23a6e61, or its own function selector).\n *\n * @param operator The address which initiated the transfer (i.e. msg.sender)\n * @param from The address which previously owned the token\n * @param id The ID of the token being transferred\n * @param value The amount of tokens being transferred\n * @param data Additional data with no specified format\n * @return `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))` if transfer is allowed\n */\n function onERC1155Received(\n address operator,\n address from,\n uint256 id,\n uint256 value,\n bytes calldata data\n ) external returns (bytes4);\n\n /**\n * @dev Handles the receipt of a multiple ERC-1155 token types. This function\n * is called at the end of a `safeBatchTransferFrom` after the balances have\n * been updated.\n *\n * NOTE: To accept the transfer(s), this must return\n * `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))`\n * (i.e. 0xbc197c81, or its own function selector).\n *\n * @param operator The address which initiated the batch transfer (i.e. msg.sender)\n * @param from The address which previously owned the token\n * @param ids An array containing ids of each token being transferred (order and length must match values array)\n * @param values An array containing amounts of each token being transferred (order and length must match ids array)\n * @param data Additional data with no specified format\n * @return `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))` if transfer is allowed\n */\n function onERC1155BatchReceived(\n address operator,\n address from,\n uint256[] calldata ids,\n uint256[] calldata values,\n bytes calldata data\n ) external returns (bytes4);\n}\n"},"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/utils/ERC1155Holder.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165, ERC165} from \"../../../utils/introspection/ERC165.sol\";\nimport {IERC1155Receiver} from \"../IERC1155Receiver.sol\";\n\n/**\n * @dev Simple implementation of `IERC1155Receiver` that will allow a contract to hold ERC-1155 tokens.\n *\n * IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be\n * stuck.\n */\nabstract contract ERC1155Holder is ERC165, IERC1155Receiver {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId);\n }\n\n function onERC1155Received(\n address,\n address,\n uint256,\n uint256,\n bytes memory\n ) public virtual override returns (bytes4) {\n return this.onERC1155Received.selector;\n }\n\n function onERC1155BatchReceived(\n address,\n address,\n uint256[] memory,\n uint256[] memory,\n bytes memory\n ) public virtual override returns (bytes4) {\n return this.onERC1155BatchReceived.selector;\n }\n}\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC20Metadata} from \"./extensions/IERC20Metadata.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {IERC20Errors} from \"../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC-20\n * applications.\n */\nabstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {\n mapping(address account => uint256) private _balances;\n\n mapping(address account => mapping(address spender => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the default value returned by this function, unless\n * it's overridden.\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `value`.\n */\n function transfer(address to, uint256 value) public virtual returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, value);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 value) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, value);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Skips emitting an {Approval} event indicating an allowance update. This is not\n * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `value`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `value`.\n */\n function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, value);\n _transfer(from, to, value);\n return true;\n }\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead.\n */\n function _transfer(address from, address to, uint256 value) internal {\n if (from == address(0)) {\n revert ERC20InvalidSender(address(0));\n }\n if (to == address(0)) {\n revert ERC20InvalidReceiver(address(0));\n }\n _update(from, to, value);\n }\n\n /**\n * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n * this function.\n *\n * Emits a {Transfer} event.\n */\n function _update(address from, address to, uint256 value) internal virtual {\n if (from == address(0)) {\n // Overflow check required: The rest of the code assumes that totalSupply never overflows\n _totalSupply += value;\n } else {\n uint256 fromBalance = _balances[from];\n if (fromBalance < value) {\n revert ERC20InsufficientBalance(from, fromBalance, value);\n }\n unchecked {\n // Overflow not possible: value <= fromBalance <= totalSupply.\n _balances[from] = fromBalance - value;\n }\n }\n\n if (to == address(0)) {\n unchecked {\n // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.\n _totalSupply -= value;\n }\n } else {\n unchecked {\n // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.\n _balances[to] += value;\n }\n }\n\n emit Transfer(from, to, value);\n }\n\n /**\n * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n * Relies on the `_update` mechanism\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead.\n */\n function _mint(address account, uint256 value) internal {\n if (account == address(0)) {\n revert ERC20InvalidReceiver(address(0));\n }\n _update(address(0), account, value);\n }\n\n /**\n * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n * Relies on the `_update` mechanism.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead\n */\n function _burn(address account, uint256 value) internal {\n if (account == address(0)) {\n revert ERC20InvalidSender(address(0));\n }\n _update(account, address(0), value);\n }\n\n /**\n * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n *\n * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n */\n function _approve(address owner, address spender, uint256 value) internal {\n _approve(owner, spender, value, true);\n }\n\n /**\n * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n *\n * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n * `Approval` event during `transferFrom` operations.\n *\n * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n * true using the following override:\n *\n * ```solidity\n * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n * super._approve(owner, spender, value, true);\n * }\n * ```\n *\n * Requirements are the same as {_approve}.\n */\n function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {\n if (owner == address(0)) {\n revert ERC20InvalidApprover(address(0));\n }\n if (spender == address(0)) {\n revert ERC20InvalidSpender(address(0));\n }\n _allowances[owner][spender] = value;\n if (emitEvent) {\n emit Approval(owner, spender, value);\n }\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `value`.\n *\n * Does not update the allowance value in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Does not emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 value) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance < type(uint256).max) {\n if (currentAllowance < value) {\n revert ERC20InsufficientAllowance(spender, currentAllowance, value);\n }\n unchecked {\n _approve(owner, spender, currentAllowance - value, false);\n }\n }\n }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Votes.sol)\n\npragma solidity ^0.8.20;\n\nimport {ERC20} from \"../ERC20.sol\";\nimport {Votes} from \"../../../governance/utils/Votes.sol\";\nimport {Checkpoints} from \"../../../utils/structs/Checkpoints.sol\";\n\n/**\n * @dev Extension of ERC-20 to support Compound-like voting and delegation. This version is more generic than Compound's,\n * and supports token supply up to 2^208^ - 1, while COMP is limited to 2^96^ - 1.\n *\n * NOTE: This contract does not provide interface compatibility with Compound's COMP token.\n *\n * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either\n * by calling the {Votes-delegate} function directly, or by providing a signature to be used with {Votes-delegateBySig}. Voting\n * power can be queried through the public accessors {Votes-getVotes} and {Votes-getPastVotes}.\n *\n * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it\n * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.\n */\nabstract contract ERC20Votes is ERC20, Votes {\n /**\n * @dev Total supply cap has been exceeded, introducing a risk of votes overflowing.\n */\n error ERC20ExceededSafeSupply(uint256 increasedSupply, uint256 cap);\n\n /**\n * @dev Maximum token supply. Defaults to `type(uint208).max` (2^208^ - 1).\n *\n * This maximum is enforced in {_update}. It limits the total supply of the token, which is otherwise a uint256,\n * so that checkpoints can be stored in the Trace208 structure used by {Votes}. Increasing this value will not\n * remove the underlying limitation, and will cause {_update} to fail because of a math overflow in\n * {Votes-_transferVotingUnits}. An override could be used to further restrict the total supply (to a lower value) if\n * additional logic requires it. When resolving override conflicts on this function, the minimum should be\n * returned.\n */\n function _maxSupply() internal view virtual returns (uint256) {\n return type(uint208).max;\n }\n\n /**\n * @dev Move voting power when tokens are transferred.\n *\n * Emits a {IVotes-DelegateVotesChanged} event.\n */\n function _update(address from, address to, uint256 value) internal virtual override {\n super._update(from, to, value);\n if (from == address(0)) {\n uint256 supply = totalSupply();\n uint256 cap = _maxSupply();\n if (supply > cap) {\n revert ERC20ExceededSafeSupply(supply, cap);\n }\n }\n _transferVotingUnits(from, to, value);\n }\n\n /**\n * @dev Returns the voting units of an `account`.\n *\n * WARNING: Overriding this function may compromise the internal vote accounting.\n * `ERC20Votes` assumes tokens map to voting units 1:1 and this is not easy to change.\n */\n function _getVotingUnits(address account) internal view virtual override returns (uint256) {\n return balanceOf(account);\n }\n\n /**\n * @dev Get number of checkpoints for `account`.\n */\n function numCheckpoints(address account) public view virtual returns (uint32) {\n return _numCheckpoints(account);\n }\n\n /**\n * @dev Get the `pos`-th checkpoint for `account`.\n */\n function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoints.Checkpoint208 memory) {\n return _checkpoints(account, pos);\n }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC-20 standard.\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-20 standard as defined in the ERC.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the value of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the value of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves a `value` amount of tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 value) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n * caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 value) external returns (bool);\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to` using the\n * allowance mechanism. `value` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 value) external returns (bool);\n}\n"},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @title ERC-721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC-721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be\n * reverted.\n *\n * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n"},"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/utils/ERC721Holder.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721Receiver} from \"../IERC721Receiver.sol\";\n\n/**\n * @dev Implementation of the {IERC721Receiver} interface.\n *\n * Accepts all token transfers.\n * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or\n * {IERC721-setApprovalForAll}.\n */\nabstract contract ERC721Holder is IERC721Receiver {\n /**\n * @dev See {IERC721Receiver-onERC721Received}.\n *\n * Always returns `IERC721Receiver.onERC721Received.selector`.\n */\n function onERC721Received(address, address, uint256, bytes memory) public virtual returns (bytes4) {\n return this.onERC721Received.selector;\n }\n}\n"},"@openzeppelin/contracts/utils/Address.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (utils/Address.sol)\n\npragma solidity ^0.8.20;\n\nimport {Errors} from \"./Errors.sol\";\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev There's no code at `target` (it is not a contract).\n */\n error AddressEmptyCode(address target);\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n if (address(this).balance < amount) {\n revert Errors.InsufficientBalance(address(this).balance, amount);\n }\n\n (bool success, bytes memory returndata) = recipient.call{value: amount}(\"\");\n if (!success) {\n _revert(returndata);\n }\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason or custom error, it is bubbled\n * up by this function (like regular Solidity function calls). However, if\n * the call reverted with no returned reason, this function reverts with a\n * {Errors.FailedCall} error.\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n if (address(this).balance < value) {\n revert Errors.InsufficientBalance(address(this).balance, value);\n }\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n * of an unsuccessful call.\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata\n ) internal view returns (bytes memory) {\n if (!success) {\n _revert(returndata);\n } else {\n // only check if target is a contract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n if (returndata.length == 0 && target.code.length == 0) {\n revert AddressEmptyCode(target);\n }\n return returndata;\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n * revert reason or with a default {Errors.FailedCall} error.\n */\n function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {\n if (!success) {\n _revert(returndata);\n } else {\n return returndata;\n }\n }\n\n /**\n * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.\n */\n function _revert(bytes memory returndata) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n assembly (\"memory-safe\") {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert Errors.FailedCall();\n }\n }\n}\n"},"@openzeppelin/contracts/utils/Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n"},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSA {\n enum RecoverError {\n NoError,\n InvalidSignature,\n InvalidSignatureLength,\n InvalidSignatureS\n }\n\n /**\n * @dev The signature derives the `address(0)`.\n */\n error ECDSAInvalidSignature();\n\n /**\n * @dev The signature has an invalid length.\n */\n error ECDSAInvalidSignatureLength(uint256 length);\n\n /**\n * @dev The signature has an S value that is in the upper half order.\n */\n error ECDSAInvalidSignatureS(bytes32 s);\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\n * return address(0) without also returning an error description. Errors are documented using an enum (error type)\n * and a bytes32 providing additional information about the error.\n *\n * If no error is returned, then the address can be used for verification purposes.\n *\n * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n *\n * Documentation for signature generation:\n * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n */\n function tryRecover(\n bytes32 hash,\n bytes memory signature\n ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n if (signature.length == 65) {\n bytes32 r;\n bytes32 s;\n uint8 v;\n // ecrecover takes the signature parameters, and the only way to get them\n // currently is to use assembly.\n assembly (\"memory-safe\") {\n r := mload(add(signature, 0x20))\n s := mload(add(signature, 0x40))\n v := byte(0, mload(add(signature, 0x60)))\n }\n return tryRecover(hash, v, r, s);\n } else {\n return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature`. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n */\n function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);\n _throwError(error, errorArg);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n *\n * See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]\n */\n function tryRecover(\n bytes32 hash,\n bytes32 r,\n bytes32 vs\n ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n unchecked {\n bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n // We do not check for an overflow here since the shift operation results in 0 or 1.\n uint8 v = uint8((uint256(vs) >> 255) + 27);\n return tryRecover(hash, v, r, s);\n }\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n */\n function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);\n _throwError(error, errorArg);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n * `r` and `s` signature fields separately.\n */\n function tryRecover(\n bytes32 hash,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n //\n // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n // these malleable signatures as well.\n if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n return (address(0), RecoverError.InvalidSignatureS, s);\n }\n\n // If the signature is valid (and not malleable), return the signer address\n address signer = ecrecover(hash, v, r, s);\n if (signer == address(0)) {\n return (address(0), RecoverError.InvalidSignature, bytes32(0));\n }\n\n return (signer, RecoverError.NoError, bytes32(0));\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `v`,\n * `r` and `s` signature fields separately.\n */\n function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);\n _throwError(error, errorArg);\n return recovered;\n }\n\n /**\n * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.\n */\n function _throwError(RecoverError error, bytes32 errorArg) private pure {\n if (error == RecoverError.NoError) {\n return; // no error: do nothing\n } else if (error == RecoverError.InvalidSignature) {\n revert ECDSAInvalidSignature();\n } else if (error == RecoverError.InvalidSignatureLength) {\n revert ECDSAInvalidSignatureLength(uint256(errorArg));\n } else if (error == RecoverError.InvalidSignatureS) {\n revert ECDSAInvalidSignatureS(errorArg);\n }\n }\n}\n"},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/EIP712.sol)\n\npragma solidity ^0.8.20;\n\nimport {MessageHashUtils} from \"./MessageHashUtils.sol\";\nimport {ShortStrings, ShortString} from \"../ShortStrings.sol\";\nimport {IERC5267} from \"../../interfaces/IERC5267.sol\";\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data.\n *\n * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose\n * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract\n * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to\n * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.\n *\n * This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n * ({_hashTypedDataV4}).\n *\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n * the chain id to protect against replay attacks on an eventual fork of the chain.\n *\n * NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n *\n * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain\n * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the\n * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\n *\n * @custom:oz-upgrades-unsafe-allow state-variable-immutable\n */\nabstract contract EIP712 is IERC5267 {\n using ShortStrings for *;\n\n bytes32 private constant TYPE_HASH =\n keccak256(\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\");\n\n // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\n // invalidate the cached domain separator if the chain id changes.\n bytes32 private immutable _cachedDomainSeparator;\n uint256 private immutable _cachedChainId;\n address private immutable _cachedThis;\n\n bytes32 private immutable _hashedName;\n bytes32 private immutable _hashedVersion;\n\n ShortString private immutable _name;\n ShortString private immutable _version;\n string private _nameFallback;\n string private _versionFallback;\n\n /**\n * @dev Initializes the domain separator and parameter caches.\n *\n * The meaning of `name` and `version` is specified in\n * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]:\n *\n * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n * - `version`: the current major version of the signing domain.\n *\n * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n * contract upgrade].\n */\n constructor(string memory name, string memory version) {\n _name = name.toShortStringWithFallback(_nameFallback);\n _version = version.toShortStringWithFallback(_versionFallback);\n _hashedName = keccak256(bytes(name));\n _hashedVersion = keccak256(bytes(version));\n\n _cachedChainId = block.chainid;\n _cachedDomainSeparator = _buildDomainSeparator();\n _cachedThis = address(this);\n }\n\n /**\n * @dev Returns the domain separator for the current chain.\n */\n function _domainSeparatorV4() internal view returns (bytes32) {\n if (address(this) == _cachedThis && block.chainid == _cachedChainId) {\n return _cachedDomainSeparator;\n } else {\n return _buildDomainSeparator();\n }\n }\n\n function _buildDomainSeparator() private view returns (bytes32) {\n return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));\n }\n\n /**\n * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n * function returns the hash of the fully encoded EIP712 message for this domain.\n *\n * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n *\n * ```solidity\n * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n * keccak256(\"Mail(address to,string contents)\"),\n * mailTo,\n * keccak256(bytes(mailContents))\n * )));\n * address signer = ECDSA.recover(digest, signature);\n * ```\n */\n function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\n return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);\n }\n\n /**\n * @dev See {IERC-5267}.\n */\n function eip712Domain()\n public\n view\n virtual\n returns (\n bytes1 fields,\n string memory name,\n string memory version,\n uint256 chainId,\n address verifyingContract,\n bytes32 salt,\n uint256[] memory extensions\n )\n {\n return (\n hex\"0f\", // 01111\n _EIP712Name(),\n _EIP712Version(),\n block.chainid,\n address(this),\n bytes32(0),\n new uint256[](0)\n );\n }\n\n /**\n * @dev The name parameter for the EIP712 domain.\n *\n * NOTE: By default this function reads _name which is an immutable value.\n * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).\n */\n // solhint-disable-next-line func-name-mixedcase\n function _EIP712Name() internal view returns (string memory) {\n return _name.toStringWithFallback(_nameFallback);\n }\n\n /**\n * @dev The version parameter for the EIP712 domain.\n *\n * NOTE: By default this function reads _version which is an immutable value.\n * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).\n */\n // solhint-disable-next-line func-name-mixedcase\n function _EIP712Version() internal view returns (string memory) {\n return _version.toStringWithFallback(_versionFallback);\n }\n}\n"},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MessageHashUtils.sol)\n\npragma solidity ^0.8.20;\n\nimport {Strings} from \"../Strings.sol\";\n\n/**\n * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\n *\n * The library provides methods for generating a hash of a message that conforms to the\n * https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\n * specifications.\n */\nlibrary MessageHashUtils {\n /**\n * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n * `0x45` (`personal_sign` messages).\n *\n * The digest is calculated by prefixing a bytes32 `messageHash` with\n * `\"\\x19Ethereum Signed Message:\\n32\"` and hashing the result. It corresponds with the\n * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n *\n * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\n * keccak256, although any bytes32 value can be safely used because the final digest will\n * be re-hashed.\n *\n * See {ECDSA-recover}.\n */\n function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {\n assembly (\"memory-safe\") {\n mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\") // 32 is the bytes-length of messageHash\n mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix\n digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)\n }\n }\n\n /**\n * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n * `0x45` (`personal_sign` messages).\n *\n * The digest is calculated by prefixing an arbitrary `message` with\n * `\"\\x19Ethereum Signed Message:\\n\" + len(message)` and hashing the result. It corresponds with the\n * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n *\n * See {ECDSA-recover}.\n */\n function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {\n return\n keccak256(bytes.concat(\"\\x19Ethereum Signed Message:\\n\", bytes(Strings.toString(message.length)), message));\n }\n\n /**\n * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n * `0x00` (data with intended validator).\n *\n * The digest is calculated by prefixing an arbitrary `data` with `\"\\x19\\x00\"` and the intended\n * `validator` address. Then hashing the result.\n *\n * See {ECDSA-recover}.\n */\n function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(hex\"19_00\", validator, data));\n }\n\n /**\n * @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).\n *\n * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\n * `\\x19\\x01` and hashing the result. It corresponds to the hash signed by the\n * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\n *\n * See {ECDSA-recover}.\n */\n function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {\n assembly (\"memory-safe\") {\n let ptr := mload(0x40)\n mstore(ptr, hex\"19_01\")\n mstore(add(ptr, 0x02), domainSeparator)\n mstore(add(ptr, 0x22), structHash)\n digest := keccak256(ptr, 0x42)\n }\n }\n}\n"},"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/SignatureChecker.sol)\n\npragma solidity ^0.8.20;\n\nimport {ECDSA} from \"./ECDSA.sol\";\nimport {IERC1271} from \"../../interfaces/IERC1271.sol\";\n\n/**\n * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA\n * signatures from externally owned accounts (EOAs) as well as ERC-1271 signatures from smart contract wallets like\n * Argent and Safe Wallet (previously Gnosis Safe).\n */\nlibrary SignatureChecker {\n /**\n * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the\n * signature is validated against that smart contract using ERC-1271, otherwise it's validated using `ECDSA.recover`.\n *\n * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n * change through time. It could return true at block N and false at block N+1 (or the opposite).\n */\n function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) {\n if (signer.code.length == 0) {\n (address recovered, ECDSA.RecoverError err, ) = ECDSA.tryRecover(hash, signature);\n return err == ECDSA.RecoverError.NoError && recovered == signer;\n } else {\n return isValidERC1271SignatureNow(signer, hash, signature);\n }\n }\n\n /**\n * @dev Checks if a signature is valid for a given signer and data hash. The signature is validated\n * against the signer smart contract using ERC-1271.\n *\n * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n * change through time. It could return true at block N and false at block N+1 (or the opposite).\n */\n function isValidERC1271SignatureNow(\n address signer,\n bytes32 hash,\n bytes memory signature\n ) internal view returns (bool) {\n (bool success, bytes memory result) = signer.staticcall(\n abi.encodeCall(IERC1271.isValidSignature, (hash, signature))\n );\n return (success &&\n result.length >= 32 &&\n abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector));\n }\n}\n"},"@openzeppelin/contracts/utils/Errors.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Collection of common custom errors used in multiple contracts\n *\n * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n * It is recommended to avoid relying on the error API for critical functionality.\n *\n * _Available since v5.1._\n */\nlibrary Errors {\n /**\n * @dev The ETH balance of the account is not enough to perform the operation.\n */\n error InsufficientBalance(uint256 balance, uint256 needed);\n\n /**\n * @dev A call to an address target failed. The target may have reverted.\n */\n error FailedCall();\n\n /**\n * @dev The deployment failed.\n */\n error FailedDeployment();\n\n /**\n * @dev A necessary precompile is missing.\n */\n error MissingPrecompile(address);\n}\n"},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n"},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[ERC].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"},"@openzeppelin/contracts/utils/math/Math.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.20;\n\nimport {Panic} from \"../Panic.sol\";\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n enum Rounding {\n Floor, // Toward negative infinity\n Ceil, // Toward positive infinity\n Trunc, // Toward zero\n Expand // Away from zero\n }\n\n /**\n * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).\n */\n function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n uint256 c = a + b;\n if (c < a) return (false, 0);\n return (true, c);\n }\n }\n\n /**\n * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow).\n */\n function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n if (b > a) return (false, 0);\n return (true, a - b);\n }\n }\n\n /**\n * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow).\n */\n function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\n // benefit is lost if 'b' is also tested.\n // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\n if (a == 0) return (true, 0);\n uint256 c = a * b;\n if (c / a != b) return (false, 0);\n return (true, c);\n }\n }\n\n /**\n * @dev Returns the division of two unsigned integers, with a success flag (no division by zero).\n */\n function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n if (b == 0) return (false, 0);\n return (true, a / b);\n }\n }\n\n /**\n * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).\n */\n function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n if (b == 0) return (false, 0);\n return (true, a % b);\n }\n }\n\n /**\n * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n *\n * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n * one branch when needed, making this function more expensive.\n */\n function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {\n unchecked {\n // branchless ternary works because:\n // b ^ (a ^ b) == a\n // b ^ 0 == b\n return b ^ ((a ^ b) * SafeCast.toUint(condition));\n }\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return ternary(a > b, a, b);\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return ternary(a < b, a, b);\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds towards infinity instead\n * of rounding towards zero.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n if (b == 0) {\n // Guarantee the same behavior as in a regular Solidity division.\n Panic.panic(Panic.DIVISION_BY_ZERO);\n }\n\n // The following calculation ensures accurate ceiling division without overflow.\n // Since a is non-zero, (a - 1) / b will not overflow.\n // The largest possible result occurs when (a - 1) / b is type(uint256).max,\n // but the largest value we can obtain is type(uint256).max - 1, which happens\n // when a = type(uint256).max and b = 1.\n unchecked {\n return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);\n }\n }\n\n /**\n * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n * denominator == 0.\n *\n * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n * Uniswap Labs also under MIT license.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n unchecked {\n // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use\n // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = prod1 * 2²⁵⁶ + prod0.\n uint256 prod0 = x * y; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 0) {\n // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n // The surrounding unchecked block does not change this fact.\n // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n return prod0 / denominator;\n }\n\n // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.\n if (denominator <= prod1) {\n Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));\n }\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator.\n // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.\n\n uint256 twos = denominator & (0 - denominator);\n assembly {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, twos)\n\n // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from prod1 into prod0.\n prod0 |= prod1 * twos;\n\n // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such\n // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv ≡ 1 mod 2⁴.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also\n // works in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2⁸\n inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶\n inverse *= 2 - denominator * inverse; // inverse mod 2³²\n inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴\n inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸\n inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is\n // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and prod1\n // is no longer required.\n result = prod0 * inverse;\n return result;\n }\n }\n\n /**\n * @dev Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);\n }\n\n /**\n * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n *\n * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n *\n * If the input value is not inversible, 0 is returned.\n *\n * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.\n */\n function invMod(uint256 a, uint256 n) internal pure returns (uint256) {\n unchecked {\n if (n == 0) return 0;\n\n // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)\n // Used to compute integers x and y such that: ax + ny = gcd(a, n).\n // When the gcd is 1, then the inverse of a modulo n exists and it's x.\n // ax + ny = 1\n // ax = 1 + (-y)n\n // ax ≡ 1 (mod n) # x is the inverse of a modulo n\n\n // If the remainder is 0 the gcd is n right away.\n uint256 remainder = a % n;\n uint256 gcd = n;\n\n // Therefore the initial coefficients are:\n // ax + ny = gcd(a, n) = n\n // 0a + 1n = n\n int256 x = 0;\n int256 y = 1;\n\n while (remainder != 0) {\n uint256 quotient = gcd / remainder;\n\n (gcd, remainder) = (\n // The old remainder is the next gcd to try.\n remainder,\n // Compute the next remainder.\n // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd\n // where gcd is at most n (capped to type(uint256).max)\n gcd - remainder * quotient\n );\n\n (x, y) = (\n // Increment the coefficient of a.\n y,\n // Decrement the coefficient of n.\n // Can overflow, but the result is casted to uint256 so that the\n // next value of y is \"wrapped around\" to a value between 0 and n - 1.\n x - y * int256(quotient)\n );\n }\n\n if (gcd != 1) return 0; // No inverse exists.\n return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.\n }\n }\n\n /**\n * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n *\n * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n * `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n *\n * NOTE: this function does NOT check that `p` is a prime greater than `2`.\n */\n function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {\n unchecked {\n return Math.modExp(a, p - 2, p);\n }\n }\n\n /**\n * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n *\n * Requirements:\n * - modulus can't be zero\n * - underlying staticcall to precompile must succeed\n *\n * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n * sure the chain you're using it on supports the precompiled contract for modular exponentiation\n * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n * the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n * interpreted as 0.\n */\n function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {\n (bool success, uint256 result) = tryModExp(b, e, m);\n if (!success) {\n Panic.panic(Panic.DIVISION_BY_ZERO);\n }\n return result;\n }\n\n /**\n * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n * to operate modulo 0 or if the underlying precompile reverted.\n *\n * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n * of a revert, but the result may be incorrectly interpreted as 0.\n */\n function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {\n if (m == 0) return (false, 0);\n assembly (\"memory-safe\") {\n let ptr := mload(0x40)\n // | Offset | Content | Content (Hex) |\n // |-----------|------------|--------------------------------------------------------------------|\n // | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n // | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n // | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n // | 0x60:0x7f | value of b | 0x<.............................................................b> |\n // | 0x80:0x9f | value of e | 0x<.............................................................e> |\n // | 0xa0:0xbf | value of m | 0x<.............................................................m> |\n mstore(ptr, 0x20)\n mstore(add(ptr, 0x20), 0x20)\n mstore(add(ptr, 0x40), 0x20)\n mstore(add(ptr, 0x60), b)\n mstore(add(ptr, 0x80), e)\n mstore(add(ptr, 0xa0), m)\n\n // Given the result < m, it's guaranteed to fit in 32 bytes,\n // so we can use the memory scratch space located at offset 0.\n success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)\n result := mload(0x00)\n }\n }\n\n /**\n * @dev Variant of {modExp} that supports inputs of arbitrary length.\n */\n function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {\n (bool success, bytes memory result) = tryModExp(b, e, m);\n if (!success) {\n Panic.panic(Panic.DIVISION_BY_ZERO);\n }\n return result;\n }\n\n /**\n * @dev Variant of {tryModExp} that supports inputs of arbitrary length.\n */\n function tryModExp(\n bytes memory b,\n bytes memory e,\n bytes memory m\n ) internal view returns (bool success, bytes memory result) {\n if (_zeroBytes(m)) return (false, new bytes(0));\n\n uint256 mLen = m.length;\n\n // Encode call args in result and move the free memory pointer\n result = abi.encodePacked(b.length, e.length, mLen, b, e, m);\n\n assembly (\"memory-safe\") {\n let dataPtr := add(result, 0x20)\n // Write result on top of args to avoid allocating extra memory.\n success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)\n // Overwrite the length.\n // result.length > returndatasize() is guaranteed because returndatasize() == m.length\n mstore(result, mLen)\n // Set the memory pointer after the returned data.\n mstore(0x40, add(dataPtr, mLen))\n }\n }\n\n /**\n * @dev Returns whether the provided byte array is zero.\n */\n function _zeroBytes(bytes memory byteArray) private pure returns (bool) {\n for (uint256 i = 0; i < byteArray.length; ++i) {\n if (byteArray[i] != 0) {\n return false;\n }\n }\n return true;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n * towards zero.\n *\n * This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n * using integer operations.\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n unchecked {\n // Take care of easy edge cases when a == 0 or a == 1\n if (a <= 1) {\n return a;\n }\n\n // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a\n // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between\n // the current value as `ε_n = | x_n - sqrt(a) |`.\n //\n // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root\n // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is\n // bigger than any uint256.\n //\n // By noticing that\n // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`\n // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar\n // to the msb function.\n uint256 aa = a;\n uint256 xn = 1;\n\n if (aa >= (1 << 128)) {\n aa >>= 128;\n xn <<= 64;\n }\n if (aa >= (1 << 64)) {\n aa >>= 64;\n xn <<= 32;\n }\n if (aa >= (1 << 32)) {\n aa >>= 32;\n xn <<= 16;\n }\n if (aa >= (1 << 16)) {\n aa >>= 16;\n xn <<= 8;\n }\n if (aa >= (1 << 8)) {\n aa >>= 8;\n xn <<= 4;\n }\n if (aa >= (1 << 4)) {\n aa >>= 4;\n xn <<= 2;\n }\n if (aa >= (1 << 2)) {\n xn <<= 1;\n }\n\n // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).\n //\n // We can refine our estimation by noticing that the middle of that interval minimizes the error.\n // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).\n // This is going to be our x_0 (and ε_0)\n xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)\n\n // From here, Newton's method give us:\n // x_{n+1} = (x_n + a / x_n) / 2\n //\n // One should note that:\n // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a\n // = ((x_n² + a) / (2 * x_n))² - a\n // = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a\n // = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)\n // = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)\n // = (x_n² - a)² / (2 * x_n)²\n // = ((x_n² - a) / (2 * x_n))²\n // ≥ 0\n // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n\n //\n // This gives us the proof of quadratic convergence of the sequence:\n // ε_{n+1} = | x_{n+1} - sqrt(a) |\n // = | (x_n + a / x_n) / 2 - sqrt(a) |\n // = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |\n // = | (x_n - sqrt(a))² / (2 * x_n) |\n // = | ε_n² / (2 * x_n) |\n // = ε_n² / | (2 * x_n) |\n //\n // For the first iteration, we have a special case where x_0 is known:\n // ε_1 = ε_0² / | (2 * x_0) |\n // ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))\n // ≤ 2**(2*e-4) / (3 * 2**(e-1))\n // ≤ 2**(e-3) / 3\n // ≤ 2**(e-3-log2(3))\n // ≤ 2**(e-4.5)\n //\n // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:\n // ε_{n+1} = ε_n² / | (2 * x_n) |\n // ≤ (2**(e-k))² / (2 * 2**(e-1))\n // ≤ 2**(2*e-2*k) / 2**e\n // ≤ 2**(e-2*k)\n xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above\n xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5\n xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9\n xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18\n xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36\n xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72\n\n // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision\n // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either\n // sqrt(a) or sqrt(a) + 1.\n return xn - SafeCast.toUint(xn > a / xn);\n }\n }\n\n /**\n * @dev Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);\n }\n }\n\n /**\n * @dev Return the log in base 2 of a positive value rounded towards zero.\n * Returns 0 if given 0.\n */\n function log2(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n uint256 exp;\n unchecked {\n exp = 128 * SafeCast.toUint(value > (1 << 128) - 1);\n value >>= exp;\n result += exp;\n\n exp = 64 * SafeCast.toUint(value > (1 << 64) - 1);\n value >>= exp;\n result += exp;\n\n exp = 32 * SafeCast.toUint(value > (1 << 32) - 1);\n value >>= exp;\n result += exp;\n\n exp = 16 * SafeCast.toUint(value > (1 << 16) - 1);\n value >>= exp;\n result += exp;\n\n exp = 8 * SafeCast.toUint(value > (1 << 8) - 1);\n value >>= exp;\n result += exp;\n\n exp = 4 * SafeCast.toUint(value > (1 << 4) - 1);\n value >>= exp;\n result += exp;\n\n exp = 2 * SafeCast.toUint(value > (1 << 2) - 1);\n value >>= exp;\n result += exp;\n\n result += SafeCast.toUint(value > 1);\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);\n }\n }\n\n /**\n * @dev Return the log in base 10 of a positive value rounded towards zero.\n * Returns 0 if given 0.\n */\n function log10(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >= 10 ** 64) {\n value /= 10 ** 64;\n result += 64;\n }\n if (value >= 10 ** 32) {\n value /= 10 ** 32;\n result += 32;\n }\n if (value >= 10 ** 16) {\n value /= 10 ** 16;\n result += 16;\n }\n if (value >= 10 ** 8) {\n value /= 10 ** 8;\n result += 8;\n }\n if (value >= 10 ** 4) {\n value /= 10 ** 4;\n result += 4;\n }\n if (value >= 10 ** 2) {\n value /= 10 ** 2;\n result += 2;\n }\n if (value >= 10 ** 1) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log10(value);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);\n }\n }\n\n /**\n * @dev Return the log in base 256 of a positive value rounded towards zero.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n uint256 isGt;\n unchecked {\n isGt = SafeCast.toUint(value > (1 << 128) - 1);\n value >>= isGt * 128;\n result += isGt * 16;\n\n isGt = SafeCast.toUint(value > (1 << 64) - 1);\n value >>= isGt * 64;\n result += isGt * 8;\n\n isGt = SafeCast.toUint(value > (1 << 32) - 1);\n value >>= isGt * 32;\n result += isGt * 4;\n\n isGt = SafeCast.toUint(value > (1 << 16) - 1);\n value >>= isGt * 16;\n result += isGt * 2;\n\n result += SafeCast.toUint(value > (1 << 8) - 1);\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);\n }\n }\n\n /**\n * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.\n */\n function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {\n return uint8(rounding) % 2 == 1;\n }\n}\n"},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)\n// This file was procedurally generated from scripts/generate/templates/SafeCast.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow\n * checks.\n *\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n * easily result in undesired exploitation or bugs, since developers usually\n * assume that overflows raise errors. `SafeCast` restores this intuition by\n * reverting the transaction when such an operation overflows.\n *\n * Using this library instead of the unchecked operations eliminates an entire\n * class of bugs, so it's recommended to use it always.\n */\nlibrary SafeCast {\n /**\n * @dev Value doesn't fit in an uint of `bits` size.\n */\n error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);\n\n /**\n * @dev An int value doesn't fit in an uint of `bits` size.\n */\n error SafeCastOverflowedIntToUint(int256 value);\n\n /**\n * @dev Value doesn't fit in an int of `bits` size.\n */\n error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);\n\n /**\n * @dev An uint value doesn't fit in an int of `bits` size.\n */\n error SafeCastOverflowedUintToInt(uint256 value);\n\n /**\n * @dev Returns the downcasted uint248 from uint256, reverting on\n * overflow (when the input is greater than largest uint248).\n *\n * Counterpart to Solidity's `uint248` operator.\n *\n * Requirements:\n *\n * - input must fit into 248 bits\n */\n function toUint248(uint256 value) internal pure returns (uint248) {\n if (value > type(uint248).max) {\n revert SafeCastOverflowedUintDowncast(248, value);\n }\n return uint248(value);\n }\n\n /**\n * @dev Returns the downcasted uint240 from uint256, reverting on\n * overflow (when the input is greater than largest uint240).\n *\n * Counterpart to Solidity's `uint240` operator.\n *\n * Requirements:\n *\n * - input must fit into 240 bits\n */\n function toUint240(uint256 value) internal pure returns (uint240) {\n if (value > type(uint240).max) {\n revert SafeCastOverflowedUintDowncast(240, value);\n }\n return uint240(value);\n }\n\n /**\n * @dev Returns the downcasted uint232 from uint256, reverting on\n * overflow (when the input is greater than largest uint232).\n *\n * Counterpart to Solidity's `uint232` operator.\n *\n * Requirements:\n *\n * - input must fit into 232 bits\n */\n function toUint232(uint256 value) internal pure returns (uint232) {\n if (value > type(uint232).max) {\n revert SafeCastOverflowedUintDowncast(232, value);\n }\n return uint232(value);\n }\n\n /**\n * @dev Returns the downcasted uint224 from uint256, reverting on\n * overflow (when the input is greater than largest uint224).\n *\n * Counterpart to Solidity's `uint224` operator.\n *\n * Requirements:\n *\n * - input must fit into 224 bits\n */\n function toUint224(uint256 value) internal pure returns (uint224) {\n if (value > type(uint224).max) {\n revert SafeCastOverflowedUintDowncast(224, value);\n }\n return uint224(value);\n }\n\n /**\n * @dev Returns the downcasted uint216 from uint256, reverting on\n * overflow (when the input is greater than largest uint216).\n *\n * Counterpart to Solidity's `uint216` operator.\n *\n * Requirements:\n *\n * - input must fit into 216 bits\n */\n function toUint216(uint256 value) internal pure returns (uint216) {\n if (value > type(uint216).max) {\n revert SafeCastOverflowedUintDowncast(216, value);\n }\n return uint216(value);\n }\n\n /**\n * @dev Returns the downcasted uint208 from uint256, reverting on\n * overflow (when the input is greater than largest uint208).\n *\n * Counterpart to Solidity's `uint208` operator.\n *\n * Requirements:\n *\n * - input must fit into 208 bits\n */\n function toUint208(uint256 value) internal pure returns (uint208) {\n if (value > type(uint208).max) {\n revert SafeCastOverflowedUintDowncast(208, value);\n }\n return uint208(value);\n }\n\n /**\n * @dev Returns the downcasted uint200 from uint256, reverting on\n * overflow (when the input is greater than largest uint200).\n *\n * Counterpart to Solidity's `uint200` operator.\n *\n * Requirements:\n *\n * - input must fit into 200 bits\n */\n function toUint200(uint256 value) internal pure returns (uint200) {\n if (value > type(uint200).max) {\n revert SafeCastOverflowedUintDowncast(200, value);\n }\n return uint200(value);\n }\n\n /**\n * @dev Returns the downcasted uint192 from uint256, reverting on\n * overflow (when the input is greater than largest uint192).\n *\n * Counterpart to Solidity's `uint192` operator.\n *\n * Requirements:\n *\n * - input must fit into 192 bits\n */\n function toUint192(uint256 value) internal pure returns (uint192) {\n if (value > type(uint192).max) {\n revert SafeCastOverflowedUintDowncast(192, value);\n }\n return uint192(value);\n }\n\n /**\n * @dev Returns the downcasted uint184 from uint256, reverting on\n * overflow (when the input is greater than largest uint184).\n *\n * Counterpart to Solidity's `uint184` operator.\n *\n * Requirements:\n *\n * - input must fit into 184 bits\n */\n function toUint184(uint256 value) internal pure returns (uint184) {\n if (value > type(uint184).max) {\n revert SafeCastOverflowedUintDowncast(184, value);\n }\n return uint184(value);\n }\n\n /**\n * @dev Returns the downcasted uint176 from uint256, reverting on\n * overflow (when the input is greater than largest uint176).\n *\n * Counterpart to Solidity's `uint176` operator.\n *\n * Requirements:\n *\n * - input must fit into 176 bits\n */\n function toUint176(uint256 value) internal pure returns (uint176) {\n if (value > type(uint176).max) {\n revert SafeCastOverflowedUintDowncast(176, value);\n }\n return uint176(value);\n }\n\n /**\n * @dev Returns the downcasted uint168 from uint256, reverting on\n * overflow (when the input is greater than largest uint168).\n *\n * Counterpart to Solidity's `uint168` operator.\n *\n * Requirements:\n *\n * - input must fit into 168 bits\n */\n function toUint168(uint256 value) internal pure returns (uint168) {\n if (value > type(uint168).max) {\n revert SafeCastOverflowedUintDowncast(168, value);\n }\n return uint168(value);\n }\n\n /**\n * @dev Returns the downcasted uint160 from uint256, reverting on\n * overflow (when the input is greater than largest uint160).\n *\n * Counterpart to Solidity's `uint160` operator.\n *\n * Requirements:\n *\n * - input must fit into 160 bits\n */\n function toUint160(uint256 value) internal pure returns (uint160) {\n if (value > type(uint160).max) {\n revert SafeCastOverflowedUintDowncast(160, value);\n }\n return uint160(value);\n }\n\n /**\n * @dev Returns the downcasted uint152 from uint256, reverting on\n * overflow (when the input is greater than largest uint152).\n *\n * Counterpart to Solidity's `uint152` operator.\n *\n * Requirements:\n *\n * - input must fit into 152 bits\n */\n function toUint152(uint256 value) internal pure returns (uint152) {\n if (value > type(uint152).max) {\n revert SafeCastOverflowedUintDowncast(152, value);\n }\n return uint152(value);\n }\n\n /**\n * @dev Returns the downcasted uint144 from uint256, reverting on\n * overflow (when the input is greater than largest uint144).\n *\n * Counterpart to Solidity's `uint144` operator.\n *\n * Requirements:\n *\n * - input must fit into 144 bits\n */\n function toUint144(uint256 value) internal pure returns (uint144) {\n if (value > type(uint144).max) {\n revert SafeCastOverflowedUintDowncast(144, value);\n }\n return uint144(value);\n }\n\n /**\n * @dev Returns the downcasted uint136 from uint256, reverting on\n * overflow (when the input is greater than largest uint136).\n *\n * Counterpart to Solidity's `uint136` operator.\n *\n * Requirements:\n *\n * - input must fit into 136 bits\n */\n function toUint136(uint256 value) internal pure returns (uint136) {\n if (value > type(uint136).max) {\n revert SafeCastOverflowedUintDowncast(136, value);\n }\n return uint136(value);\n }\n\n /**\n * @dev Returns the downcasted uint128 from uint256, reverting on\n * overflow (when the input is greater than largest uint128).\n *\n * Counterpart to Solidity's `uint128` operator.\n *\n * Requirements:\n *\n * - input must fit into 128 bits\n */\n function toUint128(uint256 value) internal pure returns (uint128) {\n if (value > type(uint128).max) {\n revert SafeCastOverflowedUintDowncast(128, value);\n }\n return uint128(value);\n }\n\n /**\n * @dev Returns the downcasted uint120 from uint256, reverting on\n * overflow (when the input is greater than largest uint120).\n *\n * Counterpart to Solidity's `uint120` operator.\n *\n * Requirements:\n *\n * - input must fit into 120 bits\n */\n function toUint120(uint256 value) internal pure returns (uint120) {\n if (value > type(uint120).max) {\n revert SafeCastOverflowedUintDowncast(120, value);\n }\n return uint120(value);\n }\n\n /**\n * @dev Returns the downcasted uint112 from uint256, reverting on\n * overflow (when the input is greater than largest uint112).\n *\n * Counterpart to Solidity's `uint112` operator.\n *\n * Requirements:\n *\n * - input must fit into 112 bits\n */\n function toUint112(uint256 value) internal pure returns (uint112) {\n if (value > type(uint112).max) {\n revert SafeCastOverflowedUintDowncast(112, value);\n }\n return uint112(value);\n }\n\n /**\n * @dev Returns the downcasted uint104 from uint256, reverting on\n * overflow (when the input is greater than largest uint104).\n *\n * Counterpart to Solidity's `uint104` operator.\n *\n * Requirements:\n *\n * - input must fit into 104 bits\n */\n function toUint104(uint256 value) internal pure returns (uint104) {\n if (value > type(uint104).max) {\n revert SafeCastOverflowedUintDowncast(104, value);\n }\n return uint104(value);\n }\n\n /**\n * @dev Returns the downcasted uint96 from uint256, reverting on\n * overflow (when the input is greater than largest uint96).\n *\n * Counterpart to Solidity's `uint96` operator.\n *\n * Requirements:\n *\n * - input must fit into 96 bits\n */\n function toUint96(uint256 value) internal pure returns (uint96) {\n if (value > type(uint96).max) {\n revert SafeCastOverflowedUintDowncast(96, value);\n }\n return uint96(value);\n }\n\n /**\n * @dev Returns the downcasted uint88 from uint256, reverting on\n * overflow (when the input is greater than largest uint88).\n *\n * Counterpart to Solidity's `uint88` operator.\n *\n * Requirements:\n *\n * - input must fit into 88 bits\n */\n function toUint88(uint256 value) internal pure returns (uint88) {\n if (value > type(uint88).max) {\n revert SafeCastOverflowedUintDowncast(88, value);\n }\n return uint88(value);\n }\n\n /**\n * @dev Returns the downcasted uint80 from uint256, reverting on\n * overflow (when the input is greater than largest uint80).\n *\n * Counterpart to Solidity's `uint80` operator.\n *\n * Requirements:\n *\n * - input must fit into 80 bits\n */\n function toUint80(uint256 value) internal pure returns (uint80) {\n if (value > type(uint80).max) {\n revert SafeCastOverflowedUintDowncast(80, value);\n }\n return uint80(value);\n }\n\n /**\n * @dev Returns the downcasted uint72 from uint256, reverting on\n * overflow (when the input is greater than largest uint72).\n *\n * Counterpart to Solidity's `uint72` operator.\n *\n * Requirements:\n *\n * - input must fit into 72 bits\n */\n function toUint72(uint256 value) internal pure returns (uint72) {\n if (value > type(uint72).max) {\n revert SafeCastOverflowedUintDowncast(72, value);\n }\n return uint72(value);\n }\n\n /**\n * @dev Returns the downcasted uint64 from uint256, reverting on\n * overflow (when the input is greater than largest uint64).\n *\n * Counterpart to Solidity's `uint64` operator.\n *\n * Requirements:\n *\n * - input must fit into 64 bits\n */\n function toUint64(uint256 value) internal pure returns (uint64) {\n if (value > type(uint64).max) {\n revert SafeCastOverflowedUintDowncast(64, value);\n }\n return uint64(value);\n }\n\n /**\n * @dev Returns the downcasted uint56 from uint256, reverting on\n * overflow (when the input is greater than largest uint56).\n *\n * Counterpart to Solidity's `uint56` operator.\n *\n * Requirements:\n *\n * - input must fit into 56 bits\n */\n function toUint56(uint256 value) internal pure returns (uint56) {\n if (value > type(uint56).max) {\n revert SafeCastOverflowedUintDowncast(56, value);\n }\n return uint56(value);\n }\n\n /**\n * @dev Returns the downcasted uint48 from uint256, reverting on\n * overflow (when the input is greater than largest uint48).\n *\n * Counterpart to Solidity's `uint48` operator.\n *\n * Requirements:\n *\n * - input must fit into 48 bits\n */\n function toUint48(uint256 value) internal pure returns (uint48) {\n if (value > type(uint48).max) {\n revert SafeCastOverflowedUintDowncast(48, value);\n }\n return uint48(value);\n }\n\n /**\n * @dev Returns the downcasted uint40 from uint256, reverting on\n * overflow (when the input is greater than largest uint40).\n *\n * Counterpart to Solidity's `uint40` operator.\n *\n * Requirements:\n *\n * - input must fit into 40 bits\n */\n function toUint40(uint256 value) internal pure returns (uint40) {\n if (value > type(uint40).max) {\n revert SafeCastOverflowedUintDowncast(40, value);\n }\n return uint40(value);\n }\n\n /**\n * @dev Returns the downcasted uint32 from uint256, reverting on\n * overflow (when the input is greater than largest uint32).\n *\n * Counterpart to Solidity's `uint32` operator.\n *\n * Requirements:\n *\n * - input must fit into 32 bits\n */\n function toUint32(uint256 value) internal pure returns (uint32) {\n if (value > type(uint32).max) {\n revert SafeCastOverflowedUintDowncast(32, value);\n }\n return uint32(value);\n }\n\n /**\n * @dev Returns the downcasted uint24 from uint256, reverting on\n * overflow (when the input is greater than largest uint24).\n *\n * Counterpart to Solidity's `uint24` operator.\n *\n * Requirements:\n *\n * - input must fit into 24 bits\n */\n function toUint24(uint256 value) internal pure returns (uint24) {\n if (value > type(uint24).max) {\n revert SafeCastOverflowedUintDowncast(24, value);\n }\n return uint24(value);\n }\n\n /**\n * @dev Returns the downcasted uint16 from uint256, reverting on\n * overflow (when the input is greater than largest uint16).\n *\n * Counterpart to Solidity's `uint16` operator.\n *\n * Requirements:\n *\n * - input must fit into 16 bits\n */\n function toUint16(uint256 value) internal pure returns (uint16) {\n if (value > type(uint16).max) {\n revert SafeCastOverflowedUintDowncast(16, value);\n }\n return uint16(value);\n }\n\n /**\n * @dev Returns the downcasted uint8 from uint256, reverting on\n * overflow (when the input is greater than largest uint8).\n *\n * Counterpart to Solidity's `uint8` operator.\n *\n * Requirements:\n *\n * - input must fit into 8 bits\n */\n function toUint8(uint256 value) internal pure returns (uint8) {\n if (value > type(uint8).max) {\n revert SafeCastOverflowedUintDowncast(8, value);\n }\n return uint8(value);\n }\n\n /**\n * @dev Converts a signed int256 into an unsigned uint256.\n *\n * Requirements:\n *\n * - input must be greater than or equal to 0.\n */\n function toUint256(int256 value) internal pure returns (uint256) {\n if (value < 0) {\n revert SafeCastOverflowedIntToUint(value);\n }\n return uint256(value);\n }\n\n /**\n * @dev Returns the downcasted int248 from int256, reverting on\n * overflow (when the input is less than smallest int248 or\n * greater than largest int248).\n *\n * Counterpart to Solidity's `int248` operator.\n *\n * Requirements:\n *\n * - input must fit into 248 bits\n */\n function toInt248(int256 value) internal pure returns (int248 downcasted) {\n downcasted = int248(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(248, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int240 from int256, reverting on\n * overflow (when the input is less than smallest int240 or\n * greater than largest int240).\n *\n * Counterpart to Solidity's `int240` operator.\n *\n * Requirements:\n *\n * - input must fit into 240 bits\n */\n function toInt240(int256 value) internal pure returns (int240 downcasted) {\n downcasted = int240(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(240, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int232 from int256, reverting on\n * overflow (when the input is less than smallest int232 or\n * greater than largest int232).\n *\n * Counterpart to Solidity's `int232` operator.\n *\n * Requirements:\n *\n * - input must fit into 232 bits\n */\n function toInt232(int256 value) internal pure returns (int232 downcasted) {\n downcasted = int232(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(232, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int224 from int256, reverting on\n * overflow (when the input is less than smallest int224 or\n * greater than largest int224).\n *\n * Counterpart to Solidity's `int224` operator.\n *\n * Requirements:\n *\n * - input must fit into 224 bits\n */\n function toInt224(int256 value) internal pure returns (int224 downcasted) {\n downcasted = int224(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(224, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int216 from int256, reverting on\n * overflow (when the input is less than smallest int216 or\n * greater than largest int216).\n *\n * Counterpart to Solidity's `int216` operator.\n *\n * Requirements:\n *\n * - input must fit into 216 bits\n */\n function toInt216(int256 value) internal pure returns (int216 downcasted) {\n downcasted = int216(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(216, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int208 from int256, reverting on\n * overflow (when the input is less than smallest int208 or\n * greater than largest int208).\n *\n * Counterpart to Solidity's `int208` operator.\n *\n * Requirements:\n *\n * - input must fit into 208 bits\n */\n function toInt208(int256 value) internal pure returns (int208 downcasted) {\n downcasted = int208(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(208, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int200 from int256, reverting on\n * overflow (when the input is less than smallest int200 or\n * greater than largest int200).\n *\n * Counterpart to Solidity's `int200` operator.\n *\n * Requirements:\n *\n * - input must fit into 200 bits\n */\n function toInt200(int256 value) internal pure returns (int200 downcasted) {\n downcasted = int200(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(200, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int192 from int256, reverting on\n * overflow (when the input is less than smallest int192 or\n * greater than largest int192).\n *\n * Counterpart to Solidity's `int192` operator.\n *\n * Requirements:\n *\n * - input must fit into 192 bits\n */\n function toInt192(int256 value) internal pure returns (int192 downcasted) {\n downcasted = int192(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(192, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int184 from int256, reverting on\n * overflow (when the input is less than smallest int184 or\n * greater than largest int184).\n *\n * Counterpart to Solidity's `int184` operator.\n *\n * Requirements:\n *\n * - input must fit into 184 bits\n */\n function toInt184(int256 value) internal pure returns (int184 downcasted) {\n downcasted = int184(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(184, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int176 from int256, reverting on\n * overflow (when the input is less than smallest int176 or\n * greater than largest int176).\n *\n * Counterpart to Solidity's `int176` operator.\n *\n * Requirements:\n *\n * - input must fit into 176 bits\n */\n function toInt176(int256 value) internal pure returns (int176 downcasted) {\n downcasted = int176(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(176, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int168 from int256, reverting on\n * overflow (when the input is less than smallest int168 or\n * greater than largest int168).\n *\n * Counterpart to Solidity's `int168` operator.\n *\n * Requirements:\n *\n * - input must fit into 168 bits\n */\n function toInt168(int256 value) internal pure returns (int168 downcasted) {\n downcasted = int168(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(168, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int160 from int256, reverting on\n * overflow (when the input is less than smallest int160 or\n * greater than largest int160).\n *\n * Counterpart to Solidity's `int160` operator.\n *\n * Requirements:\n *\n * - input must fit into 160 bits\n */\n function toInt160(int256 value) internal pure returns (int160 downcasted) {\n downcasted = int160(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(160, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int152 from int256, reverting on\n * overflow (when the input is less than smallest int152 or\n * greater than largest int152).\n *\n * Counterpart to Solidity's `int152` operator.\n *\n * Requirements:\n *\n * - input must fit into 152 bits\n */\n function toInt152(int256 value) internal pure returns (int152 downcasted) {\n downcasted = int152(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(152, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int144 from int256, reverting on\n * overflow (when the input is less than smallest int144 or\n * greater than largest int144).\n *\n * Counterpart to Solidity's `int144` operator.\n *\n * Requirements:\n *\n * - input must fit into 144 bits\n */\n function toInt144(int256 value) internal pure returns (int144 downcasted) {\n downcasted = int144(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(144, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int136 from int256, reverting on\n * overflow (when the input is less than smallest int136 or\n * greater than largest int136).\n *\n * Counterpart to Solidity's `int136` operator.\n *\n * Requirements:\n *\n * - input must fit into 136 bits\n */\n function toInt136(int256 value) internal pure returns (int136 downcasted) {\n downcasted = int136(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(136, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int128 from int256, reverting on\n * overflow (when the input is less than smallest int128 or\n * greater than largest int128).\n *\n * Counterpart to Solidity's `int128` operator.\n *\n * Requirements:\n *\n * - input must fit into 128 bits\n */\n function toInt128(int256 value) internal pure returns (int128 downcasted) {\n downcasted = int128(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(128, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int120 from int256, reverting on\n * overflow (when the input is less than smallest int120 or\n * greater than largest int120).\n *\n * Counterpart to Solidity's `int120` operator.\n *\n * Requirements:\n *\n * - input must fit into 120 bits\n */\n function toInt120(int256 value) internal pure returns (int120 downcasted) {\n downcasted = int120(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(120, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int112 from int256, reverting on\n * overflow (when the input is less than smallest int112 or\n * greater than largest int112).\n *\n * Counterpart to Solidity's `int112` operator.\n *\n * Requirements:\n *\n * - input must fit into 112 bits\n */\n function toInt112(int256 value) internal pure returns (int112 downcasted) {\n downcasted = int112(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(112, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int104 from int256, reverting on\n * overflow (when the input is less than smallest int104 or\n * greater than largest int104).\n *\n * Counterpart to Solidity's `int104` operator.\n *\n * Requirements:\n *\n * - input must fit into 104 bits\n */\n function toInt104(int256 value) internal pure returns (int104 downcasted) {\n downcasted = int104(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(104, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int96 from int256, reverting on\n * overflow (when the input is less than smallest int96 or\n * greater than largest int96).\n *\n * Counterpart to Solidity's `int96` operator.\n *\n * Requirements:\n *\n * - input must fit into 96 bits\n */\n function toInt96(int256 value) internal pure returns (int96 downcasted) {\n downcasted = int96(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(96, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int88 from int256, reverting on\n * overflow (when the input is less than smallest int88 or\n * greater than largest int88).\n *\n * Counterpart to Solidity's `int88` operator.\n *\n * Requirements:\n *\n * - input must fit into 88 bits\n */\n function toInt88(int256 value) internal pure returns (int88 downcasted) {\n downcasted = int88(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(88, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int80 from int256, reverting on\n * overflow (when the input is less than smallest int80 or\n * greater than largest int80).\n *\n * Counterpart to Solidity's `int80` operator.\n *\n * Requirements:\n *\n * - input must fit into 80 bits\n */\n function toInt80(int256 value) internal pure returns (int80 downcasted) {\n downcasted = int80(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(80, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int72 from int256, reverting on\n * overflow (when the input is less than smallest int72 or\n * greater than largest int72).\n *\n * Counterpart to Solidity's `int72` operator.\n *\n * Requirements:\n *\n * - input must fit into 72 bits\n */\n function toInt72(int256 value) internal pure returns (int72 downcasted) {\n downcasted = int72(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(72, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int64 from int256, reverting on\n * overflow (when the input is less than smallest int64 or\n * greater than largest int64).\n *\n * Counterpart to Solidity's `int64` operator.\n *\n * Requirements:\n *\n * - input must fit into 64 bits\n */\n function toInt64(int256 value) internal pure returns (int64 downcasted) {\n downcasted = int64(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(64, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int56 from int256, reverting on\n * overflow (when the input is less than smallest int56 or\n * greater than largest int56).\n *\n * Counterpart to Solidity's `int56` operator.\n *\n * Requirements:\n *\n * - input must fit into 56 bits\n */\n function toInt56(int256 value) internal pure returns (int56 downcasted) {\n downcasted = int56(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(56, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int48 from int256, reverting on\n * overflow (when the input is less than smallest int48 or\n * greater than largest int48).\n *\n * Counterpart to Solidity's `int48` operator.\n *\n * Requirements:\n *\n * - input must fit into 48 bits\n */\n function toInt48(int256 value) internal pure returns (int48 downcasted) {\n downcasted = int48(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(48, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int40 from int256, reverting on\n * overflow (when the input is less than smallest int40 or\n * greater than largest int40).\n *\n * Counterpart to Solidity's `int40` operator.\n *\n * Requirements:\n *\n * - input must fit into 40 bits\n */\n function toInt40(int256 value) internal pure returns (int40 downcasted) {\n downcasted = int40(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(40, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int32 from int256, reverting on\n * overflow (when the input is less than smallest int32 or\n * greater than largest int32).\n *\n * Counterpart to Solidity's `int32` operator.\n *\n * Requirements:\n *\n * - input must fit into 32 bits\n */\n function toInt32(int256 value) internal pure returns (int32 downcasted) {\n downcasted = int32(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(32, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int24 from int256, reverting on\n * overflow (when the input is less than smallest int24 or\n * greater than largest int24).\n *\n * Counterpart to Solidity's `int24` operator.\n *\n * Requirements:\n *\n * - input must fit into 24 bits\n */\n function toInt24(int256 value) internal pure returns (int24 downcasted) {\n downcasted = int24(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(24, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int16 from int256, reverting on\n * overflow (when the input is less than smallest int16 or\n * greater than largest int16).\n *\n * Counterpart to Solidity's `int16` operator.\n *\n * Requirements:\n *\n * - input must fit into 16 bits\n */\n function toInt16(int256 value) internal pure returns (int16 downcasted) {\n downcasted = int16(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(16, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int8 from int256, reverting on\n * overflow (when the input is less than smallest int8 or\n * greater than largest int8).\n *\n * Counterpart to Solidity's `int8` operator.\n *\n * Requirements:\n *\n * - input must fit into 8 bits\n */\n function toInt8(int256 value) internal pure returns (int8 downcasted) {\n downcasted = int8(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(8, value);\n }\n }\n\n /**\n * @dev Converts an unsigned uint256 into a signed int256.\n *\n * Requirements:\n *\n * - input must be less than or equal to maxInt256.\n */\n function toInt256(uint256 value) internal pure returns (int256) {\n // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\n if (value > uint256(type(int256).max)) {\n revert SafeCastOverflowedUintToInt(value);\n }\n return int256(value);\n }\n\n /**\n * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.\n */\n function toUint(bool b) internal pure returns (uint256 u) {\n assembly (\"memory-safe\") {\n u := iszero(iszero(b))\n }\n }\n}\n"},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.20;\n\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n /**\n * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n *\n * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n * one branch when needed, making this function more expensive.\n */\n function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {\n unchecked {\n // branchless ternary works because:\n // b ^ (a ^ b) == a\n // b ^ 0 == b\n return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));\n }\n }\n\n /**\n * @dev Returns the largest of two signed numbers.\n */\n function max(int256 a, int256 b) internal pure returns (int256) {\n return ternary(a > b, a, b);\n }\n\n /**\n * @dev Returns the smallest of two signed numbers.\n */\n function min(int256 a, int256 b) internal pure returns (int256) {\n return ternary(a < b, a, b);\n }\n\n /**\n * @dev Returns the average of two signed numbers without overflow.\n * The result is rounded towards zero.\n */\n function average(int256 a, int256 b) internal pure returns (int256) {\n // Formula from the book \"Hacker's Delight\"\n int256 x = (a & b) + ((a ^ b) >> 1);\n return x + (int256(uint256(x) >> 255) & (a ^ b));\n }\n\n /**\n * @dev Returns the absolute unsigned value of a signed value.\n */\n function abs(int256 n) internal pure returns (uint256) {\n unchecked {\n // Formula from the \"Bit Twiddling Hacks\" by Sean Eron Anderson.\n // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,\n // taking advantage of the most significant (or \"sign\" bit) in two's complement representation.\n // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,\n // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).\n int256 mask = n >> 255;\n\n // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.\n return uint256((n + mask) ^ mask);\n }\n }\n}\n"},"@openzeppelin/contracts/utils/Nonces.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides tracking nonces for addresses. Nonces will only increment.\n */\nabstract contract Nonces {\n /**\n * @dev The nonce used for an `account` is not the expected current nonce.\n */\n error InvalidAccountNonce(address account, uint256 currentNonce);\n\n mapping(address account => uint256) private _nonces;\n\n /**\n * @dev Returns the next unused nonce for an address.\n */\n function nonces(address owner) public view virtual returns (uint256) {\n return _nonces[owner];\n }\n\n /**\n * @dev Consumes a nonce.\n *\n * Returns the current value and increments nonce.\n */\n function _useNonce(address owner) internal virtual returns (uint256) {\n // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be\n // decremented or reset. This guarantees that the nonce never overflows.\n unchecked {\n // It is important to do x++ and not ++x here.\n return _nonces[owner]++;\n }\n }\n\n /**\n * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.\n */\n function _useCheckedNonce(address owner, uint256 nonce) internal virtual {\n uint256 current = _useNonce(owner);\n if (nonce != current) {\n revert InvalidAccountNonce(owner, current);\n }\n }\n}\n"},"@openzeppelin/contracts/utils/Panic.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Helper library for emitting standardized panic codes.\n *\n * ```solidity\n * contract Example {\n * using Panic for uint256;\n *\n * // Use any of the declared internal constants\n * function foo() { Panic.GENERIC.panic(); }\n *\n * // Alternatively\n * function foo() { Panic.panic(Panic.GENERIC); }\n * }\n * ```\n *\n * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n *\n * _Available since v5.1._\n */\n// slither-disable-next-line unused-state\nlibrary Panic {\n /// @dev generic / unspecified error\n uint256 internal constant GENERIC = 0x00;\n /// @dev used by the assert() builtin\n uint256 internal constant ASSERT = 0x01;\n /// @dev arithmetic underflow or overflow\n uint256 internal constant UNDER_OVERFLOW = 0x11;\n /// @dev division or modulo by zero\n uint256 internal constant DIVISION_BY_ZERO = 0x12;\n /// @dev enum conversion error\n uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;\n /// @dev invalid encoding in storage\n uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;\n /// @dev empty array pop\n uint256 internal constant EMPTY_ARRAY_POP = 0x31;\n /// @dev array out of bounds access\n uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;\n /// @dev resource error (too large allocation or too large array)\n uint256 internal constant RESOURCE_ERROR = 0x41;\n /// @dev calling invalid internal function\n uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;\n\n /// @dev Reverts with a panic code. Recommended to use with\n /// the internal constants with predefined codes.\n function panic(uint256 code) internal pure {\n assembly (\"memory-safe\") {\n mstore(0x00, 0x4e487b71)\n mstore(0x20, code)\n revert(0x1c, 0x24)\n }\n }\n}\n"},"@openzeppelin/contracts/utils/ShortStrings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/ShortStrings.sol)\n\npragma solidity ^0.8.20;\n\nimport {StorageSlot} from \"./StorageSlot.sol\";\n\n// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |\n// | length | 0x BB |\ntype ShortString is bytes32;\n\n/**\n * @dev This library provides functions to convert short memory strings\n * into a `ShortString` type that can be used as an immutable variable.\n *\n * Strings of arbitrary length can be optimized using this library if\n * they are short enough (up to 31 bytes) by packing them with their\n * length (1 byte) in a single EVM word (32 bytes). Additionally, a\n * fallback mechanism can be used for every other case.\n *\n * Usage example:\n *\n * ```solidity\n * contract Named {\n * using ShortStrings for *;\n *\n * ShortString private immutable _name;\n * string private _nameFallback;\n *\n * constructor(string memory contractName) {\n * _name = contractName.toShortStringWithFallback(_nameFallback);\n * }\n *\n * function name() external view returns (string memory) {\n * return _name.toStringWithFallback(_nameFallback);\n * }\n * }\n * ```\n */\nlibrary ShortStrings {\n // Used as an identifier for strings longer than 31 bytes.\n bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;\n\n error StringTooLong(string str);\n error InvalidShortString();\n\n /**\n * @dev Encode a string of at most 31 chars into a `ShortString`.\n *\n * This will trigger a `StringTooLong` error is the input string is too long.\n */\n function toShortString(string memory str) internal pure returns (ShortString) {\n bytes memory bstr = bytes(str);\n if (bstr.length > 31) {\n revert StringTooLong(str);\n }\n return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));\n }\n\n /**\n * @dev Decode a `ShortString` back to a \"normal\" string.\n */\n function toString(ShortString sstr) internal pure returns (string memory) {\n uint256 len = byteLength(sstr);\n // using `new string(len)` would work locally but is not memory safe.\n string memory str = new string(32);\n assembly (\"memory-safe\") {\n mstore(str, len)\n mstore(add(str, 0x20), sstr)\n }\n return str;\n }\n\n /**\n * @dev Return the length of a `ShortString`.\n */\n function byteLength(ShortString sstr) internal pure returns (uint256) {\n uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;\n if (result > 31) {\n revert InvalidShortString();\n }\n return result;\n }\n\n /**\n * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.\n */\n function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {\n if (bytes(value).length < 32) {\n return toShortString(value);\n } else {\n StorageSlot.getStringSlot(store).value = value;\n return ShortString.wrap(FALLBACK_SENTINEL);\n }\n }\n\n /**\n * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.\n */\n function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {\n if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {\n return toString(value);\n } else {\n return store;\n }\n }\n\n /**\n * @dev Return the length of a string that was encoded to `ShortString` or written to storage using\n * {setWithFallback}.\n *\n * WARNING: This will return the \"byte length\" of the string. This may not reflect the actual length in terms of\n * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.\n */\n function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {\n if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {\n return byteLength(value);\n } else {\n return bytes(store).length;\n }\n }\n}\n"},"@openzeppelin/contracts/utils/StorageSlot.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC-1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(newImplementation.code.length > 0);\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * TIP: Consider using this library along with {SlotDerivation}.\n */\nlibrary StorageSlot {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct Int256Slot {\n int256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Int256Slot` with member `value` located at `slot`.\n */\n function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns a `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := store.slot\n }\n }\n}\n"},"@openzeppelin/contracts/utils/Strings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"./math/Math.sol\";\nimport {SafeCast} from \"./math/SafeCast.sol\";\nimport {SignedMath} from \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n using SafeCast for *;\n\n bytes16 private constant HEX_DIGITS = \"0123456789abcdef\";\n uint8 private constant ADDRESS_LENGTH = 20;\n\n /**\n * @dev The `value` string doesn't fit in the specified `length`.\n */\n error StringsInsufficientHexLength(uint256 value, uint256 length);\n\n /**\n * @dev The string being parsed contains characters that are not in scope of the given base.\n */\n error StringsInvalidChar();\n\n /**\n * @dev The string being parsed is not a properly formatted address.\n */\n error StringsInvalidAddressFormat();\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n unchecked {\n uint256 length = Math.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n assembly (\"memory-safe\") {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n assembly (\"memory-safe\") {\n mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))\n }\n value /= 10;\n if (value == 0) break;\n }\n return buffer;\n }\n }\n\n /**\n * @dev Converts a `int256` to its ASCII `string` decimal representation.\n */\n function toStringSigned(int256 value) internal pure returns (string memory) {\n return string.concat(value < 0 ? \"-\" : \"\", toString(SignedMath.abs(value)));\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n unchecked {\n return toHexString(value, Math.log256(value) + 1);\n }\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n uint256 localValue = value;\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = HEX_DIGITS[localValue & 0xf];\n localValue >>= 4;\n }\n if (localValue != 0) {\n revert StringsInsufficientHexLength(value, length);\n }\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n * representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n * representation, according to EIP-55.\n */\n function toChecksumHexString(address addr) internal pure returns (string memory) {\n bytes memory buffer = bytes(toHexString(addr));\n\n // hash the hex part of buffer (skip length + 2 bytes, length 40)\n uint256 hashValue;\n assembly (\"memory-safe\") {\n hashValue := shr(96, keccak256(add(buffer, 0x22), 40))\n }\n\n for (uint256 i = 41; i > 1; --i) {\n // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)\n if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {\n // case shift by xoring with 0x20\n buffer[i] ^= 0x20;\n }\n hashValue >>= 4;\n }\n return string(buffer);\n }\n\n /**\n * @dev Returns true if the two strings are equal.\n */\n function equal(string memory a, string memory b) internal pure returns (bool) {\n return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));\n }\n\n /**\n * @dev Parse a decimal string and returns the value as a `uint256`.\n *\n * Requirements:\n * - The string must be formatted as `[0-9]*`\n * - The result must fit into an `uint256` type\n */\n function parseUint(string memory input) internal pure returns (uint256) {\n return parseUint(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `[0-9]*`\n * - The result must fit into an `uint256` type\n */\n function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n (bool success, uint256 value) = tryParseUint(input, begin, end);\n if (!success) revert StringsInvalidChar();\n return value;\n }\n\n /**\n * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {\n return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n * character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseUint(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, uint256 value) {\n if (end > bytes(input).length || begin > end) return (false, 0);\n return _tryParseUintUncheckedBounds(input, begin, end);\n }\n\n /**\n * @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that\n * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n */\n function _tryParseUintUncheckedBounds(\n string memory input,\n uint256 begin,\n uint256 end\n ) private pure returns (bool success, uint256 value) {\n bytes memory buffer = bytes(input);\n\n uint256 result = 0;\n for (uint256 i = begin; i < end; ++i) {\n uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n if (chr > 9) return (false, 0);\n result *= 10;\n result += chr;\n }\n return (true, result);\n }\n\n /**\n * @dev Parse a decimal string and returns the value as a `int256`.\n *\n * Requirements:\n * - The string must be formatted as `[-+]?[0-9]*`\n * - The result must fit in an `int256` type.\n */\n function parseInt(string memory input) internal pure returns (int256) {\n return parseInt(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `[-+]?[0-9]*`\n * - The result must fit in an `int256` type.\n */\n function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {\n (bool success, int256 value) = tryParseInt(input, begin, end);\n if (!success) revert StringsInvalidChar();\n return value;\n }\n\n /**\n * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n * the result does not fit in a `int256`.\n *\n * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n */\n function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {\n return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);\n }\n\n uint256 private constant ABS_MIN_INT256 = 2 ** 255;\n\n /**\n * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n * character or if the result does not fit in a `int256`.\n *\n * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n */\n function tryParseInt(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, int256 value) {\n if (end > bytes(input).length || begin > end) return (false, 0);\n return _tryParseIntUncheckedBounds(input, begin, end);\n }\n\n /**\n * @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that\n * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n */\n function _tryParseIntUncheckedBounds(\n string memory input,\n uint256 begin,\n uint256 end\n ) private pure returns (bool success, int256 value) {\n bytes memory buffer = bytes(input);\n\n // Check presence of a negative sign.\n bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n bool positiveSign = sign == bytes1(\"+\");\n bool negativeSign = sign == bytes1(\"-\");\n uint256 offset = (positiveSign || negativeSign).toUint();\n\n (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);\n\n if (absSuccess && absValue < ABS_MIN_INT256) {\n return (true, negativeSign ? -int256(absValue) : int256(absValue));\n } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {\n return (true, type(int256).min);\n } else return (false, 0);\n }\n\n /**\n * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n *\n * Requirements:\n * - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n * - The result must fit in an `uint256` type.\n */\n function parseHexUint(string memory input) internal pure returns (uint256) {\n return parseHexUint(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n * - The result must fit in an `uint256` type.\n */\n function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n (bool success, uint256 value) = tryParseHexUint(input, begin, end);\n if (!success) revert StringsInvalidChar();\n return value;\n }\n\n /**\n * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {\n return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n * invalid character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseHexUint(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, uint256 value) {\n if (end > bytes(input).length || begin > end) return (false, 0);\n return _tryParseHexUintUncheckedBounds(input, begin, end);\n }\n\n /**\n * @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that\n * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n */\n function _tryParseHexUintUncheckedBounds(\n string memory input,\n uint256 begin,\n uint256 end\n ) private pure returns (bool success, uint256 value) {\n bytes memory buffer = bytes(input);\n\n // skip 0x prefix if present\n bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n uint256 offset = hasPrefix.toUint() * 2;\n\n uint256 result = 0;\n for (uint256 i = begin + offset; i < end; ++i) {\n uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n if (chr > 15) return (false, 0);\n result *= 16;\n unchecked {\n // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).\n // This guaratees that adding a value < 16 will not cause an overflow, hence the unchecked.\n result += chr;\n }\n }\n return (true, result);\n }\n\n /**\n * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n *\n * Requirements:\n * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`\n */\n function parseAddress(string memory input) internal pure returns (address) {\n return parseAddress(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`\n */\n function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {\n (bool success, address value) = tryParseAddress(input, begin, end);\n if (!success) revert StringsInvalidAddressFormat();\n return value;\n }\n\n /**\n * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n * formatted address. See {parseAddress} requirements.\n */\n function tryParseAddress(string memory input) internal pure returns (bool success, address value) {\n return tryParseAddress(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n * formatted address. See {parseAddress} requirements.\n */\n function tryParseAddress(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, address value) {\n if (end > bytes(input).length || begin > end) return (false, address(0));\n\n bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n uint256 expectedLength = 40 + hasPrefix.toUint() * 2;\n\n // check that input is the correct length\n if (end - begin == expectedLength) {\n // length guarantees that this does not overflow, and value is at most type(uint160).max\n (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);\n return (s, address(uint160(v)));\n } else {\n return (false, address(0));\n }\n }\n\n function _tryParseChr(bytes1 chr) private pure returns (uint8) {\n uint8 value = uint8(chr);\n\n // Try to parse `chr`:\n // - Case 1: [0-9]\n // - Case 2: [a-f]\n // - Case 3: [A-F]\n // - otherwise not supported\n unchecked {\n if (value > 47 && value < 58) value -= 48;\n else if (value > 96 && value < 103) value -= 87;\n else if (value > 64 && value < 71) value -= 55;\n else return type(uint8).max;\n }\n\n return value;\n }\n\n /**\n * @dev Reads a bytes32 from a bytes array without bounds checking.\n *\n * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n * assembly block as such would prevent some optimizations.\n */\n function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {\n // This is not memory safe in the general case, but all calls to this private function are within bounds.\n assembly (\"memory-safe\") {\n value := mload(add(buffer, add(0x20, offset)))\n }\n }\n}\n"},"@openzeppelin/contracts/utils/structs/Checkpoints.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/structs/Checkpoints.sol)\n// This file was procedurally generated from scripts/generate/templates/Checkpoints.js.\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"../math/Math.sol\";\n\n/**\n * @dev This library defines the `Trace*` struct, for checkpointing values as they change at different points in\n * time, and later looking up past values by block number. See {Votes} as an example.\n *\n * To create a history of checkpoints define a variable type `Checkpoints.Trace*` in your contract, and store a new\n * checkpoint for the current transaction block using the {push} function.\n */\nlibrary Checkpoints {\n /**\n * @dev A value was attempted to be inserted on a past checkpoint.\n */\n error CheckpointUnorderedInsertion();\n\n struct Trace224 {\n Checkpoint224[] _checkpoints;\n }\n\n struct Checkpoint224 {\n uint32 _key;\n uint224 _value;\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into a Trace224 so that it is stored as the checkpoint.\n *\n * Returns previous value and new value.\n *\n * IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint32).max` key set will disable the\n * library.\n */\n function push(\n Trace224 storage self,\n uint32 key,\n uint224 value\n ) internal returns (uint224 oldValue, uint224 newValue) {\n return _insert(self._checkpoints, key, value);\n }\n\n /**\n * @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n * there is none.\n */\n function lowerLookup(Trace224 storage self, uint32 key) internal view returns (uint224) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len);\n return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n */\n function upperLookup(Trace224 storage self, uint32 key) internal view returns (uint224) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n *\n * NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n * keys).\n */\n function upperLookupRecent(Trace224 storage self, uint32 key) internal view returns (uint224) {\n uint256 len = self._checkpoints.length;\n\n uint256 low = 0;\n uint256 high = len;\n\n if (len > 5) {\n uint256 mid = len - Math.sqrt(len);\n if (key < _unsafeAccess(self._checkpoints, mid)._key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high);\n\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.\n */\n function latest(Trace224 storage self) internal view returns (uint224) {\n uint256 pos = self._checkpoints.length;\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n * in the most recent checkpoint.\n */\n function latestCheckpoint(Trace224 storage self) internal view returns (bool exists, uint32 _key, uint224 _value) {\n uint256 pos = self._checkpoints.length;\n if (pos == 0) {\n return (false, 0, 0);\n } else {\n Checkpoint224 storage ckpt = _unsafeAccess(self._checkpoints, pos - 1);\n return (true, ckpt._key, ckpt._value);\n }\n }\n\n /**\n * @dev Returns the number of checkpoint.\n */\n function length(Trace224 storage self) internal view returns (uint256) {\n return self._checkpoints.length;\n }\n\n /**\n * @dev Returns checkpoint at given position.\n */\n function at(Trace224 storage self, uint32 pos) internal view returns (Checkpoint224 memory) {\n return self._checkpoints[pos];\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n * or by updating the last one.\n */\n function _insert(\n Checkpoint224[] storage self,\n uint32 key,\n uint224 value\n ) private returns (uint224 oldValue, uint224 newValue) {\n uint256 pos = self.length;\n\n if (pos > 0) {\n Checkpoint224 storage last = _unsafeAccess(self, pos - 1);\n uint32 lastKey = last._key;\n uint224 lastValue = last._value;\n\n // Checkpoint keys must be non-decreasing.\n if (lastKey > key) {\n revert CheckpointUnorderedInsertion();\n }\n\n // Update or push new checkpoint\n if (lastKey == key) {\n last._value = value;\n } else {\n self.push(Checkpoint224({_key: key, _value: value}));\n }\n return (lastValue, value);\n } else {\n self.push(Checkpoint224({_key: key, _value: value}));\n return (0, value);\n }\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _upperBinaryLookup(\n Checkpoint224[] storage self,\n uint32 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key > key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n return high;\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _lowerBinaryLookup(\n Checkpoint224[] storage self,\n uint32 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key < key) {\n low = mid + 1;\n } else {\n high = mid;\n }\n }\n return high;\n }\n\n /**\n * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.\n */\n function _unsafeAccess(\n Checkpoint224[] storage self,\n uint256 pos\n ) private pure returns (Checkpoint224 storage result) {\n assembly {\n mstore(0, self.slot)\n result.slot := add(keccak256(0, 0x20), pos)\n }\n }\n\n struct Trace208 {\n Checkpoint208[] _checkpoints;\n }\n\n struct Checkpoint208 {\n uint48 _key;\n uint208 _value;\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into a Trace208 so that it is stored as the checkpoint.\n *\n * Returns previous value and new value.\n *\n * IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint48).max` key set will disable the\n * library.\n */\n function push(\n Trace208 storage self,\n uint48 key,\n uint208 value\n ) internal returns (uint208 oldValue, uint208 newValue) {\n return _insert(self._checkpoints, key, value);\n }\n\n /**\n * @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n * there is none.\n */\n function lowerLookup(Trace208 storage self, uint48 key) internal view returns (uint208) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len);\n return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n */\n function upperLookup(Trace208 storage self, uint48 key) internal view returns (uint208) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n *\n * NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n * keys).\n */\n function upperLookupRecent(Trace208 storage self, uint48 key) internal view returns (uint208) {\n uint256 len = self._checkpoints.length;\n\n uint256 low = 0;\n uint256 high = len;\n\n if (len > 5) {\n uint256 mid = len - Math.sqrt(len);\n if (key < _unsafeAccess(self._checkpoints, mid)._key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high);\n\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.\n */\n function latest(Trace208 storage self) internal view returns (uint208) {\n uint256 pos = self._checkpoints.length;\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n * in the most recent checkpoint.\n */\n function latestCheckpoint(Trace208 storage self) internal view returns (bool exists, uint48 _key, uint208 _value) {\n uint256 pos = self._checkpoints.length;\n if (pos == 0) {\n return (false, 0, 0);\n } else {\n Checkpoint208 storage ckpt = _unsafeAccess(self._checkpoints, pos - 1);\n return (true, ckpt._key, ckpt._value);\n }\n }\n\n /**\n * @dev Returns the number of checkpoint.\n */\n function length(Trace208 storage self) internal view returns (uint256) {\n return self._checkpoints.length;\n }\n\n /**\n * @dev Returns checkpoint at given position.\n */\n function at(Trace208 storage self, uint32 pos) internal view returns (Checkpoint208 memory) {\n return self._checkpoints[pos];\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n * or by updating the last one.\n */\n function _insert(\n Checkpoint208[] storage self,\n uint48 key,\n uint208 value\n ) private returns (uint208 oldValue, uint208 newValue) {\n uint256 pos = self.length;\n\n if (pos > 0) {\n Checkpoint208 storage last = _unsafeAccess(self, pos - 1);\n uint48 lastKey = last._key;\n uint208 lastValue = last._value;\n\n // Checkpoint keys must be non-decreasing.\n if (lastKey > key) {\n revert CheckpointUnorderedInsertion();\n }\n\n // Update or push new checkpoint\n if (lastKey == key) {\n last._value = value;\n } else {\n self.push(Checkpoint208({_key: key, _value: value}));\n }\n return (lastValue, value);\n } else {\n self.push(Checkpoint208({_key: key, _value: value}));\n return (0, value);\n }\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _upperBinaryLookup(\n Checkpoint208[] storage self,\n uint48 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key > key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n return high;\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _lowerBinaryLookup(\n Checkpoint208[] storage self,\n uint48 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key < key) {\n low = mid + 1;\n } else {\n high = mid;\n }\n }\n return high;\n }\n\n /**\n * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.\n */\n function _unsafeAccess(\n Checkpoint208[] storage self,\n uint256 pos\n ) private pure returns (Checkpoint208 storage result) {\n assembly {\n mstore(0, self.slot)\n result.slot := add(keccak256(0, 0x20), pos)\n }\n }\n\n struct Trace160 {\n Checkpoint160[] _checkpoints;\n }\n\n struct Checkpoint160 {\n uint96 _key;\n uint160 _value;\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into a Trace160 so that it is stored as the checkpoint.\n *\n * Returns previous value and new value.\n *\n * IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint96).max` key set will disable the\n * library.\n */\n function push(\n Trace160 storage self,\n uint96 key,\n uint160 value\n ) internal returns (uint160 oldValue, uint160 newValue) {\n return _insert(self._checkpoints, key, value);\n }\n\n /**\n * @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n * there is none.\n */\n function lowerLookup(Trace160 storage self, uint96 key) internal view returns (uint160) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len);\n return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n */\n function upperLookup(Trace160 storage self, uint96 key) internal view returns (uint160) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n *\n * NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n * keys).\n */\n function upperLookupRecent(Trace160 storage self, uint96 key) internal view returns (uint160) {\n uint256 len = self._checkpoints.length;\n\n uint256 low = 0;\n uint256 high = len;\n\n if (len > 5) {\n uint256 mid = len - Math.sqrt(len);\n if (key < _unsafeAccess(self._checkpoints, mid)._key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high);\n\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.\n */\n function latest(Trace160 storage self) internal view returns (uint160) {\n uint256 pos = self._checkpoints.length;\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n * in the most recent checkpoint.\n */\n function latestCheckpoint(Trace160 storage self) internal view returns (bool exists, uint96 _key, uint160 _value) {\n uint256 pos = self._checkpoints.length;\n if (pos == 0) {\n return (false, 0, 0);\n } else {\n Checkpoint160 storage ckpt = _unsafeAccess(self._checkpoints, pos - 1);\n return (true, ckpt._key, ckpt._value);\n }\n }\n\n /**\n * @dev Returns the number of checkpoint.\n */\n function length(Trace160 storage self) internal view returns (uint256) {\n return self._checkpoints.length;\n }\n\n /**\n * @dev Returns checkpoint at given position.\n */\n function at(Trace160 storage self, uint32 pos) internal view returns (Checkpoint160 memory) {\n return self._checkpoints[pos];\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n * or by updating the last one.\n */\n function _insert(\n Checkpoint160[] storage self,\n uint96 key,\n uint160 value\n ) private returns (uint160 oldValue, uint160 newValue) {\n uint256 pos = self.length;\n\n if (pos > 0) {\n Checkpoint160 storage last = _unsafeAccess(self, pos - 1);\n uint96 lastKey = last._key;\n uint160 lastValue = last._value;\n\n // Checkpoint keys must be non-decreasing.\n if (lastKey > key) {\n revert CheckpointUnorderedInsertion();\n }\n\n // Update or push new checkpoint\n if (lastKey == key) {\n last._value = value;\n } else {\n self.push(Checkpoint160({_key: key, _value: value}));\n }\n return (lastValue, value);\n } else {\n self.push(Checkpoint160({_key: key, _value: value}));\n return (0, value);\n }\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _upperBinaryLookup(\n Checkpoint160[] storage self,\n uint96 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key > key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n return high;\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _lowerBinaryLookup(\n Checkpoint160[] storage self,\n uint96 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key < key) {\n low = mid + 1;\n } else {\n high = mid;\n }\n }\n return high;\n }\n\n /**\n * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.\n */\n function _unsafeAccess(\n Checkpoint160[] storage self,\n uint256 pos\n ) private pure returns (Checkpoint160 storage result) {\n assembly {\n mstore(0, self.slot)\n result.slot := add(keccak256(0, 0x20), pos)\n }\n }\n}\n"},"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/structs/DoubleEndedQueue.sol)\npragma solidity ^0.8.20;\n\nimport {Panic} from \"../Panic.sol\";\n\n/**\n * @dev A sequence of items with the ability to efficiently push and pop items (i.e. insert and remove) on both ends of\n * the sequence (called front and back). Among other access patterns, it can be used to implement efficient LIFO and\n * FIFO queues. Storage use is optimized, and all operations are O(1) constant time. This includes {clear}, given that\n * the existing queue contents are left in storage.\n *\n * The struct is called `Bytes32Deque`. Other types can be cast to and from `bytes32`. This data structure can only be\n * used in storage, and not in memory.\n * ```solidity\n * DoubleEndedQueue.Bytes32Deque queue;\n * ```\n */\nlibrary DoubleEndedQueue {\n /**\n * @dev Indices are 128 bits so begin and end are packed in a single storage slot for efficient access.\n *\n * Struct members have an underscore prefix indicating that they are \"private\" and should not be read or written to\n * directly. Use the functions provided below instead. Modifying the struct manually may violate assumptions and\n * lead to unexpected behavior.\n *\n * The first item is at data[begin] and the last item is at data[end - 1]. This range can wrap around.\n */\n struct Bytes32Deque {\n uint128 _begin;\n uint128 _end;\n mapping(uint128 index => bytes32) _data;\n }\n\n /**\n * @dev Inserts an item at the end of the queue.\n *\n * Reverts with {Panic-RESOURCE_ERROR} if the queue is full.\n */\n function pushBack(Bytes32Deque storage deque, bytes32 value) internal {\n unchecked {\n uint128 backIndex = deque._end;\n if (backIndex + 1 == deque._begin) Panic.panic(Panic.RESOURCE_ERROR);\n deque._data[backIndex] = value;\n deque._end = backIndex + 1;\n }\n }\n\n /**\n * @dev Removes the item at the end of the queue and returns it.\n *\n * Reverts with {Panic-EMPTY_ARRAY_POP} if the queue is empty.\n */\n function popBack(Bytes32Deque storage deque) internal returns (bytes32 value) {\n unchecked {\n uint128 backIndex = deque._end;\n if (backIndex == deque._begin) Panic.panic(Panic.EMPTY_ARRAY_POP);\n --backIndex;\n value = deque._data[backIndex];\n delete deque._data[backIndex];\n deque._end = backIndex;\n }\n }\n\n /**\n * @dev Inserts an item at the beginning of the queue.\n *\n * Reverts with {Panic-RESOURCE_ERROR} if the queue is full.\n */\n function pushFront(Bytes32Deque storage deque, bytes32 value) internal {\n unchecked {\n uint128 frontIndex = deque._begin - 1;\n if (frontIndex == deque._end) Panic.panic(Panic.RESOURCE_ERROR);\n deque._data[frontIndex] = value;\n deque._begin = frontIndex;\n }\n }\n\n /**\n * @dev Removes the item at the beginning of the queue and returns it.\n *\n * Reverts with {Panic-EMPTY_ARRAY_POP} if the queue is empty.\n */\n function popFront(Bytes32Deque storage deque) internal returns (bytes32 value) {\n unchecked {\n uint128 frontIndex = deque._begin;\n if (frontIndex == deque._end) Panic.panic(Panic.EMPTY_ARRAY_POP);\n value = deque._data[frontIndex];\n delete deque._data[frontIndex];\n deque._begin = frontIndex + 1;\n }\n }\n\n /**\n * @dev Returns the item at the beginning of the queue.\n *\n * Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the queue is empty.\n */\n function front(Bytes32Deque storage deque) internal view returns (bytes32 value) {\n if (empty(deque)) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n return deque._data[deque._begin];\n }\n\n /**\n * @dev Returns the item at the end of the queue.\n *\n * Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the queue is empty.\n */\n function back(Bytes32Deque storage deque) internal view returns (bytes32 value) {\n if (empty(deque)) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n unchecked {\n return deque._data[deque._end - 1];\n }\n }\n\n /**\n * @dev Return the item at a position in the queue given by `index`, with the first item at 0 and last item at\n * `length(deque) - 1`.\n *\n * Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the index is out of bounds.\n */\n function at(Bytes32Deque storage deque, uint256 index) internal view returns (bytes32 value) {\n if (index >= length(deque)) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n // By construction, length is a uint128, so the check above ensures that index can be safely downcast to uint128\n unchecked {\n return deque._data[deque._begin + uint128(index)];\n }\n }\n\n /**\n * @dev Resets the queue back to being empty.\n *\n * NOTE: The current items are left behind in storage. This does not affect the functioning of the queue, but misses\n * out on potential gas refunds.\n */\n function clear(Bytes32Deque storage deque) internal {\n deque._begin = 0;\n deque._end = 0;\n }\n\n /**\n * @dev Returns the number of items in the queue.\n */\n function length(Bytes32Deque storage deque) internal view returns (uint256) {\n unchecked {\n return uint256(deque._end - deque._begin);\n }\n }\n\n /**\n * @dev Returns true if the queue is empty.\n */\n function empty(Bytes32Deque storage deque) internal view returns (bool) {\n return deque._end == deque._begin;\n }\n}\n"},"@openzeppelin/contracts/utils/types/Time.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/types/Time.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"../math/Math.sol\";\nimport {SafeCast} from \"../math/SafeCast.sol\";\n\n/**\n * @dev This library provides helpers for manipulating time-related objects.\n *\n * It uses the following types:\n * - `uint48` for timepoints\n * - `uint32` for durations\n *\n * While the library doesn't provide specific types for timepoints and duration, it does provide:\n * - a `Delay` type to represent duration that can be programmed to change value automatically at a given point\n * - additional helper functions\n */\nlibrary Time {\n using Time for *;\n\n /**\n * @dev Get the block timestamp as a Timepoint.\n */\n function timestamp() internal view returns (uint48) {\n return SafeCast.toUint48(block.timestamp);\n }\n\n /**\n * @dev Get the block number as a Timepoint.\n */\n function blockNumber() internal view returns (uint48) {\n return SafeCast.toUint48(block.number);\n }\n\n // ==================================================== Delay =====================================================\n /**\n * @dev A `Delay` is a uint32 duration that can be programmed to change value automatically at a given point in the\n * future. The \"effect\" timepoint describes when the transitions happens from the \"old\" value to the \"new\" value.\n * This allows updating the delay applied to some operation while keeping some guarantees.\n *\n * In particular, the {update} function guarantees that if the delay is reduced, the old delay still applies for\n * some time. For example if the delay is currently 7 days to do an upgrade, the admin should not be able to set\n * the delay to 0 and upgrade immediately. If the admin wants to reduce the delay, the old delay (7 days) should\n * still apply for some time.\n *\n *\n * The `Delay` type is 112 bits long, and packs the following:\n *\n * ```\n * | [uint48]: effect date (timepoint)\n * | | [uint32]: value before (duration)\n * ↓ ↓ ↓ [uint32]: value after (duration)\n * 0xAAAAAAAAAAAABBBBBBBBCCCCCCCC\n * ```\n *\n * NOTE: The {get} and {withUpdate} functions operate using timestamps. Block number based delays are not currently\n * supported.\n */\n type Delay is uint112;\n\n /**\n * @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature\n */\n function toDelay(uint32 duration) internal pure returns (Delay) {\n return Delay.wrap(duration);\n }\n\n /**\n * @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled\n * change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered.\n */\n function _getFullAt(\n Delay self,\n uint48 timepoint\n ) private pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n (valueBefore, valueAfter, effect) = self.unpack();\n return effect <= timepoint ? (valueAfter, 0, 0) : (valueBefore, valueAfter, effect);\n }\n\n /**\n * @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the\n * effect timepoint is 0, then the pending value should not be considered.\n */\n function getFull(Delay self) internal view returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n return _getFullAt(self, timestamp());\n }\n\n /**\n * @dev Get the current value.\n */\n function get(Delay self) internal view returns (uint32) {\n (uint32 delay, , ) = self.getFull();\n return delay;\n }\n\n /**\n * @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to\n * enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the\n * new delay becomes effective.\n */\n function withUpdate(\n Delay self,\n uint32 newValue,\n uint32 minSetback\n ) internal view returns (Delay updatedDelay, uint48 effect) {\n uint32 value = self.get();\n uint32 setback = uint32(Math.max(minSetback, value > newValue ? value - newValue : 0));\n effect = timestamp() + setback;\n return (pack(value, newValue, effect), effect);\n }\n\n /**\n * @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint).\n */\n function unpack(Delay self) internal pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n uint112 raw = Delay.unwrap(self);\n\n valueAfter = uint32(raw);\n valueBefore = uint32(raw >> 32);\n effect = uint48(raw >> 64);\n\n return (valueBefore, valueAfter, effect);\n }\n\n /**\n * @dev pack the components into a Delay object.\n */\n function pack(uint32 valueBefore, uint32 valueAfter, uint48 effect) internal pure returns (Delay) {\n return Delay.wrap((uint112(effect) << 64) | (uint112(valueBefore) << 32) | uint112(valueAfter));\n }\n}\n"},"contracts/DLE.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol\";\nimport \"@openzeppelin/contracts/governance/Governor.sol\";\nimport \"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol\";\nimport \"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol\";\nimport \"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol\";\nimport \"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol\";\nimport \"@openzeppelin/contracts/governance/utils/IVotes.sol\";\nimport \"@openzeppelin/contracts/utils/Nonces.sol\";\n\n/**\n * @title DLE (Digital Legal Entity)\n * @dev Основной контракт DLE с отдельным модулем TimelockController.\n */\ncontract DLE is \n ERC20Votes, \n Governor, \n GovernorSettings, \n GovernorCountingSimple, \n GovernorVotesQuorumFraction, \n GovernorTimelockControl \n{\n struct DLEInfo {\n string name;\n string symbol;\n string location;\n string coordinates;\n uint256 jurisdiction;\n uint256 oktmo;\n string[] okvedCodes;\n uint256 kpp;\n uint256 creationTimestamp;\n bool isActive;\n }\n\n struct DLEConfig {\n string name;\n string symbol;\n string location;\n string coordinates;\n uint256 jurisdiction;\n uint256 oktmo;\n string[] okvedCodes;\n uint256 kpp;\n uint48 votingDelay;\n uint32 votingPeriod;\n uint256 proposalThreshold;\n uint256 quorumPercentage;\n }\n\n struct Proposal {\n bytes operation;\n uint256[] targetChains;\n uint256 timelock;\n uint256 governanceChain;\n address initiator;\n bytes[] signatures;\n bool executed;\n uint256 quorumRequired;\n uint256 signaturesCount;\n }\n\n DLEInfo public dleInfo;\n mapping(uint256 => Proposal) public proposals;\n uint256 public proposalCounter;\n uint256 public quorumPercentage;\n\n event DLEInitialized(\n string name,\n string symbol,\n string location,\n string coordinates,\n uint256 jurisdiction,\n uint256 oktmo,\n string[] okvedCodes,\n uint256 kpp,\n address tokenAddress,\n address timelockAddress,\n address governorAddress\n );\n event TokensDistributed(address[] partners, uint256[] amounts);\n event ProposalCreated(uint256 proposalId, address initiator, bytes operation);\n event ProposalSigned(uint256 proposalId, address signer, uint256 signaturesCount);\n event ModuleInstalled(string moduleName, address moduleAddress);\n\n constructor(\n DLEConfig memory config,\n address timelockAddress\n )\n ERC20(config.name, config.symbol)\n Governor(config.name)\n GovernorSettings(config.votingDelay, config.votingPeriod, config.proposalThreshold)\n GovernorVotesQuorumFraction(config.quorumPercentage)\n GovernorTimelockControl(TimelockController(payable(timelockAddress)))\n GovernorVotes(IVotes(address(this)))\n {\n dleInfo = DLEInfo({\n name: config.name,\n symbol: config.symbol,\n location: config.location,\n coordinates: config.coordinates,\n jurisdiction: config.jurisdiction,\n oktmo: config.oktmo,\n okvedCodes: config.okvedCodes,\n kpp: config.kpp,\n creationTimestamp: block.timestamp,\n isActive: true\n });\n quorumPercentage = config.quorumPercentage;\n emit DLEInitialized(\n config.name,\n config.symbol,\n config.location,\n config.coordinates,\n config.jurisdiction,\n config.oktmo,\n config.okvedCodes,\n config.kpp,\n address(this),\n timelockAddress,\n address(this)\n );\n }\n\n function distributeInitialTokens(\n address[] memory _partners,\n uint256[] memory _amounts\n ) external {\n require(_partners.length == _amounts.length, \"Arrays length mismatch\");\n require(_partners.length > 0, \"Empty arrays\");\n for (uint256 i = 0; i < _partners.length; i++) {\n require(_partners[i] != address(0), \"Zero address\");\n require(_amounts[i] > 0, \"Zero amount\");\n _mint(_partners[i], _amounts[i]);\n }\n emit TokensDistributed(_partners, _amounts);\n }\n\n function createProposal(\n bytes memory _operation,\n uint256[] memory _targetChains,\n uint256 _timelock,\n uint256 _governanceChain\n ) external returns (uint256) {\n require(_operation.length > 0, \"Empty operation\");\n require(_targetChains.length > 0, \"Empty target chains\");\n require(_timelock > block.timestamp, \"Invalid timelock\");\n uint256 proposalId = proposalCounter++;\n proposals[proposalId] = Proposal({\n operation: _operation,\n targetChains: _targetChains,\n timelock: _timelock,\n governanceChain: _governanceChain,\n initiator: msg.sender,\n signatures: new bytes[](0),\n executed: false,\n quorumRequired: (totalSupply() * quorumPercentage) / 100,\n signaturesCount: 0\n });\n emit ProposalCreated(proposalId, msg.sender, _operation);\n return proposalId;\n }\n\n function signProposal(uint256 _proposalId) external {\n Proposal storage proposal = proposals[_proposalId];\n require(!proposal.executed, \"Proposal already executed\");\n require(block.timestamp < proposal.timelock, \"Proposal expired\");\n require(balanceOf(msg.sender) > 0, \"No tokens to sign\");\n proposal.signatures.push(abi.encodePacked(msg.sender));\n proposal.signaturesCount++;\n emit ProposalSigned(_proposalId, msg.sender, proposal.signaturesCount);\n if (proposal.signaturesCount >= proposal.quorumRequired) {\n proposal.executed = true;\n emit IGovernor.ProposalExecuted(_proposalId);\n }\n }\n\n function installModule(string memory _moduleName, address _moduleAddress) external {\n emit ModuleInstalled(_moduleName, _moduleAddress);\n }\n\n // Переопределения для совместимости с ERC-6372\n function CLOCK_MODE() public pure override(Governor, GovernorVotes, Votes) returns (string memory) {\n return \"mode=blocknumber&from=default\";\n }\n function clock() public view override(Governor, GovernorVotes, Votes) returns (uint48) {\n return uint48(block.number);\n }\n function _update(address from, address to, uint256 amount) internal override(ERC20Votes) {\n super._update(from, to, amount);\n }\n function nonces(address owner) public view override(Nonces) returns (uint256) {\n return super.nonces(owner);\n }\n function name() public view override(ERC20, Governor) returns (string memory) {\n return super.name();\n }\n function votingDelay() public view override(Governor, GovernorSettings) returns (uint256) {\n return super.votingDelay();\n }\n function votingPeriod() public view override(Governor, GovernorSettings) returns (uint256) {\n return super.votingPeriod();\n }\n function quorum(uint256 blockNumber) public view override(Governor, GovernorVotesQuorumFraction) returns (uint256) {\n return super.quorum(blockNumber);\n }\n function state(uint256 proposalId) public view override(Governor, GovernorTimelockControl) returns (ProposalState) {\n return super.state(proposalId);\n }\n function proposalThreshold() public view override(Governor, GovernorSettings) returns (uint256) {\n return super.proposalThreshold();\n }\n function _cancel(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal override(Governor, GovernorTimelockControl) returns (uint256) {\n return super._cancel(targets, values, calldatas, descriptionHash);\n }\n function _executor() internal view override(Governor, GovernorTimelockControl) returns (address) {\n return super._executor();\n }\n function supportsInterface(bytes4 interfaceId) public view override(Governor) returns (bool) {\n return super.supportsInterface(interfaceId);\n }\n function proposalNeedsQueuing(uint256 proposalId) public view override(Governor, GovernorTimelockControl) returns (bool) {\n return super.proposalNeedsQueuing(proposalId);\n }\n function _queueOperations(\n uint256 proposalId,\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal override(Governor, GovernorTimelockControl) returns (uint48) {\n return super._queueOperations(proposalId, targets, values, calldatas, descriptionHash);\n }\n function _executeOperations(\n uint256 proposalId,\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal override(Governor, GovernorTimelockControl) {\n super._executeOperations(proposalId, targets, values, calldatas, descriptionHash);\n }\n} "}},"settings":{"optimizer":{"enabled":true,"runs":200},"viaIR":true,"evmVersion":"paris","outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}}}},"output":{"sources":{"@openzeppelin/contracts/access/AccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","exportedSymbols":{"AccessControl":[295],"Context":[6718],"ERC165":[9182],"IAccessControl":[378]},"id":296,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"108:24:0"},{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","file":"./IAccessControl.sol","id":3,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":296,"sourceUnit":379,"src":"134:52:0","symbolAliases":[{"foreign":{"id":2,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":378,"src":"142:14:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":5,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":296,"sourceUnit":6719,"src":"187:45:0","symbolAliases":[{"foreign":{"id":4,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6718,"src":"195:7:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../utils/introspection/ERC165.sol","id":7,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":296,"sourceUnit":9183,"src":"233:57:0","symbolAliases":[{"foreign":{"id":6,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9182,"src":"241:6:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9,"name":"Context","nameLocations":["1988:7:0"],"nodeType":"IdentifierPath","referencedDeclaration":6718,"src":"1988:7:0"},"id":10,"nodeType":"InheritanceSpecifier","src":"1988:7:0"},{"baseName":{"id":11,"name":"IAccessControl","nameLocations":["1997:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":378,"src":"1997:14:0"},"id":12,"nodeType":"InheritanceSpecifier","src":"1997:14:0"},{"baseName":{"id":13,"name":"ERC165","nameLocations":["2013:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":9182,"src":"2013:6:0"},"id":14,"nodeType":"InheritanceSpecifier","src":"2013:6:0"}],"canonicalName":"AccessControl","contractDependencies":[],"contractKind":"contract","documentation":{"id":8,"nodeType":"StructuredDocumentation","src":"292:1660:0","text":" @dev Contract module that allows children to implement role-based access\n control mechanisms. This is a lightweight version that doesn't allow enumerating role\n members except through off-chain means by accessing the contract event logs. Some\n applications may benefit from on-chain enumerability, for those cases see\n {AccessControlEnumerable}.\n Roles are referred to by their `bytes32` identifier. These should be exposed\n in the external API and be unique. The best way to achieve this is by\n using `public constant` hash digests:\n ```solidity\n bytes32 public constant MY_ROLE = keccak256(\"MY_ROLE\");\n ```\n Roles can be used to represent a set of permissions. To restrict access to a\n function call, use {hasRole}:\n ```solidity\n function foo() public {\n require(hasRole(MY_ROLE, msg.sender));\n ...\n }\n ```\n Roles can be granted and revoked dynamically via the {grantRole} and\n {revokeRole} functions. Each role has an associated admin role, and only\n accounts that have a role's admin role can call {grantRole} and {revokeRole}.\n By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means\n that only accounts with this role will be able to grant or revoke other\n roles. More complex role relationships can be created by using\n {_setRoleAdmin}.\n WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to\n grant and revoke this role. Extra precautions should be taken to secure\n accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}\n to enforce additional security measures for this role."},"fullyImplemented":true,"id":295,"linearizedBaseContracts":[295,9182,9194,378,6718],"name":"AccessControl","nameLocation":"1971:13:0","nodeType":"ContractDefinition","nodes":[{"canonicalName":"AccessControl.RoleData","id":21,"members":[{"constant":false,"id":18,"mutability":"mutable","name":"hasRole","nameLocation":"2085:7:0","nodeType":"VariableDeclaration","scope":21,"src":"2052:40:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":17,"keyName":"account","keyNameLocation":"2068:7:0","keyType":{"id":15,"name":"address","nodeType":"ElementaryTypeName","src":"2060:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2052:32:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":16,"name":"bool","nodeType":"ElementaryTypeName","src":"2079:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"},{"constant":false,"id":20,"mutability":"mutable","name":"adminRole","nameLocation":"2110:9:0","nodeType":"VariableDeclaration","scope":21,"src":"2102:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2102:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"RoleData","nameLocation":"2033:8:0","nodeType":"StructDefinition","scope":295,"src":"2026:100:0","visibility":"public"},{"constant":false,"id":26,"mutability":"mutable","name":"_roles","nameLocation":"2174:6:0","nodeType":"VariableDeclaration","scope":295,"src":"2132:48:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData)"},"typeName":{"id":25,"keyName":"role","keyNameLocation":"2148:4:0","keyType":{"id":22,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2140:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"2132:33:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":24,"nodeType":"UserDefinedTypeName","pathNode":{"id":23,"name":"RoleData","nameLocations":["2156:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":21,"src":"2156:8:0"},"referencedDeclaration":21,"src":"2156:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage_ptr","typeString":"struct AccessControl.RoleData"}}},"visibility":"private"},{"constant":true,"functionSelector":"a217fddf","id":29,"mutability":"constant","name":"DEFAULT_ADMIN_ROLE","nameLocation":"2211:18:0","nodeType":"VariableDeclaration","scope":295,"src":"2187:49:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2187:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"30783030","id":28,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2232:4:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"public"},{"body":{"id":39,"nodeType":"Block","src":"2454:44:0","statements":[{"expression":{"arguments":[{"id":35,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32,"src":"2475:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":34,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[93,114],"referencedDeclaration":93,"src":"2464:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$__$","typeString":"function (bytes32) view"}},"id":36,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2464:16:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37,"nodeType":"ExpressionStatement","src":"2464:16:0"},{"id":38,"nodeType":"PlaceholderStatement","src":"2490:1:0"}]},"documentation":{"id":30,"nodeType":"StructuredDocumentation","src":"2243:174:0","text":" @dev Modifier that checks that an account has a specific role. Reverts\n with an {AccessControlUnauthorizedAccount} error including the required role."},"id":40,"name":"onlyRole","nameLocation":"2431:8:0","nodeType":"ModifierDefinition","parameters":{"id":33,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32,"mutability":"mutable","name":"role","nameLocation":"2448:4:0","nodeType":"VariableDeclaration","scope":40,"src":"2440:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2440:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2439:14:0"},"src":"2422:76:0","virtual":false,"visibility":"internal"},{"baseFunctions":[9181],"body":{"id":61,"nodeType":"Block","src":"2656:111:0","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":59,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":54,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":49,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":43,"src":"2673:11:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":51,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":378,"src":"2693:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$378_$","typeString":"type(contract IAccessControl)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$378_$","typeString":"type(contract IAccessControl)"}],"id":50,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2688:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":52,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2688:20:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IAccessControl_$378","typeString":"type(contract IAccessControl)"}},"id":53,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2709:11:0","memberName":"interfaceId","nodeType":"MemberAccess","src":"2688:32:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2673:47:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":57,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":43,"src":"2748:11:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":55,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2724:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_AccessControl_$295_$","typeString":"type(contract super AccessControl)"}},"id":56,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2730:17:0","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":9181,"src":"2724:23:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":58,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2724:36:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2673:87:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":48,"id":60,"nodeType":"Return","src":"2666:94:0"}]},"documentation":{"id":41,"nodeType":"StructuredDocumentation","src":"2504:56:0","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":62,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"2574:17:0","nodeType":"FunctionDefinition","overrides":{"id":45,"nodeType":"OverrideSpecifier","overrides":[],"src":"2632:8:0"},"parameters":{"id":44,"nodeType":"ParameterList","parameters":[{"constant":false,"id":43,"mutability":"mutable","name":"interfaceId","nameLocation":"2599:11:0","nodeType":"VariableDeclaration","scope":62,"src":"2592:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":42,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2592:6:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2591:20:0"},"returnParameters":{"id":48,"nodeType":"ParameterList","parameters":[{"constant":false,"id":47,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":62,"src":"2650:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":46,"name":"bool","nodeType":"ElementaryTypeName","src":"2650:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2649:6:0"},"scope":295,"src":"2565:202:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[345],"body":{"id":79,"nodeType":"Block","src":"2937:53:0","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":72,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"2954:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":74,"indexExpression":{"id":73,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":65,"src":"2961:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2954:12:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":75,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2967:7:0","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":18,"src":"2954:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":77,"indexExpression":{"id":76,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":67,"src":"2975:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2954:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":71,"id":78,"nodeType":"Return","src":"2947:36:0"}]},"documentation":{"id":63,"nodeType":"StructuredDocumentation","src":"2773:76:0","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":80,"implemented":true,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"2863:7:0","nodeType":"FunctionDefinition","parameters":{"id":68,"nodeType":"ParameterList","parameters":[{"constant":false,"id":65,"mutability":"mutable","name":"role","nameLocation":"2879:4:0","nodeType":"VariableDeclaration","scope":80,"src":"2871:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":64,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2871:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":67,"mutability":"mutable","name":"account","nameLocation":"2893:7:0","nodeType":"VariableDeclaration","scope":80,"src":"2885:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":66,"name":"address","nodeType":"ElementaryTypeName","src":"2885:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2870:31:0"},"returnParameters":{"id":71,"nodeType":"ParameterList","parameters":[{"constant":false,"id":70,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":80,"src":"2931:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":69,"name":"bool","nodeType":"ElementaryTypeName","src":"2931:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2930:6:0"},"scope":295,"src":"2854:136:0","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":92,"nodeType":"Block","src":"3255:47:0","statements":[{"expression":{"arguments":[{"id":87,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"3276:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":88,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"3282:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":89,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3282:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":86,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[93,114],"referencedDeclaration":114,"src":"3265:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address) view"}},"id":90,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3265:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":91,"nodeType":"ExpressionStatement","src":"3265:30:0"}]},"documentation":{"id":81,"nodeType":"StructuredDocumentation","src":"2996:198:0","text":" @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier."},"id":93,"implemented":true,"kind":"function","modifiers":[],"name":"_checkRole","nameLocation":"3208:10:0","nodeType":"FunctionDefinition","parameters":{"id":84,"nodeType":"ParameterList","parameters":[{"constant":false,"id":83,"mutability":"mutable","name":"role","nameLocation":"3227:4:0","nodeType":"VariableDeclaration","scope":93,"src":"3219:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":82,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3219:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3218:14:0"},"returnParameters":{"id":85,"nodeType":"ParameterList","parameters":[],"src":"3255:0:0"},"scope":295,"src":"3199:103:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":113,"nodeType":"Block","src":"3505:124:0","statements":[{"condition":{"id":105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3519:23:0","subExpression":{"arguments":[{"id":102,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":96,"src":"3528:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":103,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":98,"src":"3534:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":101,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":80,"src":"3520:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3520:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":112,"nodeType":"IfStatement","src":"3515:108:0","trueBody":{"id":111,"nodeType":"Block","src":"3544:79:0","statements":[{"errorCall":{"arguments":[{"id":107,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":98,"src":"3598:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":108,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":96,"src":"3607:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":106,"name":"AccessControlUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"3565:32:0","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_bytes32_$returns$__$","typeString":"function (address,bytes32) pure"}},"id":109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3565:47:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":110,"nodeType":"RevertStatement","src":"3558:54:0"}]}}]},"documentation":{"id":94,"nodeType":"StructuredDocumentation","src":"3308:119:0","text":" @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`\n is missing `role`."},"id":114,"implemented":true,"kind":"function","modifiers":[],"name":"_checkRole","nameLocation":"3441:10:0","nodeType":"FunctionDefinition","parameters":{"id":99,"nodeType":"ParameterList","parameters":[{"constant":false,"id":96,"mutability":"mutable","name":"role","nameLocation":"3460:4:0","nodeType":"VariableDeclaration","scope":114,"src":"3452:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":95,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3452:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":98,"mutability":"mutable","name":"account","nameLocation":"3474:7:0","nodeType":"VariableDeclaration","scope":114,"src":"3466:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":97,"name":"address","nodeType":"ElementaryTypeName","src":"3466:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3451:31:0"},"returnParameters":{"id":100,"nodeType":"ParameterList","parameters":[],"src":"3505:0:0"},"scope":295,"src":"3432:197:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[353],"body":{"id":127,"nodeType":"Block","src":"3884:46:0","statements":[{"expression":{"expression":{"baseExpression":{"id":122,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"3901:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":124,"indexExpression":{"id":123,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":117,"src":"3908:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3901:12:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":125,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3914:9:0","memberName":"adminRole","nodeType":"MemberAccess","referencedDeclaration":20,"src":"3901:22:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":121,"id":126,"nodeType":"Return","src":"3894:29:0"}]},"documentation":{"id":115,"nodeType":"StructuredDocumentation","src":"3635:170:0","text":" @dev Returns the admin role that controls `role`. See {grantRole} and\n {revokeRole}.\n To change a role's admin, use {_setRoleAdmin}."},"functionSelector":"248a9ca3","id":128,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"3819:12:0","nodeType":"FunctionDefinition","parameters":{"id":118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":117,"mutability":"mutable","name":"role","nameLocation":"3840:4:0","nodeType":"VariableDeclaration","scope":128,"src":"3832:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":116,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3832:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3831:14:0"},"returnParameters":{"id":121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":120,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":128,"src":"3875:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":119,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3875:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3874:9:0"},"scope":295,"src":"3810:120:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[361],"body":{"id":146,"nodeType":"Block","src":"4320:42:0","statements":[{"expression":{"arguments":[{"id":142,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":131,"src":"4341:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":143,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":133,"src":"4347:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":141,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4330:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4330:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":145,"nodeType":"ExpressionStatement","src":"4330:25:0"}]},"documentation":{"id":129,"nodeType":"StructuredDocumentation","src":"3936:285:0","text":" @dev Grants `role` to `account`.\n If `account` had not been already granted `role`, emits a {RoleGranted}\n event.\n Requirements:\n - the caller must have ``role``'s admin role.\n May emit a {RoleGranted} event."},"functionSelector":"2f2ff15d","id":147,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"arguments":[{"id":137,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":131,"src":"4313:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":136,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":128,"src":"4300:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4300:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":139,"kind":"modifierInvocation","modifierName":{"id":135,"name":"onlyRole","nameLocations":["4291:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"4291:8:0"},"nodeType":"ModifierInvocation","src":"4291:28:0"}],"name":"grantRole","nameLocation":"4235:9:0","nodeType":"FunctionDefinition","parameters":{"id":134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":131,"mutability":"mutable","name":"role","nameLocation":"4253:4:0","nodeType":"VariableDeclaration","scope":147,"src":"4245:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":130,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4245:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":133,"mutability":"mutable","name":"account","nameLocation":"4267:7:0","nodeType":"VariableDeclaration","scope":147,"src":"4259:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":132,"name":"address","nodeType":"ElementaryTypeName","src":"4259:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4244:31:0"},"returnParameters":{"id":140,"nodeType":"ParameterList","parameters":[],"src":"4320:0:0"},"scope":295,"src":"4226:136:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[369],"body":{"id":165,"nodeType":"Block","src":"4737:43:0","statements":[{"expression":{"arguments":[{"id":161,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":150,"src":"4759:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":162,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":152,"src":"4765:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":160,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"4747:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4747:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":164,"nodeType":"ExpressionStatement","src":"4747:26:0"}]},"documentation":{"id":148,"nodeType":"StructuredDocumentation","src":"4368:269:0","text":" @dev Revokes `role` from `account`.\n If `account` had been granted `role`, emits a {RoleRevoked} event.\n Requirements:\n - the caller must have ``role``'s admin role.\n May emit a {RoleRevoked} event."},"functionSelector":"d547741f","id":166,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"arguments":[{"id":156,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":150,"src":"4730:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":155,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":128,"src":"4717:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4717:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":158,"kind":"modifierInvocation","modifierName":{"id":154,"name":"onlyRole","nameLocations":["4708:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"4708:8:0"},"nodeType":"ModifierInvocation","src":"4708:28:0"}],"name":"revokeRole","nameLocation":"4651:10:0","nodeType":"FunctionDefinition","parameters":{"id":153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":150,"mutability":"mutable","name":"role","nameLocation":"4670:4:0","nodeType":"VariableDeclaration","scope":166,"src":"4662:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":149,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4662:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":152,"mutability":"mutable","name":"account","nameLocation":"4684:7:0","nodeType":"VariableDeclaration","scope":166,"src":"4676:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":151,"name":"address","nodeType":"ElementaryTypeName","src":"4676:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4661:31:0"},"returnParameters":{"id":159,"nodeType":"ParameterList","parameters":[],"src":"4737:0:0"},"scope":295,"src":"4642:138:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[377],"body":{"id":188,"nodeType":"Block","src":"5407:166:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":174,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"5421:18:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":175,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"5443:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":176,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5443:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5421:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":182,"nodeType":"IfStatement","src":"5417:102:0","trueBody":{"id":181,"nodeType":"Block","src":"5457:62:0","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":178,"name":"AccessControlBadConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":308,"src":"5478:28:0","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5478:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":180,"nodeType":"RevertStatement","src":"5471:37:0"}]}},{"expression":{"arguments":[{"id":184,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"5541:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":185,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"5547:18:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":183,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5529:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5529:37:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":187,"nodeType":"ExpressionStatement","src":"5529:37:0"}]},"documentation":{"id":167,"nodeType":"StructuredDocumentation","src":"4786:537:0","text":" @dev Revokes `role` from the calling account.\n Roles are often managed via {grantRole} and {revokeRole}: this function's\n purpose is to provide a mechanism for accounts to lose their privileges\n if they are compromised (such as when a trusted device is misplaced).\n If the calling account had been revoked `role`, emits a {RoleRevoked}\n event.\n Requirements:\n - the caller must be `callerConfirmation`.\n May emit a {RoleRevoked} event."},"functionSelector":"36568abe","id":189,"implemented":true,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"5337:12:0","nodeType":"FunctionDefinition","parameters":{"id":172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":169,"mutability":"mutable","name":"role","nameLocation":"5358:4:0","nodeType":"VariableDeclaration","scope":189,"src":"5350:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":168,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5350:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":171,"mutability":"mutable","name":"callerConfirmation","nameLocation":"5372:18:0","nodeType":"VariableDeclaration","scope":189,"src":"5364:26:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":170,"name":"address","nodeType":"ElementaryTypeName","src":"5364:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5349:42:0"},"returnParameters":{"id":173,"nodeType":"ParameterList","parameters":[],"src":"5407:0:0"},"scope":295,"src":"5328:245:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":216,"nodeType":"Block","src":"5771:174:0","statements":[{"assignments":[198],"declarations":[{"constant":false,"id":198,"mutability":"mutable","name":"previousAdminRole","nameLocation":"5789:17:0","nodeType":"VariableDeclaration","scope":216,"src":"5781:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":197,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5781:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":202,"initialValue":{"arguments":[{"id":200,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":192,"src":"5822:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":199,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":128,"src":"5809:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":201,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5809:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"5781:46:0"},{"expression":{"id":208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":203,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"5837:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":205,"indexExpression":{"id":204,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":192,"src":"5844:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5837:12:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":206,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5850:9:0","memberName":"adminRole","nodeType":"MemberAccess","referencedDeclaration":20,"src":"5837:22:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":207,"name":"adminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":194,"src":"5862:9:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"5837:34:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":209,"nodeType":"ExpressionStatement","src":"5837:34:0"},{"eventCall":{"arguments":[{"id":211,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":192,"src":"5903:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":212,"name":"previousAdminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":198,"src":"5909:17:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":213,"name":"adminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":194,"src":"5928:9:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":210,"name":"RoleAdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":317,"src":"5886:16:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32,bytes32)"}},"id":214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5886:52:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":215,"nodeType":"EmitStatement","src":"5881:57:0"}]},"documentation":{"id":190,"nodeType":"StructuredDocumentation","src":"5579:114:0","text":" @dev Sets `adminRole` as ``role``'s admin role.\n Emits a {RoleAdminChanged} event."},"id":217,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleAdmin","nameLocation":"5707:13:0","nodeType":"FunctionDefinition","parameters":{"id":195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":192,"mutability":"mutable","name":"role","nameLocation":"5729:4:0","nodeType":"VariableDeclaration","scope":217,"src":"5721:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":191,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5721:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":194,"mutability":"mutable","name":"adminRole","nameLocation":"5743:9:0","nodeType":"VariableDeclaration","scope":217,"src":"5735:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":193,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5735:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5720:33:0"},"returnParameters":{"id":196,"nodeType":"ParameterList","parameters":[],"src":"5771:0:0"},"scope":295,"src":"5698:247:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":255,"nodeType":"Block","src":"6262:233:0","statements":[{"condition":{"id":231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6276:23:0","subExpression":{"arguments":[{"id":228,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"6285:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":229,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":222,"src":"6291:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":227,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":80,"src":"6277:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6277:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":253,"nodeType":"Block","src":"6452:37:0","statements":[{"expression":{"hexValue":"66616c7365","id":251,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6473:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":226,"id":252,"nodeType":"Return","src":"6466:12:0"}]},"id":254,"nodeType":"IfStatement","src":"6272:217:0","trueBody":{"id":250,"nodeType":"Block","src":"6301:145:0","statements":[{"expression":{"id":239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":232,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"6315:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":234,"indexExpression":{"id":233,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"6322:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6315:12:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":235,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6328:7:0","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":18,"src":"6315:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":237,"indexExpression":{"id":236,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":222,"src":"6336:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6315:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6347:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6315:36:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":240,"nodeType":"ExpressionStatement","src":"6315:36:0"},{"eventCall":{"arguments":[{"id":242,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"6382:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":243,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":222,"src":"6388:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":244,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"6397:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6397:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":241,"name":"RoleGranted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":326,"src":"6370:11:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address)"}},"id":246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6370:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":247,"nodeType":"EmitStatement","src":"6365:45:0"},{"expression":{"hexValue":"74727565","id":248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6431:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":226,"id":249,"nodeType":"Return","src":"6424:11:0"}]}}]},"documentation":{"id":218,"nodeType":"StructuredDocumentation","src":"5951:223:0","text":" @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.\n Internal function without access restriction.\n May emit a {RoleGranted} event."},"id":256,"implemented":true,"kind":"function","modifiers":[],"name":"_grantRole","nameLocation":"6188:10:0","nodeType":"FunctionDefinition","parameters":{"id":223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":220,"mutability":"mutable","name":"role","nameLocation":"6207:4:0","nodeType":"VariableDeclaration","scope":256,"src":"6199:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":219,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6199:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":222,"mutability":"mutable","name":"account","nameLocation":"6221:7:0","nodeType":"VariableDeclaration","scope":256,"src":"6213:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":221,"name":"address","nodeType":"ElementaryTypeName","src":"6213:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6198:31:0"},"returnParameters":{"id":226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":225,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":256,"src":"6256:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":224,"name":"bool","nodeType":"ElementaryTypeName","src":"6256:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6255:6:0"},"scope":295,"src":"6179:316:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":293,"nodeType":"Block","src":"6814:233:0","statements":[{"condition":{"arguments":[{"id":267,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":259,"src":"6836:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":268,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6842:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":266,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":80,"src":"6828:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6828:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":291,"nodeType":"Block","src":"7004:37:0","statements":[{"expression":{"hexValue":"66616c7365","id":289,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7025:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":265,"id":290,"nodeType":"Return","src":"7018:12:0"}]},"id":292,"nodeType":"IfStatement","src":"6824:217:0","trueBody":{"id":288,"nodeType":"Block","src":"6852:146:0","statements":[{"expression":{"id":277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":270,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"6866:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":272,"indexExpression":{"id":271,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":259,"src":"6873:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6866:12:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":273,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6879:7:0","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":18,"src":"6866:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":275,"indexExpression":{"id":274,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6887:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6866:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6898:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6866:37:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":278,"nodeType":"ExpressionStatement","src":"6866:37:0"},{"eventCall":{"arguments":[{"id":280,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":259,"src":"6934:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":281,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6940:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":282,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"6949:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6949:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":279,"name":"RoleRevoked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":335,"src":"6922:11:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address)"}},"id":284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6922:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":285,"nodeType":"EmitStatement","src":"6917:45:0"},{"expression":{"hexValue":"74727565","id":286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6983:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":265,"id":287,"nodeType":"Return","src":"6976:11:0"}]}}]},"documentation":{"id":257,"nodeType":"StructuredDocumentation","src":"6501:224:0","text":" @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.\n Internal function without access restriction.\n May emit a {RoleRevoked} event."},"id":294,"implemented":true,"kind":"function","modifiers":[],"name":"_revokeRole","nameLocation":"6739:11:0","nodeType":"FunctionDefinition","parameters":{"id":262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":259,"mutability":"mutable","name":"role","nameLocation":"6759:4:0","nodeType":"VariableDeclaration","scope":294,"src":"6751:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":258,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6751:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":261,"mutability":"mutable","name":"account","nameLocation":"6773:7:0","nodeType":"VariableDeclaration","scope":294,"src":"6765:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":260,"name":"address","nodeType":"ElementaryTypeName","src":"6765:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6750:31:0"},"returnParameters":{"id":265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":264,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":294,"src":"6808:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":263,"name":"bool","nodeType":"ElementaryTypeName","src":"6808:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6807:6:0"},"scope":295,"src":"6730:317:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":296,"src":"1953:5096:0","usedErrors":[305,308],"usedEvents":[317,326,335]}],"src":"108:6942:0"},"id":0},"@openzeppelin/contracts/access/IAccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","exportedSymbols":{"IAccessControl":[378]},"id":379,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":297,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:1"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessControl","contractDependencies":[],"contractKind":"interface","documentation":{"id":298,"nodeType":"StructuredDocumentation","src":"135:90:1","text":" @dev External interface of AccessControl declared to support ERC-165 detection."},"fullyImplemented":false,"id":378,"linearizedBaseContracts":[378],"name":"IAccessControl","nameLocation":"236:14:1","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":299,"nodeType":"StructuredDocumentation","src":"257:56:1","text":" @dev The `account` is missing a role."},"errorSelector":"e2517d3f","id":305,"name":"AccessControlUnauthorizedAccount","nameLocation":"324:32:1","nodeType":"ErrorDefinition","parameters":{"id":304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":301,"mutability":"mutable","name":"account","nameLocation":"365:7:1","nodeType":"VariableDeclaration","scope":305,"src":"357:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":300,"name":"address","nodeType":"ElementaryTypeName","src":"357:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":303,"mutability":"mutable","name":"neededRole","nameLocation":"382:10:1","nodeType":"VariableDeclaration","scope":305,"src":"374:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":302,"name":"bytes32","nodeType":"ElementaryTypeName","src":"374:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"356:37:1"},"src":"318:76:1"},{"documentation":{"id":306,"nodeType":"StructuredDocumentation","src":"400:148:1","text":" @dev The caller of a function is not the expected one.\n NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."},"errorSelector":"6697b232","id":308,"name":"AccessControlBadConfirmation","nameLocation":"559:28:1","nodeType":"ErrorDefinition","parameters":{"id":307,"nodeType":"ParameterList","parameters":[],"src":"587:2:1"},"src":"553:37:1"},{"anonymous":false,"documentation":{"id":309,"nodeType":"StructuredDocumentation","src":"596:254:1","text":" @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n {RoleAdminChanged} not being emitted signaling this."},"eventSelector":"bd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff","id":317,"name":"RoleAdminChanged","nameLocation":"861:16:1","nodeType":"EventDefinition","parameters":{"id":316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":311,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"894:4:1","nodeType":"VariableDeclaration","scope":317,"src":"878:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":310,"name":"bytes32","nodeType":"ElementaryTypeName","src":"878:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":313,"indexed":true,"mutability":"mutable","name":"previousAdminRole","nameLocation":"916:17:1","nodeType":"VariableDeclaration","scope":317,"src":"900:33:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":312,"name":"bytes32","nodeType":"ElementaryTypeName","src":"900:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":315,"indexed":true,"mutability":"mutable","name":"newAdminRole","nameLocation":"951:12:1","nodeType":"VariableDeclaration","scope":317,"src":"935:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":314,"name":"bytes32","nodeType":"ElementaryTypeName","src":"935:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"877:87:1"},"src":"855:110:1"},{"anonymous":false,"documentation":{"id":318,"nodeType":"StructuredDocumentation","src":"971:295:1","text":" @dev Emitted when `account` is granted `role`.\n `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).\n Expected in cases where the role was granted using the internal {AccessControl-_grantRole}."},"eventSelector":"2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d","id":326,"name":"RoleGranted","nameLocation":"1277:11:1","nodeType":"EventDefinition","parameters":{"id":325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":320,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1305:4:1","nodeType":"VariableDeclaration","scope":326,"src":"1289:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":319,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1289:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":322,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1327:7:1","nodeType":"VariableDeclaration","scope":326,"src":"1311:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":321,"name":"address","nodeType":"ElementaryTypeName","src":"1311:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":324,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1352:6:1","nodeType":"VariableDeclaration","scope":326,"src":"1336:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":323,"name":"address","nodeType":"ElementaryTypeName","src":"1336:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1288:71:1"},"src":"1271:89:1"},{"anonymous":false,"documentation":{"id":327,"nodeType":"StructuredDocumentation","src":"1366:275:1","text":" @dev Emitted when `account` is revoked `role`.\n `sender` is the account that originated the contract call:\n - if using `revokeRole`, it is the admin role bearer\n - if using `renounceRole`, it is the role bearer (i.e. `account`)"},"eventSelector":"f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b","id":335,"name":"RoleRevoked","nameLocation":"1652:11:1","nodeType":"EventDefinition","parameters":{"id":334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":329,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1680:4:1","nodeType":"VariableDeclaration","scope":335,"src":"1664:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":328,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1664:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":331,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1702:7:1","nodeType":"VariableDeclaration","scope":335,"src":"1686:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":330,"name":"address","nodeType":"ElementaryTypeName","src":"1686:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":333,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1727:6:1","nodeType":"VariableDeclaration","scope":335,"src":"1711:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":332,"name":"address","nodeType":"ElementaryTypeName","src":"1711:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1663:71:1"},"src":"1646:89:1"},{"documentation":{"id":336,"nodeType":"StructuredDocumentation","src":"1741:76:1","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":345,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"1831:7:1","nodeType":"FunctionDefinition","parameters":{"id":341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":338,"mutability":"mutable","name":"role","nameLocation":"1847:4:1","nodeType":"VariableDeclaration","scope":345,"src":"1839:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":337,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1839:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":340,"mutability":"mutable","name":"account","nameLocation":"1861:7:1","nodeType":"VariableDeclaration","scope":345,"src":"1853:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":339,"name":"address","nodeType":"ElementaryTypeName","src":"1853:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1838:31:1"},"returnParameters":{"id":344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":343,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":345,"src":"1893:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":342,"name":"bool","nodeType":"ElementaryTypeName","src":"1893:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1892:6:1"},"scope":378,"src":"1822:77:1","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":346,"nodeType":"StructuredDocumentation","src":"1905:184:1","text":" @dev Returns the admin role that controls `role`. See {grantRole} and\n {revokeRole}.\n To change a role's admin, use {AccessControl-_setRoleAdmin}."},"functionSelector":"248a9ca3","id":353,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"2103:12:1","nodeType":"FunctionDefinition","parameters":{"id":349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":348,"mutability":"mutable","name":"role","nameLocation":"2124:4:1","nodeType":"VariableDeclaration","scope":353,"src":"2116:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":347,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2116:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2115:14:1"},"returnParameters":{"id":352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":351,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":353,"src":"2153:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":350,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2153:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2152:9:1"},"scope":378,"src":"2094:68:1","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":354,"nodeType":"StructuredDocumentation","src":"2168:239:1","text":" @dev Grants `role` to `account`.\n If `account` had not been already granted `role`, emits a {RoleGranted}\n event.\n Requirements:\n - the caller must have ``role``'s admin role."},"functionSelector":"2f2ff15d","id":361,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"2421:9:1","nodeType":"FunctionDefinition","parameters":{"id":359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":356,"mutability":"mutable","name":"role","nameLocation":"2439:4:1","nodeType":"VariableDeclaration","scope":361,"src":"2431:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":355,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2431:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":358,"mutability":"mutable","name":"account","nameLocation":"2453:7:1","nodeType":"VariableDeclaration","scope":361,"src":"2445:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":357,"name":"address","nodeType":"ElementaryTypeName","src":"2445:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2430:31:1"},"returnParameters":{"id":360,"nodeType":"ParameterList","parameters":[],"src":"2470:0:1"},"scope":378,"src":"2412:59:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":362,"nodeType":"StructuredDocumentation","src":"2477:223:1","text":" @dev Revokes `role` from `account`.\n If `account` had been granted `role`, emits a {RoleRevoked} event.\n Requirements:\n - the caller must have ``role``'s admin role."},"functionSelector":"d547741f","id":369,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"2714:10:1","nodeType":"FunctionDefinition","parameters":{"id":367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":364,"mutability":"mutable","name":"role","nameLocation":"2733:4:1","nodeType":"VariableDeclaration","scope":369,"src":"2725:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":363,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2725:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":366,"mutability":"mutable","name":"account","nameLocation":"2747:7:1","nodeType":"VariableDeclaration","scope":369,"src":"2739:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":365,"name":"address","nodeType":"ElementaryTypeName","src":"2739:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2724:31:1"},"returnParameters":{"id":368,"nodeType":"ParameterList","parameters":[],"src":"2764:0:1"},"scope":378,"src":"2705:60:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":370,"nodeType":"StructuredDocumentation","src":"2771:491:1","text":" @dev Revokes `role` from the calling account.\n Roles are often managed via {grantRole} and {revokeRole}: this function's\n purpose is to provide a mechanism for accounts to lose their privileges\n if they are compromised (such as when a trusted device is misplaced).\n If the calling account had been granted `role`, emits a {RoleRevoked}\n event.\n Requirements:\n - the caller must be `callerConfirmation`."},"functionSelector":"36568abe","id":377,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"3276:12:1","nodeType":"FunctionDefinition","parameters":{"id":375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":372,"mutability":"mutable","name":"role","nameLocation":"3297:4:1","nodeType":"VariableDeclaration","scope":377,"src":"3289:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":371,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3289:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":374,"mutability":"mutable","name":"callerConfirmation","nameLocation":"3311:18:1","nodeType":"VariableDeclaration","scope":377,"src":"3303:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":373,"name":"address","nodeType":"ElementaryTypeName","src":"3303:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3288:42:1"},"returnParameters":{"id":376,"nodeType":"ParameterList","parameters":[],"src":"3339:0:1"},"scope":378,"src":"3267:73:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":379,"src":"226:3116:1","usedErrors":[305,308],"usedEvents":[317,326,335]}],"src":"109:3234:1"},"id":1},"@openzeppelin/contracts/governance/Governor.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","exportedSymbols":{"Address":[6688],"Context":[6718],"DoubleEndedQueue":[14645],"EIP712":[8976],"ERC165":[9182],"Governor":[2134],"IERC1155Receiver":[5551],"IERC165":[9194],"IERC6372":[5372],"IERC721Receiver":[6401],"IGovernor":[2588],"Nonces":[6808],"SafeCast":[12565],"SignatureChecker":[9158],"Strings":[8401]},"id":2135,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":380,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:2"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"../token/ERC721/IERC721Receiver.sol","id":382,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":6402,"src":"133:68:2","symbolAliases":[{"foreign":{"id":381,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6401,"src":"141:15:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","file":"../token/ERC1155/IERC1155Receiver.sol","id":384,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":5552,"src":"202:71:2","symbolAliases":[{"foreign":{"id":383,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5551,"src":"210:16:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","file":"../utils/cryptography/EIP712.sol","id":386,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":8977,"src":"274:56:2","symbolAliases":[{"foreign":{"id":385,"name":"EIP712","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8976,"src":"282:6:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol","file":"../utils/cryptography/SignatureChecker.sol","id":388,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":9159,"src":"331:76:2","symbolAliases":[{"foreign":{"id":387,"name":"SignatureChecker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9158,"src":"339:16:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../utils/introspection/ERC165.sol","id":391,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":9183,"src":"408:66:2","symbolAliases":[{"foreign":{"id":389,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"416:7:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":390,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9182,"src":"425:6:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../utils/math/SafeCast.sol","id":393,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":12566,"src":"475:52:2","symbolAliases":[{"foreign":{"id":392,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"483:8:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol","file":"../utils/structs/DoubleEndedQueue.sol","id":395,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":14646,"src":"528:71:2","symbolAliases":[{"foreign":{"id":394,"name":"DoubleEndedQueue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14645,"src":"536:16:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../utils/Address.sol","id":397,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":6689,"src":"600:45:2","symbolAliases":[{"foreign":{"id":396,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"608:7:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":399,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":6719,"src":"646:45:2","symbolAliases":[{"foreign":{"id":398,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6718,"src":"654:7:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"../utils/Nonces.sol","id":401,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":6809,"src":"692:43:2","symbolAliases":[{"foreign":{"id":400,"name":"Nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6808,"src":"700:6:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../utils/Strings.sol","id":403,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":8402,"src":"736:45:2","symbolAliases":[{"foreign":{"id":402,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8401,"src":"744:7:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/IGovernor.sol","file":"./IGovernor.sol","id":406,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2135,"sourceUnit":2589,"src":"782:52:2","symbolAliases":[{"foreign":{"id":404,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2588,"src":"790:9:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":405,"name":"IERC6372","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5372,"src":"801:8:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":408,"name":"Context","nameLocations":["1273:7:2"],"nodeType":"IdentifierPath","referencedDeclaration":6718,"src":"1273:7:2"},"id":409,"nodeType":"InheritanceSpecifier","src":"1273:7:2"},{"baseName":{"id":410,"name":"ERC165","nameLocations":["1282:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":9182,"src":"1282:6:2"},"id":411,"nodeType":"InheritanceSpecifier","src":"1282:6:2"},{"baseName":{"id":412,"name":"EIP712","nameLocations":["1290:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":8976,"src":"1290:6:2"},"id":413,"nodeType":"InheritanceSpecifier","src":"1290:6:2"},{"baseName":{"id":414,"name":"Nonces","nameLocations":["1298:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":6808,"src":"1298:6:2"},"id":415,"nodeType":"InheritanceSpecifier","src":"1298:6:2"},{"baseName":{"id":416,"name":"IGovernor","nameLocations":["1306:9:2"],"nodeType":"IdentifierPath","referencedDeclaration":2588,"src":"1306:9:2"},"id":417,"nodeType":"InheritanceSpecifier","src":"1306:9:2"},{"baseName":{"id":418,"name":"IERC721Receiver","nameLocations":["1317:15:2"],"nodeType":"IdentifierPath","referencedDeclaration":6401,"src":"1317:15:2"},"id":419,"nodeType":"InheritanceSpecifier","src":"1317:15:2"},{"baseName":{"id":420,"name":"IERC1155Receiver","nameLocations":["1334:16:2"],"nodeType":"IdentifierPath","referencedDeclaration":5551,"src":"1334:16:2"},"id":421,"nodeType":"InheritanceSpecifier","src":"1334:16:2"}],"canonicalName":"Governor","contractDependencies":[],"contractKind":"contract","documentation":{"id":407,"nodeType":"StructuredDocumentation","src":"836:406:2","text":" @dev Core of the governance system, designed to be extended through various modules.\n This contract is abstract and requires several functions to be implemented in various modules:\n - A counting module must implement {quorum}, {_quorumReached}, {_voteSucceeded} and {_countVote}\n - A voting module must implement {_getVotes}\n - Additionally, {votingPeriod} must also be implemented"},"fullyImplemented":false,"id":2134,"linearizedBaseContracts":[2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"Governor","nameLocation":"1261:8:2","nodeType":"ContractDefinition","nodes":[{"global":false,"id":425,"libraryName":{"id":422,"name":"DoubleEndedQueue","nameLocations":["1363:16:2"],"nodeType":"IdentifierPath","referencedDeclaration":14645,"src":"1363:16:2"},"nodeType":"UsingForDirective","src":"1357:57:2","typeName":{"id":424,"nodeType":"UserDefinedTypeName","pathNode":{"id":423,"name":"DoubleEndedQueue.Bytes32Deque","nameLocations":["1384:16:2","1401:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"1384:29:2"},"referencedDeclaration":14305,"src":"1384:29:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}}},{"constant":true,"functionSelector":"deaaa7cc","id":430,"mutability":"constant","name":"BALLOT_TYPEHASH","nameLocation":"1444:15:2","nodeType":"VariableDeclaration","scope":2134,"src":"1420:131:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":426,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1420:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"42616c6c6f742875696e743235362070726f706f73616c49642c75696e743820737570706f72742c6164647265737320766f7465722c75696e74323536206e6f6e636529","id":428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1480:70:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_f2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7","typeString":"literal_string \"Ballot(uint256 proposalId,uint8 support,address voter,uint256 nonce)\""},"value":"Ballot(uint256 proposalId,uint8 support,address voter,uint256 nonce)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_f2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7","typeString":"literal_string \"Ballot(uint256 proposalId,uint8 support,address voter,uint256 nonce)\""}],"id":427,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1470:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1470:81:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"2fe3e261","id":435,"mutability":"constant","name":"EXTENDED_BALLOT_TYPEHASH","nameLocation":"1581:24:2","nodeType":"VariableDeclaration","scope":2134,"src":"1557:197:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":431,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1557:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"457874656e64656442616c6c6f742875696e743235362070726f706f73616c49642c75696e743820737570706f72742c6164647265737320766f7465722c75696e74323536206e6f6e63652c737472696e6720726561736f6e2c627974657320706172616d7329","id":433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1639:105:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a811","typeString":"literal_string \"ExtendedBallot(uint256 proposalId,uint8 support,address voter,uint256 nonce,string reason,bytes params)\""},"value":"ExtendedBallot(uint256 proposalId,uint8 support,address voter,uint256 nonce,string reason,bytes params)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a811","typeString":"literal_string \"ExtendedBallot(uint256 proposalId,uint8 support,address voter,uint256 nonce,string reason,bytes params)\""}],"id":432,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1616:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1616:138:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"canonicalName":"Governor.ProposalCore","id":448,"members":[{"constant":false,"id":437,"mutability":"mutable","name":"proposer","nameLocation":"1799:8:2","nodeType":"VariableDeclaration","scope":448,"src":"1791:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":436,"name":"address","nodeType":"ElementaryTypeName","src":"1791:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":439,"mutability":"mutable","name":"voteStart","nameLocation":"1824:9:2","nodeType":"VariableDeclaration","scope":448,"src":"1817:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":438,"name":"uint48","nodeType":"ElementaryTypeName","src":"1817:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":441,"mutability":"mutable","name":"voteDuration","nameLocation":"1850:12:2","nodeType":"VariableDeclaration","scope":448,"src":"1843:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":440,"name":"uint32","nodeType":"ElementaryTypeName","src":"1843:6:2","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":443,"mutability":"mutable","name":"executed","nameLocation":"1877:8:2","nodeType":"VariableDeclaration","scope":448,"src":"1872:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":442,"name":"bool","nodeType":"ElementaryTypeName","src":"1872:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":445,"mutability":"mutable","name":"canceled","nameLocation":"1900:8:2","nodeType":"VariableDeclaration","scope":448,"src":"1895:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":444,"name":"bool","nodeType":"ElementaryTypeName","src":"1895:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":447,"mutability":"mutable","name":"etaSeconds","nameLocation":"1925:10:2","nodeType":"VariableDeclaration","scope":448,"src":"1918:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":446,"name":"uint48","nodeType":"ElementaryTypeName","src":"1918:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"name":"ProposalCore","nameLocation":"1768:12:2","nodeType":"StructDefinition","scope":2134,"src":"1761:181:2","visibility":"public"},{"constant":true,"id":468,"mutability":"constant","name":"ALL_PROPOSAL_STATES_BITMAP","nameLocation":"1973:26:2","nodeType":"VariableDeclaration","scope":2134,"src":"1948:110:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":449,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1948:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2011:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":461,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"arguments":[{"id":456,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"2028:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}],"id":455,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2023:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2023:19:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_enum$_ProposalState_$2154","typeString":"type(enum IGovernor.ProposalState)"}},"id":458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2043:3:2","memberName":"max","nodeType":"MemberAccess","src":"2023:23:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2017:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":453,"name":"uint8","nodeType":"ElementaryTypeName","src":"2017:5:2","typeDescriptions":{}}},"id":459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2017:30:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2050:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2017:34:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":462,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2016:36:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"2011:41:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":464,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2010:43:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2056:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2010:47:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":451,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2002:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":450,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2002:7:2","typeDescriptions":{}}},"id":467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2002:56:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":470,"mutability":"mutable","name":"_name","nameLocation":"2079:5:2","nodeType":"VariableDeclaration","scope":2134,"src":"2064:20:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":469,"name":"string","nodeType":"ElementaryTypeName","src":"2064:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":475,"mutability":"mutable","name":"_proposals","nameLocation":"2143:10:2","nodeType":"VariableDeclaration","scope":2134,"src":"2091:62:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore)"},"typeName":{"id":474,"keyName":"proposalId","keyNameLocation":"2107:10:2","keyType":{"id":471,"name":"uint256","nodeType":"ElementaryTypeName","src":"2099:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2091:43:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":473,"nodeType":"UserDefinedTypeName","pathNode":{"id":472,"name":"ProposalCore","nameLocations":["2121:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":448,"src":"2121:12:2"},"referencedDeclaration":448,"src":"2121:12:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore"}}},"visibility":"private"},{"constant":false,"id":478,"mutability":"mutable","name":"_governanceCall","nameLocation":"2641:15:2","nodeType":"VariableDeclaration","scope":2134,"src":"2603:53:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":477,"nodeType":"UserDefinedTypeName","pathNode":{"id":476,"name":"DoubleEndedQueue.Bytes32Deque","nameLocations":["2603:16:2","2620:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"2603:29:2"},"referencedDeclaration":14305,"src":"2603:29:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"private"},{"body":{"id":485,"nodeType":"Block","src":"3427:46:2","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":481,"name":"_checkGovernance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":829,"src":"3437:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3437:18:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":483,"nodeType":"ExpressionStatement","src":"3437:18:2"},{"id":484,"nodeType":"PlaceholderStatement","src":"3465:1:2"}]},"documentation":{"id":479,"nodeType":"StructuredDocumentation","src":"2663:733:2","text":" @dev Restricts a function so it can only be executed through governance proposals. For example, governance\n parameter setters in {GovernorSettings} are protected using this modifier.\n The governance executing address may be different from the Governor's own address, for example it could be a\n timelock. This can be customized by modules by overriding {_executor}. The executor is only able to invoke these\n functions during the execution of the governor's {execute} function, and not under any other circumstances. Thus,\n for example, additional timelock proposers are not able to change governance parameters without going through the\n governance protocol (since v4.6)."},"id":486,"name":"onlyGovernance","nameLocation":"3410:14:2","nodeType":"ModifierDefinition","parameters":{"id":480,"nodeType":"ParameterList","parameters":[],"src":"3424:2:2"},"src":"3401:72:2","virtual":false,"visibility":"internal"},{"body":{"id":501,"nodeType":"Block","src":"3605:30:2","statements":[{"expression":{"id":499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":497,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"3615:5:2","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":498,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":489,"src":"3623:5:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3615:13:2","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":500,"nodeType":"ExpressionStatement","src":"3615:13:2"}]},"documentation":{"id":487,"nodeType":"StructuredDocumentation","src":"3479:63:2","text":" @dev Sets the value for {name} and {version}"},"id":502,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":492,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":489,"src":"3587:5:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":493,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":568,"src":"3594:7:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3594:9:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":495,"kind":"baseConstructorSpecifier","modifierName":{"id":491,"name":"EIP712","nameLocations":["3580:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":8976,"src":"3580:6:2"},"nodeType":"ModifierInvocation","src":"3580:24:2"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":489,"mutability":"mutable","name":"name_","nameLocation":"3573:5:2","nodeType":"VariableDeclaration","scope":502,"src":"3559:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":488,"name":"string","nodeType":"ElementaryTypeName","src":"3559:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3558:21:2"},"returnParameters":{"id":496,"nodeType":"ParameterList","parameters":[],"src":"3605:0:2"},"scope":2134,"src":"3547:88:2","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":518,"nodeType":"Block","src":"3814:107:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":506,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"3828:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3828:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":510,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3851:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3843:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":508,"name":"address","nodeType":"ElementaryTypeName","src":"3843:7:2","typeDescriptions":{}}},"id":511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3843:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3828:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":517,"nodeType":"IfStatement","src":"3824:91:2","trueBody":{"id":516,"nodeType":"Block","src":"3858:57:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":513,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"3879:23:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3879:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":515,"nodeType":"RevertStatement","src":"3872:32:2"}]}}]},"documentation":{"id":503,"nodeType":"StructuredDocumentation","src":"3641:133:2","text":" @dev Function to receive ETH that will be handled by the governor (disabled if executor is a third party contract)"},"id":519,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":504,"nodeType":"ParameterList","parameters":[],"src":"3786:2:2"},"returnParameters":{"id":505,"nodeType":"ParameterList","parameters":[],"src":"3814:0:2"},"scope":2134,"src":"3779:142:2","stateMutability":"payable","virtual":true,"visibility":"external"},{"baseFunctions":[9181,9193],"body":{"id":549,"nodeType":"Block","src":"4096:195:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":530,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":522,"src":"4125:11:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":532,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2588,"src":"4145:9:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2588_$","typeString":"type(contract IGovernor)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2588_$","typeString":"type(contract IGovernor)"}],"id":531,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4140:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4140:15:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IGovernor_$2588","typeString":"type(contract IGovernor)"}},"id":534,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4156:11:2","memberName":"interfaceId","nodeType":"MemberAccess","src":"4140:27:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4125:42:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":536,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":522,"src":"4183:11:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":538,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5551,"src":"4203:16:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5551_$","typeString":"type(contract IERC1155Receiver)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5551_$","typeString":"type(contract IERC1155Receiver)"}],"id":537,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4198:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4198:22:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC1155Receiver_$5551","typeString":"type(contract IERC1155Receiver)"}},"id":540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4221:11:2","memberName":"interfaceId","nodeType":"MemberAccess","src":"4198:34:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4183:49:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4125:107:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":545,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":522,"src":"4272:11:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":543,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"4248:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_Governor_$2134_$","typeString":"type(contract super Governor)"}},"id":544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4254:17:2","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":9181,"src":"4248:23:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4248:36:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4125:159:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":529,"id":548,"nodeType":"Return","src":"4106:178:2"}]},"documentation":{"id":520,"nodeType":"StructuredDocumentation","src":"3927:56:2","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":550,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"3997:17:2","nodeType":"FunctionDefinition","overrides":{"id":526,"nodeType":"OverrideSpecifier","overrides":[{"id":524,"name":"IERC165","nameLocations":["4064:7:2"],"nodeType":"IdentifierPath","referencedDeclaration":9194,"src":"4064:7:2"},{"id":525,"name":"ERC165","nameLocations":["4073:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":9182,"src":"4073:6:2"}],"src":"4055:25:2"},"parameters":{"id":523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":522,"mutability":"mutable","name":"interfaceId","nameLocation":"4022:11:2","nodeType":"VariableDeclaration","scope":550,"src":"4015:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":521,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4015:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"4014:20:2"},"returnParameters":{"id":529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":528,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":550,"src":"4090:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":527,"name":"bool","nodeType":"ElementaryTypeName","src":"4090:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4089:6:2"},"scope":2134,"src":"3988:303:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2315],"body":{"id":558,"nodeType":"Block","src":"4407:29:2","statements":[{"expression":{"id":556,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"4424:5:2","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":555,"id":557,"nodeType":"Return","src":"4417:12:2"}]},"documentation":{"id":551,"nodeType":"StructuredDocumentation","src":"4297:45:2","text":" @dev See {IGovernor-name}."},"functionSelector":"06fdde03","id":559,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"4356:4:2","nodeType":"FunctionDefinition","parameters":{"id":552,"nodeType":"ParameterList","parameters":[],"src":"4360:2:2"},"returnParameters":{"id":555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":554,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":559,"src":"4392:13:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":553,"name":"string","nodeType":"ElementaryTypeName","src":"4392:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4391:15:2"},"scope":2134,"src":"4347:89:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2321],"body":{"id":567,"nodeType":"Block","src":"4558:27:2","statements":[{"expression":{"hexValue":"31","id":565,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4575:3:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"},"functionReturnParameters":564,"id":566,"nodeType":"Return","src":"4568:10:2"}]},"documentation":{"id":560,"nodeType":"StructuredDocumentation","src":"4442:48:2","text":" @dev See {IGovernor-version}."},"functionSelector":"54fd4d50","id":568,"implemented":true,"kind":"function","modifiers":[],"name":"version","nameLocation":"4504:7:2","nodeType":"FunctionDefinition","parameters":{"id":561,"nodeType":"ParameterList","parameters":[],"src":"4511:2:2"},"returnParameters":{"id":564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":563,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":568,"src":"4543:13:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":562,"name":"string","nodeType":"ElementaryTypeName","src":"4543:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4542:15:2"},"scope":2134,"src":"4495:90:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2344],"body":{"id":598,"nodeType":"Block","src":"5730:99:2","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":590,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":572,"src":"5776:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":591,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":575,"src":"5785:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":592,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":578,"src":"5793:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":593,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":580,"src":"5804:15:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":588,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5765:3:2","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":589,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5769:6:2","memberName":"encode","nodeType":"MemberAccess","src":"5765:10:2","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5765:55:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":587,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"5755:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5755:66:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":586,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5747:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":585,"name":"uint256","nodeType":"ElementaryTypeName","src":"5747:7:2","typeDescriptions":{}}},"id":596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5747:75:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":584,"id":597,"nodeType":"Return","src":"5740:82:2"}]},"documentation":{"id":569,"nodeType":"StructuredDocumentation","src":"4591:934:2","text":" @dev See {IGovernor-hashProposal}.\n The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array\n and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id\n can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in\n advance, before the proposal is submitted.\n Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the\n same proposal (with same operation and same description) will have the same id if submitted on multiple governors\n across multiple networks. This also means that in order to execute the same operation twice (on the same\n governor) the proposer will have to change the description in order to avoid proposal id conflicts."},"functionSelector":"c59057e4","id":599,"implemented":true,"kind":"function","modifiers":[],"name":"hashProposal","nameLocation":"5539:12:2","nodeType":"FunctionDefinition","parameters":{"id":581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":572,"mutability":"mutable","name":"targets","nameLocation":"5578:7:2","nodeType":"VariableDeclaration","scope":599,"src":"5561:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":570,"name":"address","nodeType":"ElementaryTypeName","src":"5561:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":571,"nodeType":"ArrayTypeName","src":"5561:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":575,"mutability":"mutable","name":"values","nameLocation":"5612:6:2","nodeType":"VariableDeclaration","scope":599,"src":"5595:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":573,"name":"uint256","nodeType":"ElementaryTypeName","src":"5595:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":574,"nodeType":"ArrayTypeName","src":"5595:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":578,"mutability":"mutable","name":"calldatas","nameLocation":"5643:9:2","nodeType":"VariableDeclaration","scope":599,"src":"5628:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":576,"name":"bytes","nodeType":"ElementaryTypeName","src":"5628:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":577,"nodeType":"ArrayTypeName","src":"5628:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":580,"mutability":"mutable","name":"descriptionHash","nameLocation":"5670:15:2","nodeType":"VariableDeclaration","scope":599,"src":"5662:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":579,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5662:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5551:140:2"},"returnParameters":{"id":584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":583,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":599,"src":"5721:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":582,"name":"uint256","nodeType":"ElementaryTypeName","src":"5721:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5720:9:2"},"scope":2134,"src":"5530:299:2","stateMutability":"pure","virtual":true,"visibility":"public"},{"baseFunctions":[2353],"body":{"id":707,"nodeType":"Block","src":"5965:1169:2","statements":[{"assignments":[610],"declarations":[{"constant":false,"id":610,"mutability":"mutable","name":"proposal","nameLocation":"6089:8:2","nodeType":"VariableDeclaration","scope":707,"src":"6068:29:2","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore"},"typeName":{"id":609,"nodeType":"UserDefinedTypeName","pathNode":{"id":608,"name":"ProposalCore","nameLocations":["6068:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":448,"src":"6068:12:2"},"referencedDeclaration":448,"src":"6068:12:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore"}},"visibility":"internal"}],"id":614,"initialValue":{"baseExpression":{"id":611,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"6100:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":613,"indexExpression":{"id":612,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6111:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6100:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"nodeType":"VariableDeclarationStatement","src":"6068:54:2"},{"assignments":[616],"declarations":[{"constant":false,"id":616,"mutability":"mutable","name":"proposalExecuted","nameLocation":"6137:16:2","nodeType":"VariableDeclaration","scope":707,"src":"6132:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":615,"name":"bool","nodeType":"ElementaryTypeName","src":"6132:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":619,"initialValue":{"expression":{"id":617,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":610,"src":"6156:8:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":618,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6165:8:2","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":443,"src":"6156:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"6132:41:2"},{"assignments":[621],"declarations":[{"constant":false,"id":621,"mutability":"mutable","name":"proposalCanceled","nameLocation":"6188:16:2","nodeType":"VariableDeclaration","scope":707,"src":"6183:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":620,"name":"bool","nodeType":"ElementaryTypeName","src":"6183:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":624,"initialValue":{"expression":{"id":622,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":610,"src":"6207:8:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":623,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6216:8:2","memberName":"canceled","nodeType":"MemberAccess","referencedDeclaration":445,"src":"6207:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"6183:41:2"},{"condition":{"id":625,"name":"proposalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":616,"src":"6239:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":630,"nodeType":"IfStatement","src":"6235:76:2","trueBody":{"id":629,"nodeType":"Block","src":"6257:54:2","statements":[{"expression":{"expression":{"id":626,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"6278:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":627,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6292:8:2","memberName":"Executed","nodeType":"MemberAccess","referencedDeclaration":2153,"src":"6278:22:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":628,"nodeType":"Return","src":"6271:29:2"}]}},{"condition":{"id":631,"name":"proposalCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":621,"src":"6325:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":636,"nodeType":"IfStatement","src":"6321:76:2","trueBody":{"id":635,"nodeType":"Block","src":"6343:54:2","statements":[{"expression":{"expression":{"id":632,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"6364:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":633,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6378:8:2","memberName":"Canceled","nodeType":"MemberAccess","referencedDeclaration":2148,"src":"6364:22:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":634,"nodeType":"Return","src":"6357:29:2"}]}},{"assignments":[638],"declarations":[{"constant":false,"id":638,"mutability":"mutable","name":"snapshot","nameLocation":"6415:8:2","nodeType":"VariableDeclaration","scope":707,"src":"6407:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":637,"name":"uint256","nodeType":"ElementaryTypeName","src":"6407:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":642,"initialValue":{"arguments":[{"id":640,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6443:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":639,"name":"proposalSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":731,"src":"6426:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6426:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6407:47:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":643,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":638,"src":"6469:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6481:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6469:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":651,"nodeType":"IfStatement","src":"6465:90:2","trueBody":{"id":650,"nodeType":"Block","src":"6484:71:2","statements":[{"errorCall":{"arguments":[{"id":647,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6533:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":646,"name":"GovernorNonexistentProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2186,"src":"6505:27:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6505:39:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":649,"nodeType":"RevertStatement","src":"6498:46:2"}]}},{"assignments":[653],"declarations":[{"constant":false,"id":653,"mutability":"mutable","name":"currentTimepoint","nameLocation":"6573:16:2","nodeType":"VariableDeclaration","scope":707,"src":"6565:24:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":652,"name":"uint256","nodeType":"ElementaryTypeName","src":"6565:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":656,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":654,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2095,"src":"6592:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6592:7:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"6565:34:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":657,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":638,"src":"6614:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":658,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"6626:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6614:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":664,"nodeType":"IfStatement","src":"6610:87:2","trueBody":{"id":663,"nodeType":"Block","src":"6644:53:2","statements":[{"expression":{"expression":{"id":660,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"6665:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":661,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6679:7:2","memberName":"Pending","nodeType":"MemberAccess","referencedDeclaration":2146,"src":"6665:21:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":662,"nodeType":"Return","src":"6658:28:2"}]}},{"assignments":[666],"declarations":[{"constant":false,"id":666,"mutability":"mutable","name":"deadline","nameLocation":"6715:8:2","nodeType":"VariableDeclaration","scope":707,"src":"6707:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":665,"name":"uint256","nodeType":"ElementaryTypeName","src":"6707:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":670,"initialValue":{"arguments":[{"id":668,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6743:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":667,"name":"proposalDeadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":750,"src":"6726:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6726:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6707:47:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":671,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":666,"src":"6769:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":672,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"6781:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6769:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6861:27:2","subExpression":{"arguments":[{"id":679,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6877:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":678,"name":"_quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":837,"src":"6862:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6862:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6892:27:2","subExpression":{"arguments":[{"id":683,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6908:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":682,"name":"_voteSucceeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":845,"src":"6893:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6893:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6861:58:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":692,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":602,"src":"6997:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":691,"name":"proposalEta","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":778,"src":"6985:11:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":693,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6985:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7012:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6985:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":703,"nodeType":"Block","src":"7076:52:2","statements":[{"expression":{"expression":{"id":700,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"7097:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":701,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7111:6:2","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2151,"src":"7097:20:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":702,"nodeType":"Return","src":"7090:27:2"}]},"id":704,"nodeType":"IfStatement","src":"6981:147:2","trueBody":{"id":699,"nodeType":"Block","src":"7015:55:2","statements":[{"expression":{"expression":{"id":696,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"7036:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":697,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7050:9:2","memberName":"Succeeded","nodeType":"MemberAccess","referencedDeclaration":2150,"src":"7036:23:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":698,"nodeType":"Return","src":"7029:30:2"}]}},"id":705,"nodeType":"IfStatement","src":"6857:271:2","trueBody":{"id":690,"nodeType":"Block","src":"6921:54:2","statements":[{"expression":{"expression":{"id":687,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"6942:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":688,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6956:8:2","memberName":"Defeated","nodeType":"MemberAccess","referencedDeclaration":2149,"src":"6942:22:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":689,"nodeType":"Return","src":"6935:29:2"}]}},"id":706,"nodeType":"IfStatement","src":"6765:363:2","trueBody":{"id":677,"nodeType":"Block","src":"6799:52:2","statements":[{"expression":{"expression":{"id":674,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"6820:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":675,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6834:6:2","memberName":"Active","nodeType":"MemberAccess","referencedDeclaration":2147,"src":"6820:20:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":607,"id":676,"nodeType":"Return","src":"6813:27:2"}]}}]},"documentation":{"id":600,"nodeType":"StructuredDocumentation","src":"5835:46:2","text":" @dev See {IGovernor-state}."},"functionSelector":"3e4f49e6","id":708,"implemented":true,"kind":"function","modifiers":[],"name":"state","nameLocation":"5895:5:2","nodeType":"FunctionDefinition","parameters":{"id":603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":602,"mutability":"mutable","name":"proposalId","nameLocation":"5909:10:2","nodeType":"VariableDeclaration","scope":708,"src":"5901:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":601,"name":"uint256","nodeType":"ElementaryTypeName","src":"5901:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5900:20:2"},"returnParameters":{"id":607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":606,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":708,"src":"5950:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":605,"nodeType":"UserDefinedTypeName","pathNode":{"id":604,"name":"ProposalState","nameLocations":["5950:13:2"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"5950:13:2"},"referencedDeclaration":2154,"src":"5950:13:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"5949:15:2"},"scope":2134,"src":"5886:1248:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2359],"body":{"id":716,"nodeType":"Block","src":"7270:25:2","statements":[{"expression":{"hexValue":"30","id":714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7287:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":713,"id":715,"nodeType":"Return","src":"7280:8:2"}]},"documentation":{"id":709,"nodeType":"StructuredDocumentation","src":"7140:58:2","text":" @dev See {IGovernor-proposalThreshold}."},"functionSelector":"b58131b0","id":717,"implemented":true,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"7212:17:2","nodeType":"FunctionDefinition","parameters":{"id":710,"nodeType":"ParameterList","parameters":[],"src":"7229:2:2"},"returnParameters":{"id":713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":712,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":717,"src":"7261:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":711,"name":"uint256","nodeType":"ElementaryTypeName","src":"7261:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7260:9:2"},"scope":2134,"src":"7203:92:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2367],"body":{"id":730,"nodeType":"Block","src":"7447:56:2","statements":[{"expression":{"expression":{"baseExpression":{"id":725,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"7464:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":727,"indexExpression":{"id":726,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":720,"src":"7475:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7464:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":728,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7487:9:2","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":439,"src":"7464:32:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":724,"id":729,"nodeType":"Return","src":"7457:39:2"}]},"documentation":{"id":718,"nodeType":"StructuredDocumentation","src":"7301:57:2","text":" @dev See {IGovernor-proposalSnapshot}."},"functionSelector":"2d63f693","id":731,"implemented":true,"kind":"function","modifiers":[],"name":"proposalSnapshot","nameLocation":"7372:16:2","nodeType":"FunctionDefinition","parameters":{"id":721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":720,"mutability":"mutable","name":"proposalId","nameLocation":"7397:10:2","nodeType":"VariableDeclaration","scope":731,"src":"7389:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":719,"name":"uint256","nodeType":"ElementaryTypeName","src":"7389:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7388:20:2"},"returnParameters":{"id":724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":723,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":731,"src":"7438:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":722,"name":"uint256","nodeType":"ElementaryTypeName","src":"7438:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7437:9:2"},"scope":2134,"src":"7363:140:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2375],"body":{"id":749,"nodeType":"Block","src":"7655:94:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":739,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"7672:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":741,"indexExpression":{"id":740,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":734,"src":"7683:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7672:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":742,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7695:9:2","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":439,"src":"7672:32:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"baseExpression":{"id":743,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"7707:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":745,"indexExpression":{"id":744,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":734,"src":"7718:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7707:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":746,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7730:12:2","memberName":"voteDuration","nodeType":"MemberAccess","referencedDeclaration":441,"src":"7707:35:2","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"7672:70:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":738,"id":748,"nodeType":"Return","src":"7665:77:2"}]},"documentation":{"id":732,"nodeType":"StructuredDocumentation","src":"7509:57:2","text":" @dev See {IGovernor-proposalDeadline}."},"functionSelector":"c01f9e37","id":750,"implemented":true,"kind":"function","modifiers":[],"name":"proposalDeadline","nameLocation":"7580:16:2","nodeType":"FunctionDefinition","parameters":{"id":735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":734,"mutability":"mutable","name":"proposalId","nameLocation":"7605:10:2","nodeType":"VariableDeclaration","scope":750,"src":"7597:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":733,"name":"uint256","nodeType":"ElementaryTypeName","src":"7597:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7596:20:2"},"returnParameters":{"id":738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":737,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":750,"src":"7646:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":736,"name":"uint256","nodeType":"ElementaryTypeName","src":"7646:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7645:9:2"},"scope":2134,"src":"7571:178:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2383],"body":{"id":763,"nodeType":"Block","src":"7901:55:2","statements":[{"expression":{"expression":{"baseExpression":{"id":758,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"7918:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":760,"indexExpression":{"id":759,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":753,"src":"7929:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7918:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":761,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7941:8:2","memberName":"proposer","nodeType":"MemberAccess","referencedDeclaration":437,"src":"7918:31:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":757,"id":762,"nodeType":"Return","src":"7911:38:2"}]},"documentation":{"id":751,"nodeType":"StructuredDocumentation","src":"7755:57:2","text":" @dev See {IGovernor-proposalProposer}."},"functionSelector":"143489d0","id":764,"implemented":true,"kind":"function","modifiers":[],"name":"proposalProposer","nameLocation":"7826:16:2","nodeType":"FunctionDefinition","parameters":{"id":754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":753,"mutability":"mutable","name":"proposalId","nameLocation":"7851:10:2","nodeType":"VariableDeclaration","scope":764,"src":"7843:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":752,"name":"uint256","nodeType":"ElementaryTypeName","src":"7843:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7842:20:2"},"returnParameters":{"id":757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":756,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":764,"src":"7892:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":755,"name":"address","nodeType":"ElementaryTypeName","src":"7892:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7891:9:2"},"scope":2134,"src":"7817:139:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2391],"body":{"id":777,"nodeType":"Block","src":"8098:57:2","statements":[{"expression":{"expression":{"baseExpression":{"id":772,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"8115:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":774,"indexExpression":{"id":773,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":767,"src":"8126:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8115:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":775,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8138:10:2","memberName":"etaSeconds","nodeType":"MemberAccess","referencedDeclaration":447,"src":"8115:33:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":771,"id":776,"nodeType":"Return","src":"8108:40:2"}]},"documentation":{"id":765,"nodeType":"StructuredDocumentation","src":"7962:52:2","text":" @dev See {IGovernor-proposalEta}."},"functionSelector":"ab58fb8e","id":778,"implemented":true,"kind":"function","modifiers":[],"name":"proposalEta","nameLocation":"8028:11:2","nodeType":"FunctionDefinition","parameters":{"id":768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":767,"mutability":"mutable","name":"proposalId","nameLocation":"8048:10:2","nodeType":"VariableDeclaration","scope":778,"src":"8040:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":766,"name":"uint256","nodeType":"ElementaryTypeName","src":"8040:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8039:20:2"},"returnParameters":{"id":771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":770,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":778,"src":"8089:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":769,"name":"uint256","nodeType":"ElementaryTypeName","src":"8089:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8088:9:2"},"scope":2134,"src":"8019:136:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2399],"body":{"id":788,"nodeType":"Block","src":"8301:29:2","statements":[{"expression":{"hexValue":"66616c7365","id":786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8318:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":785,"id":787,"nodeType":"Return","src":"8311:12:2"}]},"documentation":{"id":779,"nodeType":"StructuredDocumentation","src":"8161:61:2","text":" @dev See {IGovernor-proposalNeedsQueuing}."},"functionSelector":"a9a95294","id":789,"implemented":true,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"8236:20:2","nodeType":"FunctionDefinition","parameters":{"id":782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":781,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":789,"src":"8257:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":780,"name":"uint256","nodeType":"ElementaryTypeName","src":"8257:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8256:9:2"},"returnParameters":{"id":785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":784,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":789,"src":"8295:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":783,"name":"bool","nodeType":"ElementaryTypeName","src":"8295:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8294:6:2"},"scope":2134,"src":"8227:103:2","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":828,"nodeType":"Block","src":"8637:401:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":793,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"8651:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8651:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":795,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"8666:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8666:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8651:27:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":804,"nodeType":"IfStatement","src":"8647:99:2","trueBody":{"id":803,"nodeType":"Block","src":"8680:66:2","statements":[{"errorCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":799,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"8722:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8722:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":798,"name":"GovernorOnlyExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2181,"src":"8701:20:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8701:34:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":802,"nodeType":"RevertStatement","src":"8694:41:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":805,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"8759:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8759:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":809,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8782:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":808,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8774:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":807,"name":"address","nodeType":"ElementaryTypeName","src":"8774:7:2","typeDescriptions":{}}},"id":810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8774:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8759:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":827,"nodeType":"IfStatement","src":"8755:277:2","trueBody":{"id":826,"nodeType":"Block","src":"8789:243:2","statements":[{"assignments":[813],"declarations":[{"constant":false,"id":813,"mutability":"mutable","name":"msgDataHash","nameLocation":"8811:11:2","nodeType":"VariableDeclaration","scope":826,"src":"8803:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":812,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8803:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":818,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":815,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6709,"src":"8835:8:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8835:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":814,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"8825:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8825:21:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"8803:43:2"},{"body":{"id":824,"nodeType":"Block","src":"9020:2:2","statements":[]},"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":819,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"8977:15:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":820,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8993:8:2","memberName":"popFront","nodeType":"MemberAccess","referencedDeclaration":14494,"src":"8977:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_Bytes32Deque_$14305_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) returns (bytes32)"}},"id":821,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8977:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":822,"name":"msgDataHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":813,"src":"9007:11:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"8977:41:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":825,"nodeType":"WhileStatement","src":"8970:52:2"}]}}]},"documentation":{"id":790,"nodeType":"StructuredDocumentation","src":"8336:251:2","text":" @dev Reverts if the `msg.sender` is not the executor. In case the executor is not this contract\n itself, the function reverts if `msg.data` is not whitelisted as a result of an {execute}\n operation. See {onlyGovernance}."},"id":829,"implemented":true,"kind":"function","modifiers":[],"name":"_checkGovernance","nameLocation":"8601:16:2","nodeType":"FunctionDefinition","parameters":{"id":791,"nodeType":"ParameterList","parameters":[],"src":"8617:2:2"},"returnParameters":{"id":792,"nodeType":"ParameterList","parameters":[],"src":"8637:0:2"},"scope":2134,"src":"8592:446:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"documentation":{"id":830,"nodeType":"StructuredDocumentation","src":"9044:80:2","text":" @dev Amount of votes already cast passes the threshold limit."},"id":837,"implemented":false,"kind":"function","modifiers":[],"name":"_quorumReached","nameLocation":"9138:14:2","nodeType":"FunctionDefinition","parameters":{"id":833,"nodeType":"ParameterList","parameters":[{"constant":false,"id":832,"mutability":"mutable","name":"proposalId","nameLocation":"9161:10:2","nodeType":"VariableDeclaration","scope":837,"src":"9153:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":831,"name":"uint256","nodeType":"ElementaryTypeName","src":"9153:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9152:20:2"},"returnParameters":{"id":836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":835,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":837,"src":"9204:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":834,"name":"bool","nodeType":"ElementaryTypeName","src":"9204:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9203:6:2"},"scope":2134,"src":"9129:81:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":838,"nodeType":"StructuredDocumentation","src":"9216:58:2","text":" @dev Is the proposal successful or not."},"id":845,"implemented":false,"kind":"function","modifiers":[],"name":"_voteSucceeded","nameLocation":"9288:14:2","nodeType":"FunctionDefinition","parameters":{"id":841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":840,"mutability":"mutable","name":"proposalId","nameLocation":"9311:10:2","nodeType":"VariableDeclaration","scope":845,"src":"9303:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":839,"name":"uint256","nodeType":"ElementaryTypeName","src":"9303:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9302:20:2"},"returnParameters":{"id":844,"nodeType":"ParameterList","parameters":[{"constant":false,"id":843,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":845,"src":"9354:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":842,"name":"bool","nodeType":"ElementaryTypeName","src":"9354:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9353:6:2"},"scope":2134,"src":"9279:81:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":846,"nodeType":"StructuredDocumentation","src":"9366:122:2","text":" @dev Get the voting weight of `account` at a specific `timepoint`, for a vote as described by `params`."},"id":857,"implemented":false,"kind":"function","modifiers":[],"name":"_getVotes","nameLocation":"9502:9:2","nodeType":"FunctionDefinition","parameters":{"id":853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":848,"mutability":"mutable","name":"account","nameLocation":"9520:7:2","nodeType":"VariableDeclaration","scope":857,"src":"9512:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":847,"name":"address","nodeType":"ElementaryTypeName","src":"9512:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":850,"mutability":"mutable","name":"timepoint","nameLocation":"9537:9:2","nodeType":"VariableDeclaration","scope":857,"src":"9529:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":849,"name":"uint256","nodeType":"ElementaryTypeName","src":"9529:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":852,"mutability":"mutable","name":"params","nameLocation":"9561:6:2","nodeType":"VariableDeclaration","scope":857,"src":"9548:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":851,"name":"bytes","nodeType":"ElementaryTypeName","src":"9548:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9511:57:2"},"returnParameters":{"id":856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":855,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":857,"src":"9600:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":854,"name":"uint256","nodeType":"ElementaryTypeName","src":"9600:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9599:9:2"},"scope":2134,"src":"9493:116:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":858,"nodeType":"StructuredDocumentation","src":"9615:239:2","text":" @dev Register a vote for `proposalId` by `account` with a given `support`, voting `weight` and voting `params`.\n Note: Support is generic and can represent various things depending on the voting system used."},"id":873,"implemented":false,"kind":"function","modifiers":[],"name":"_countVote","nameLocation":"9868:10:2","nodeType":"FunctionDefinition","parameters":{"id":869,"nodeType":"ParameterList","parameters":[{"constant":false,"id":860,"mutability":"mutable","name":"proposalId","nameLocation":"9896:10:2","nodeType":"VariableDeclaration","scope":873,"src":"9888:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":859,"name":"uint256","nodeType":"ElementaryTypeName","src":"9888:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":862,"mutability":"mutable","name":"account","nameLocation":"9924:7:2","nodeType":"VariableDeclaration","scope":873,"src":"9916:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":861,"name":"address","nodeType":"ElementaryTypeName","src":"9916:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":864,"mutability":"mutable","name":"support","nameLocation":"9947:7:2","nodeType":"VariableDeclaration","scope":873,"src":"9941:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":863,"name":"uint8","nodeType":"ElementaryTypeName","src":"9941:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":866,"mutability":"mutable","name":"totalWeight","nameLocation":"9972:11:2","nodeType":"VariableDeclaration","scope":873,"src":"9964:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":865,"name":"uint256","nodeType":"ElementaryTypeName","src":"9964:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":868,"mutability":"mutable","name":"params","nameLocation":"10006:6:2","nodeType":"VariableDeclaration","scope":873,"src":"9993:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":867,"name":"bytes","nodeType":"ElementaryTypeName","src":"9993:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9878:140:2"},"returnParameters":{"id":872,"nodeType":"ParameterList","parameters":[{"constant":false,"id":871,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":873,"src":"10045:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":870,"name":"uint256","nodeType":"ElementaryTypeName","src":"10045:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10044:9:2"},"scope":2134,"src":"9859:195:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":879,"nodeType":"Block","src":"10330:2:2","statements":[]},"documentation":{"id":874,"nodeType":"StructuredDocumentation","src":"10060:205:2","text":" @dev Hook that should be called every time the tally for a proposal is updated.\n Note: This function must run successfully. Reverts will result in the bricking of governance"},"id":880,"implemented":true,"kind":"function","modifiers":[],"name":"_tallyUpdated","nameLocation":"10279:13:2","nodeType":"FunctionDefinition","parameters":{"id":877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":876,"mutability":"mutable","name":"proposalId","nameLocation":"10301:10:2","nodeType":"VariableDeclaration","scope":880,"src":"10293:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":875,"name":"uint256","nodeType":"ElementaryTypeName","src":"10293:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10292:20:2"},"returnParameters":{"id":878,"nodeType":"ParameterList","parameters":[],"src":"10330:0:2"},"scope":2134,"src":"10270:62:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":888,"nodeType":"Block","src":"10705:26:2","statements":[{"expression":{"hexValue":"","id":886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10722:2:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":885,"id":887,"nodeType":"Return","src":"10715:9:2"}]},"documentation":{"id":881,"nodeType":"StructuredDocumentation","src":"10338:291:2","text":" @dev Default additional encoded parameters used by castVote methods that don't include them\n Note: Should be overridden by specific implementations to use an appropriate value, the\n meaning of the additional params, in the context of that implementation"},"id":889,"implemented":true,"kind":"function","modifiers":[],"name":"_defaultParams","nameLocation":"10643:14:2","nodeType":"FunctionDefinition","parameters":{"id":882,"nodeType":"ParameterList","parameters":[],"src":"10657:2:2"},"returnParameters":{"id":885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":884,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":889,"src":"10691:12:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":883,"name":"bytes","nodeType":"ElementaryTypeName","src":"10691:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"10690:14:2"},"scope":2134,"src":"10634:97:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[2468],"body":{"id":961,"nodeType":"Block","src":"11079:671:2","statements":[{"assignments":[907],"declarations":[{"constant":false,"id":907,"mutability":"mutable","name":"proposer","nameLocation":"11097:8:2","nodeType":"VariableDeclaration","scope":961,"src":"11089:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":906,"name":"address","nodeType":"ElementaryTypeName","src":"11089:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":910,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":908,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"11108:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11108:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"11089:31:2"},{"condition":{"id":915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11176:54:2","subExpression":{"arguments":[{"id":912,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":907,"src":"11208:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":913,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":901,"src":"11218:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":911,"name":"_isValidDescriptionForProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2089,"src":"11177:30:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_string_memory_ptr_$returns$_t_bool_$","typeString":"function (address,string memory) view returns (bool)"}},"id":914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11177:53:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":921,"nodeType":"IfStatement","src":"11172:128:2","trueBody":{"id":920,"nodeType":"Block","src":"11232:68:2","statements":[{"errorCall":{"arguments":[{"id":917,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":907,"src":"11280:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":916,"name":"GovernorRestrictedProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2215,"src":"11253:26:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":918,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11253:36:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":919,"nodeType":"RevertStatement","src":"11246:43:2"}]}},{"assignments":[923],"declarations":[{"constant":false,"id":923,"mutability":"mutable","name":"votesThreshold","nameLocation":"11354:14:2","nodeType":"VariableDeclaration","scope":961,"src":"11346:22:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":922,"name":"uint256","nodeType":"ElementaryTypeName","src":"11346:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":926,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":924,"name":"proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":717,"src":"11371:17:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11371:19:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11346:44:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":927,"name":"votesThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":923,"src":"11404:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":928,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11421:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11404:18:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":952,"nodeType":"IfStatement","src":"11400:267:2","trueBody":{"id":951,"nodeType":"Block","src":"11424:243:2","statements":[{"assignments":[931],"declarations":[{"constant":false,"id":931,"mutability":"mutable","name":"proposerVotes","nameLocation":"11446:13:2","nodeType":"VariableDeclaration","scope":951,"src":"11438:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":930,"name":"uint256","nodeType":"ElementaryTypeName","src":"11438:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":939,"initialValue":{"arguments":[{"id":933,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":907,"src":"11471:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":934,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2095,"src":"11481:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11481:7:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11491:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11481:11:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":932,"name":"getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1505,"src":"11462:8:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) view returns (uint256)"}},"id":938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11462:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11438:55:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":940,"name":"proposerVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":931,"src":"11511:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":941,"name":"votesThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":923,"src":"11527:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11511:30:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":950,"nodeType":"IfStatement","src":"11507:150:2","trueBody":{"id":949,"nodeType":"Block","src":"11543:114:2","statements":[{"errorCall":{"arguments":[{"id":944,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":907,"src":"11602:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":945,"name":"proposerVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":931,"src":"11612:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":946,"name":"votesThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":923,"src":"11627:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":943,"name":"GovernorInsufficientProposerVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"11568:33:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11568:74:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":948,"nodeType":"RevertStatement","src":"11561:81:2"}]}}]}},{"expression":{"arguments":[{"id":954,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":893,"src":"11693:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":955,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":896,"src":"11702:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":956,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":899,"src":"11710:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":957,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":901,"src":"11721:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":958,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":907,"src":"11734:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_address","typeString":"address"}],"id":953,"name":"_propose","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1105,"src":"11684:8:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_string_memory_ptr_$_t_address_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,string memory,address) returns (uint256)"}},"id":959,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11684:59:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":905,"id":960,"nodeType":"Return","src":"11677:66:2"}]},"documentation":{"id":890,"nodeType":"StructuredDocumentation","src":"10737:145:2","text":" @dev See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}."},"functionSelector":"7d5e81e2","id":962,"implemented":true,"kind":"function","modifiers":[],"name":"propose","nameLocation":"10896:7:2","nodeType":"FunctionDefinition","parameters":{"id":902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":893,"mutability":"mutable","name":"targets","nameLocation":"10930:7:2","nodeType":"VariableDeclaration","scope":962,"src":"10913:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":891,"name":"address","nodeType":"ElementaryTypeName","src":"10913:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":892,"nodeType":"ArrayTypeName","src":"10913:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":896,"mutability":"mutable","name":"values","nameLocation":"10964:6:2","nodeType":"VariableDeclaration","scope":962,"src":"10947:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":894,"name":"uint256","nodeType":"ElementaryTypeName","src":"10947:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":895,"nodeType":"ArrayTypeName","src":"10947:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":899,"mutability":"mutable","name":"calldatas","nameLocation":"10995:9:2","nodeType":"VariableDeclaration","scope":962,"src":"10980:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":897,"name":"bytes","nodeType":"ElementaryTypeName","src":"10980:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":898,"nodeType":"ArrayTypeName","src":"10980:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":901,"mutability":"mutable","name":"description","nameLocation":"11028:11:2","nodeType":"VariableDeclaration","scope":962,"src":"11014:25:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":900,"name":"string","nodeType":"ElementaryTypeName","src":"11014:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10903:142:2"},"returnParameters":{"id":905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":962,"src":"11070:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":903,"name":"uint256","nodeType":"ElementaryTypeName","src":"11070:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11069:9:2"},"scope":2134,"src":"10887:863:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1104,"nodeType":"Block","src":"12159:1141:2","statements":[{"expression":{"id":993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":981,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12169:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":983,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"12195:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":984,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":969,"src":"12204:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":985,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":972,"src":"12212:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"arguments":[{"arguments":[{"id":989,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"12239:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":988,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12233:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":987,"name":"bytes","nodeType":"ElementaryTypeName","src":"12233:5:2","typeDescriptions":{}}},"id":990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12233:18:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":986,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"12223:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12223:29:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":982,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"12182:12:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) pure returns (uint256)"}},"id":992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12182:71:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12169:84:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":994,"nodeType":"ExpressionStatement","src":"12169:84:2"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":995,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"12268:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12276:6:2","memberName":"length","nodeType":"MemberAccess","src":"12268:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":997,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":969,"src":"12286:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12293:6:2","memberName":"length","nodeType":"MemberAccess","src":"12286:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12268:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1000,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"12303:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12311:6:2","memberName":"length","nodeType":"MemberAccess","src":"12303:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":1002,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":972,"src":"12321:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12331:6:2","memberName":"length","nodeType":"MemberAccess","src":"12321:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12303:34:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12268:69:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1006,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"12341:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12349:6:2","memberName":"length","nodeType":"MemberAccess","src":"12341:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1008,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12359:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12341:19:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12268:92:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1021,"nodeType":"IfStatement","src":"12264:208:2","trueBody":{"id":1020,"nodeType":"Block","src":"12362:110:2","statements":[{"errorCall":{"arguments":[{"expression":{"id":1012,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"12413:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12421:6:2","memberName":"length","nodeType":"MemberAccess","src":"12413:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1014,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":972,"src":"12429:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12439:6:2","memberName":"length","nodeType":"MemberAccess","src":"12429:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1016,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":969,"src":"12447:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12454:6:2","memberName":"length","nodeType":"MemberAccess","src":"12447:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1011,"name":"GovernorInvalidProposalLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2163,"src":"12383:29:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":1018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12383:78:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1019,"nodeType":"RevertStatement","src":"12376:85:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":1027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1022,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"12485:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1024,"indexExpression":{"id":1023,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12496:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12485:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1025,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12508:9:2","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":439,"src":"12485:32:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1026,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12521:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12485:37:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1040,"nodeType":"IfStatement","src":"12481:149:2","trueBody":{"id":1039,"nodeType":"Block","src":"12524:106:2","statements":[{"errorCall":{"arguments":[{"id":1029,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12577:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":1031,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12595:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1030,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"12589:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":1032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12589:17:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},{"arguments":[{"hexValue":"30","id":1035,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12616:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1034,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12608:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1033,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12608:7:2","typeDescriptions":{}}},"id":1036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12608:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1028,"name":"GovernorUnexpectedProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2196,"src":"12545:31:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_enum$_ProposalState_$2154_$_t_bytes32_$returns$__$","typeString":"function (uint256,enum IGovernor.ProposalState,bytes32) pure"}},"id":1037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12545:74:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1038,"nodeType":"RevertStatement","src":"12538:81:2"}]}},{"assignments":[1042],"declarations":[{"constant":false,"id":1042,"mutability":"mutable","name":"snapshot","nameLocation":"12648:8:2","nodeType":"VariableDeclaration","scope":1104,"src":"12640:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1041,"name":"uint256","nodeType":"ElementaryTypeName","src":"12640:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1048,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1043,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2095,"src":"12659:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":1044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12659:7:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1045,"name":"votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2107,"src":"12669:11:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12669:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12659:23:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12640:42:2"},{"assignments":[1050],"declarations":[{"constant":false,"id":1050,"mutability":"mutable","name":"duration","nameLocation":"12700:8:2","nodeType":"VariableDeclaration","scope":1104,"src":"12692:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1049,"name":"uint256","nodeType":"ElementaryTypeName","src":"12692:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1053,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1051,"name":"votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2113,"src":"12711:12:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12711:14:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12692:33:2"},{"assignments":[1056],"declarations":[{"constant":false,"id":1056,"mutability":"mutable","name":"proposal","nameLocation":"12757:8:2","nodeType":"VariableDeclaration","scope":1104,"src":"12736:29:2","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore"},"typeName":{"id":1055,"nodeType":"UserDefinedTypeName","pathNode":{"id":1054,"name":"ProposalCore","nameLocations":["12736:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":448,"src":"12736:12:2"},"referencedDeclaration":448,"src":"12736:12:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore"}},"visibility":"internal"}],"id":1060,"initialValue":{"baseExpression":{"id":1057,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"12768:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1059,"indexExpression":{"id":1058,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12779:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12768:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"nodeType":"VariableDeclarationStatement","src":"12736:54:2"},{"expression":{"id":1065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1061,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1056,"src":"12800:8:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":1063,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12809:8:2","memberName":"proposer","nodeType":"MemberAccess","referencedDeclaration":437,"src":"12800:17:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1064,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"12820:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12800:28:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1066,"nodeType":"ExpressionStatement","src":"12800:28:2"},{"expression":{"id":1074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1067,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1056,"src":"12838:8:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":1069,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12847:9:2","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":439,"src":"12838:18:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1072,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1042,"src":"12877:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1070,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"12859:8:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":1071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12868:8:2","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"12859:17:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":1073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12859:27:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"12838:48:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":1075,"nodeType":"ExpressionStatement","src":"12838:48:2"},{"expression":{"id":1083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1076,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1056,"src":"12896:8:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":1078,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12905:12:2","memberName":"voteDuration","nodeType":"MemberAccess","referencedDeclaration":441,"src":"12896:21:2","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1081,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"12938:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1079,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"12920:8:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":1080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12929:8:2","memberName":"toUint32","nodeType":"MemberAccess","referencedDeclaration":11611,"src":"12920:17:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) pure returns (uint32)"}},"id":1082,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12920:27:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"12896:51:2","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":1084,"nodeType":"ExpressionStatement","src":"12896:51:2"},{"eventCall":{"arguments":[{"id":1086,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"12992:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1087,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"13016:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1088,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"13038:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1089,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":969,"src":"13059:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"arguments":[{"expression":{"id":1093,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":966,"src":"13092:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13100:6:2","memberName":"length","nodeType":"MemberAccess","src":"13092:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"13079:12:2","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (string memory[] memory)"},"typeName":{"baseType":{"id":1090,"name":"string","nodeType":"ElementaryTypeName","src":"13083:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":1091,"nodeType":"ArrayTypeName","src":"13083:8:2","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":1095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13079:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"id":1096,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":972,"src":"13121:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1097,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1042,"src":"13144:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1098,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1042,"src":"13166:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1099,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"13177:8:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13166:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1101,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"13199:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1085,"name":"ProposalCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2264,"src":"12963:15:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_uint256_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint256,address,address[] memory,uint256[] memory,string memory[] memory,bytes memory[] memory,uint256,uint256,string memory)"}},"id":1102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12963:257:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1103,"nodeType":"EmitStatement","src":"12958:262:2"}]},"documentation":{"id":963,"nodeType":"StructuredDocumentation","src":"11756:166:2","text":" @dev Internal propose mechanism. Can be overridden to add more logic on proposal creation.\n Emits a {IGovernor-ProposalCreated} event."},"id":1105,"implemented":true,"kind":"function","modifiers":[],"name":"_propose","nameLocation":"11936:8:2","nodeType":"FunctionDefinition","parameters":{"id":977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":966,"mutability":"mutable","name":"targets","nameLocation":"11971:7:2","nodeType":"VariableDeclaration","scope":1105,"src":"11954:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":964,"name":"address","nodeType":"ElementaryTypeName","src":"11954:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":965,"nodeType":"ArrayTypeName","src":"11954:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":969,"mutability":"mutable","name":"values","nameLocation":"12005:6:2","nodeType":"VariableDeclaration","scope":1105,"src":"11988:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":967,"name":"uint256","nodeType":"ElementaryTypeName","src":"11988:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":968,"nodeType":"ArrayTypeName","src":"11988:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":972,"mutability":"mutable","name":"calldatas","nameLocation":"12036:9:2","nodeType":"VariableDeclaration","scope":1105,"src":"12021:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":970,"name":"bytes","nodeType":"ElementaryTypeName","src":"12021:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":971,"nodeType":"ArrayTypeName","src":"12021:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":974,"mutability":"mutable","name":"description","nameLocation":"12069:11:2","nodeType":"VariableDeclaration","scope":1105,"src":"12055:25:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":973,"name":"string","nodeType":"ElementaryTypeName","src":"12055:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":976,"mutability":"mutable","name":"proposer","nameLocation":"12098:8:2","nodeType":"VariableDeclaration","scope":1105,"src":"12090:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":975,"name":"address","nodeType":"ElementaryTypeName","src":"12090:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11944:168:2"},"returnParameters":{"id":980,"nodeType":"ParameterList","parameters":[{"constant":false,"id":979,"mutability":"mutable","name":"proposalId","nameLocation":"12147:10:2","nodeType":"VariableDeclaration","scope":1105,"src":"12139:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":978,"name":"uint256","nodeType":"ElementaryTypeName","src":"12139:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12138:20:2"},"scope":2134,"src":"11927:1373:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2485],"body":{"id":1172,"nodeType":"Block","src":"13545:541:2","statements":[{"assignments":[1123],"declarations":[{"constant":false,"id":1123,"mutability":"mutable","name":"proposalId","nameLocation":"13563:10:2","nodeType":"VariableDeclaration","scope":1172,"src":"13555:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1122,"name":"uint256","nodeType":"ElementaryTypeName","src":"13555:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1130,"initialValue":{"arguments":[{"id":1125,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1109,"src":"13589:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1126,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1112,"src":"13598:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1127,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1115,"src":"13606:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1128,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1117,"src":"13617:15:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1124,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"13576:12:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) pure returns (uint256)"}},"id":1129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13576:57:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13555:78:2"},{"expression":{"arguments":[{"id":1132,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1123,"src":"13665:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":1134,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"13696:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13710:9:2","memberName":"Succeeded","nodeType":"MemberAccess","referencedDeclaration":2150,"src":"13696:23:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1133,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"13677:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13677:43:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1131,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"13644:20:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13644:77:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"id":1138,"nodeType":"ExpressionStatement","src":"13644:77:2"},{"assignments":[1140],"declarations":[{"constant":false,"id":1140,"mutability":"mutable","name":"etaSeconds","nameLocation":"13739:10:2","nodeType":"VariableDeclaration","scope":1172,"src":"13732:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1139,"name":"uint48","nodeType":"ElementaryTypeName","src":"13732:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":1148,"initialValue":{"arguments":[{"id":1142,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1123,"src":"13769:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1143,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1109,"src":"13781:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1144,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1112,"src":"13790:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1145,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1115,"src":"13798:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1146,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1117,"src":"13809:15:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1141,"name":"_queueOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1195,"src":"13752:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint48_$","typeString":"function (uint256,address[] memory,uint256[] memory,bytes memory[] memory,bytes32) returns (uint48)"}},"id":1147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13752:73:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"13732:93:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":1151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1149,"name":"etaSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1140,"src":"13840:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13854:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13840:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1168,"nodeType":"Block","src":"13991:61:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1165,"name":"GovernorQueueNotImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2224,"src":"14012:27:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":1166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14012:29:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1167,"nodeType":"RevertStatement","src":"14005:36:2"}]},"id":1169,"nodeType":"IfStatement","src":"13836:216:2","trueBody":{"id":1164,"nodeType":"Block","src":"13857:128:2","statements":[{"expression":{"id":1157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1152,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"13871:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1154,"indexExpression":{"id":1153,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1123,"src":"13882:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13871:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13894:10:2","memberName":"etaSeconds","nodeType":"MemberAccess","referencedDeclaration":447,"src":"13871:33:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1156,"name":"etaSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1140,"src":"13907:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"13871:46:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":1158,"nodeType":"ExpressionStatement","src":"13871:46:2"},{"eventCall":{"arguments":[{"id":1160,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1123,"src":"13951:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1161,"name":"etaSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1140,"src":"13963:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":1159,"name":"ProposalQueued","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2271,"src":"13936:14:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":1162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13936:38:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1163,"nodeType":"EmitStatement","src":"13931:43:2"}]}},{"expression":{"id":1170,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1123,"src":"14069:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1121,"id":1171,"nodeType":"Return","src":"14062:17:2"}]},"documentation":{"id":1106,"nodeType":"StructuredDocumentation","src":"13306:46:2","text":" @dev See {IGovernor-queue}."},"functionSelector":"160cbed7","id":1173,"implemented":true,"kind":"function","modifiers":[],"name":"queue","nameLocation":"13366:5:2","nodeType":"FunctionDefinition","parameters":{"id":1118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1109,"mutability":"mutable","name":"targets","nameLocation":"13398:7:2","nodeType":"VariableDeclaration","scope":1173,"src":"13381:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1107,"name":"address","nodeType":"ElementaryTypeName","src":"13381:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1108,"nodeType":"ArrayTypeName","src":"13381:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1112,"mutability":"mutable","name":"values","nameLocation":"13432:6:2","nodeType":"VariableDeclaration","scope":1173,"src":"13415:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1110,"name":"uint256","nodeType":"ElementaryTypeName","src":"13415:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1111,"nodeType":"ArrayTypeName","src":"13415:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1115,"mutability":"mutable","name":"calldatas","nameLocation":"13463:9:2","nodeType":"VariableDeclaration","scope":1173,"src":"13448:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1113,"name":"bytes","nodeType":"ElementaryTypeName","src":"13448:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1114,"nodeType":"ArrayTypeName","src":"13448:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1117,"mutability":"mutable","name":"descriptionHash","nameLocation":"13490:15:2","nodeType":"VariableDeclaration","scope":1173,"src":"13482:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1116,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13482:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13371:140:2"},"returnParameters":{"id":1121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1120,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1173,"src":"13536:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1119,"name":"uint256","nodeType":"ElementaryTypeName","src":"13536:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13535:9:2"},"scope":2134,"src":"13357:729:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1194,"nodeType":"Block","src":"15060:25:2","statements":[{"expression":{"hexValue":"30","id":1192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15077:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1191,"id":1193,"nodeType":"Return","src":"15070:8:2"}]},"documentation":{"id":1174,"nodeType":"StructuredDocumentation","src":"14092:715:2","text":" @dev Internal queuing mechanism. Can be overridden (without a super call) to modify the way queuing is\n performed (for example adding a vault/timelock).\n This is empty by default, and must be overridden to implement queuing.\n This function returns a timestamp that describes the expected ETA for execution. If the returned value is 0\n (which is the default value), the core will consider queueing did not succeed, and the public {queue} function\n will revert.\n NOTE: Calling this function directly will NOT check the current state of the proposal, or emit the\n `ProposalQueued` event. Queuing a proposal should be done using {queue}."},"id":1195,"implemented":true,"kind":"function","modifiers":[],"name":"_queueOperations","nameLocation":"14821:16:2","nodeType":"FunctionDefinition","parameters":{"id":1188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1176,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"14847:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1175,"name":"uint256","nodeType":"ElementaryTypeName","src":"14847:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1179,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"14879:16:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1177,"name":"address","nodeType":"ElementaryTypeName","src":"14879:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1178,"nodeType":"ArrayTypeName","src":"14879:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"14917:16:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1180,"name":"uint256","nodeType":"ElementaryTypeName","src":"14917:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1181,"nodeType":"ArrayTypeName","src":"14917:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1185,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"14954:14:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1183,"name":"bytes","nodeType":"ElementaryTypeName","src":"14954:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1184,"nodeType":"ArrayTypeName","src":"14954:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1187,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"14992:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1186,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14992:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14837:188:2"},"returnParameters":{"id":1191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1190,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"15052:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1189,"name":"uint48","nodeType":"ElementaryTypeName","src":"15052:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"15051:8:2"},"scope":2134,"src":"14812:273:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2502],"body":{"id":1316,"nodeType":"Block","src":"15342:1035:2","statements":[{"assignments":[1213],"declarations":[{"constant":false,"id":1213,"mutability":"mutable","name":"proposalId","nameLocation":"15360:10:2","nodeType":"VariableDeclaration","scope":1316,"src":"15352:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1212,"name":"uint256","nodeType":"ElementaryTypeName","src":"15352:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1220,"initialValue":{"arguments":[{"id":1215,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1199,"src":"15386:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1216,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1202,"src":"15395:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1217,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1205,"src":"15403:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1218,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1207,"src":"15414:15:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1214,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"15373:12:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) pure returns (uint256)"}},"id":1219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15373:57:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15352:78:2"},{"expression":{"arguments":[{"id":1222,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1213,"src":"15475:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1224,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"15518:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1225,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15532:9:2","memberName":"Succeeded","nodeType":"MemberAccess","referencedDeclaration":2150,"src":"15518:23:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1223,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"15499:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1226,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15499:43:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"expression":{"id":1228,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"15564:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1229,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15578:6:2","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2151,"src":"15564:20:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1227,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"15545:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15545:40:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"15499:86:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1221,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"15441:20:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15441:154:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"id":1233,"nodeType":"ExpressionStatement","src":"15441:154:2"},{"expression":{"id":1239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1234,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"15667:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1236,"indexExpression":{"id":1235,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1213,"src":"15678:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15667:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1237,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15690:8:2","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":443,"src":"15667:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15701:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"15667:38:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1240,"nodeType":"ExpressionStatement","src":"15667:38:2"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1241,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"15782:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15782:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1245,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"15805:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15797:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1243,"name":"address","nodeType":"ElementaryTypeName","src":"15797:7:2","typeDescriptions":{}}},"id":1246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15797:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15782:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1282,"nodeType":"IfStatement","src":"15778:258:2","trueBody":{"id":1281,"nodeType":"Block","src":"15812:224:2","statements":[{"body":{"id":1279,"nodeType":"Block","src":"15871:155:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":1259,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1199,"src":"15893:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1261,"indexExpression":{"id":1260,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1249,"src":"15901:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15893:10:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":1264,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"15915:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15907:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1262,"name":"address","nodeType":"ElementaryTypeName","src":"15907:7:2","typeDescriptions":{}}},"id":1265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15907:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15893:27:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1278,"nodeType":"IfStatement","src":"15889:123:2","trueBody":{"id":1277,"nodeType":"Block","src":"15922:90:2","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"id":1271,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1205,"src":"15979:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1273,"indexExpression":{"id":1272,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1249,"src":"15989:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15979:12:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1270,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"15969:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15969:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1267,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"15944:15:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":1269,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15960:8:2","memberName":"pushBack","nodeType":"MemberAccess","referencedDeclaration":14351,"src":"15944:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Bytes32Deque_$14305_storage_ptr_$_t_bytes32_$returns$__$attached_to$_t_struct$_Bytes32Deque_$14305_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer,bytes32)"}},"id":1275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15944:49:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1276,"nodeType":"ExpressionStatement","src":"15944:49:2"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1252,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1249,"src":"15846:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1253,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1199,"src":"15850:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15858:6:2","memberName":"length","nodeType":"MemberAccess","src":"15850:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15846:18:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1280,"initializationExpression":{"assignments":[1249],"declarations":[{"constant":false,"id":1249,"mutability":"mutable","name":"i","nameLocation":"15839:1:2","nodeType":"VariableDeclaration","scope":1280,"src":"15831:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1248,"name":"uint256","nodeType":"ElementaryTypeName","src":"15831:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1251,"initialValue":{"hexValue":"30","id":1250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15843:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"15831:13:2"},"loopExpression":{"expression":{"id":1257,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"15866:3:2","subExpression":{"id":1256,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1249,"src":"15868:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1258,"nodeType":"ExpressionStatement","src":"15866:3:2"},"nodeType":"ForStatement","src":"15826:200:2"}]}},{"expression":{"arguments":[{"id":1284,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1213,"src":"16065:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1285,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1199,"src":"16077:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1286,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1202,"src":"16086:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1287,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1205,"src":"16094:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1288,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1207,"src":"16105:15:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1283,"name":"_executeOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1372,"src":"16046:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$__$","typeString":"function (uint256,address[] memory,uint256[] memory,bytes memory[] memory,bytes32)"}},"id":1289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16046:75:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1290,"nodeType":"ExpressionStatement","src":"16046:75:2"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1291,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"16193:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1292,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16193:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1295,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"16216:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1294,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16208:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1293,"name":"address","nodeType":"ElementaryTypeName","src":"16208:7:2","typeDescriptions":{}}},"id":1296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16208:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16193:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":1301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16225:24:2","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1298,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"16226:15:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":1299,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16242:5:2","memberName":"empty","nodeType":"MemberAccess","referencedDeclaration":14644,"src":"16226:21:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$_t_bool_$attached_to$_t_struct$_Bytes32Deque_$14305_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (bool)"}},"id":1300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16226:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16193:56:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1309,"nodeType":"IfStatement","src":"16189:110:2","trueBody":{"id":1308,"nodeType":"Block","src":"16251:48:2","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1303,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"16265:15:2","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":1305,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16281:5:2","memberName":"clear","nodeType":"MemberAccess","referencedDeclaration":14608,"src":"16265:21:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$__$attached_to$_t_struct$_Bytes32Deque_$14305_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer)"}},"id":1306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16265:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1307,"nodeType":"ExpressionStatement","src":"16265:23:2"}]}},{"eventCall":{"arguments":[{"id":1311,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1213,"src":"16331:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1310,"name":"ProposalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2276,"src":"16314:16:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":1312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16314:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1313,"nodeType":"EmitStatement","src":"16309:33:2"},{"expression":{"id":1314,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1213,"src":"16360:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1211,"id":1315,"nodeType":"Return","src":"16353:17:2"}]},"documentation":{"id":1196,"nodeType":"StructuredDocumentation","src":"15091:48:2","text":" @dev See {IGovernor-execute}."},"functionSelector":"2656227d","id":1317,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"15153:7:2","nodeType":"FunctionDefinition","parameters":{"id":1208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1199,"mutability":"mutable","name":"targets","nameLocation":"15187:7:2","nodeType":"VariableDeclaration","scope":1317,"src":"15170:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1197,"name":"address","nodeType":"ElementaryTypeName","src":"15170:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1198,"nodeType":"ArrayTypeName","src":"15170:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1202,"mutability":"mutable","name":"values","nameLocation":"15221:6:2","nodeType":"VariableDeclaration","scope":1317,"src":"15204:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1200,"name":"uint256","nodeType":"ElementaryTypeName","src":"15204:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1201,"nodeType":"ArrayTypeName","src":"15204:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1205,"mutability":"mutable","name":"calldatas","nameLocation":"15252:9:2","nodeType":"VariableDeclaration","scope":1317,"src":"15237:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1203,"name":"bytes","nodeType":"ElementaryTypeName","src":"15237:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1204,"nodeType":"ArrayTypeName","src":"15237:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1207,"mutability":"mutable","name":"descriptionHash","nameLocation":"15279:15:2","nodeType":"VariableDeclaration","scope":1317,"src":"15271:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1206,"name":"bytes32","nodeType":"ElementaryTypeName","src":"15271:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"15160:140:2"},"returnParameters":{"id":1211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1210,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1317,"src":"15333:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1209,"name":"uint256","nodeType":"ElementaryTypeName","src":"15333:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15332:9:2"},"scope":2134,"src":"15144:1233:2","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":1371,"nodeType":"Block","src":"17035:234:2","statements":[{"body":{"id":1369,"nodeType":"Block","src":"17090:173:2","statements":[{"assignments":[1346,1348],"declarations":[{"constant":false,"id":1346,"mutability":"mutable","name":"success","nameLocation":"17110:7:2","nodeType":"VariableDeclaration","scope":1369,"src":"17105:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1345,"name":"bool","nodeType":"ElementaryTypeName","src":"17105:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1348,"mutability":"mutable","name":"returndata","nameLocation":"17132:10:2","nodeType":"VariableDeclaration","scope":1369,"src":"17119:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1347,"name":"bytes","nodeType":"ElementaryTypeName","src":"17119:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1361,"initialValue":{"arguments":[{"baseExpression":{"id":1357,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1329,"src":"17180:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1359,"indexExpression":{"id":1358,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"17190:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17180:12:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"baseExpression":{"id":1349,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1323,"src":"17146:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1351,"indexExpression":{"id":1350,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"17154:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17146:10:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17157:4:2","memberName":"call","nodeType":"MemberAccess","src":"17146:15:2","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"baseExpression":{"id":1353,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"17169:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1355,"indexExpression":{"id":1354,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"17176:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17169:9:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"17146:33:2","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17146:47:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"17104:89:2"},{"expression":{"arguments":[{"id":1365,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1346,"src":"17232:7:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1366,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1348,"src":"17241:10:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1362,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"17207:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$6688_$","typeString":"type(library Address)"}},"id":1364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17215:16:2","memberName":"verifyCallResult","nodeType":"MemberAccess","referencedDeclaration":6667,"src":"17207:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (bool,bytes memory) pure returns (bytes memory)"}},"id":1367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17207:45:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1368,"nodeType":"ExpressionStatement","src":"17207:45:2"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1338,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"17065:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1339,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1323,"src":"17069:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17077:6:2","memberName":"length","nodeType":"MemberAccess","src":"17069:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17065:18:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1370,"initializationExpression":{"assignments":[1335],"declarations":[{"constant":false,"id":1335,"mutability":"mutable","name":"i","nameLocation":"17058:1:2","nodeType":"VariableDeclaration","scope":1370,"src":"17050:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1334,"name":"uint256","nodeType":"ElementaryTypeName","src":"17050:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1337,"initialValue":{"hexValue":"30","id":1336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17062:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17050:13:2"},"loopExpression":{"expression":{"id":1343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"17085:3:2","subExpression":{"id":1342,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"17087:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1344,"nodeType":"ExpressionStatement","src":"17085:3:2"},"nodeType":"ForStatement","src":"17045:218:2"}]},"documentation":{"id":1318,"nodeType":"StructuredDocumentation","src":"16383:424:2","text":" @dev Internal execution mechanism. Can be overridden (without a super call) to modify the way execution is\n performed (for example adding a vault/timelock).\n NOTE: Calling this function directly will NOT check the current state of the proposal, set the executed flag to\n true or emit the `ProposalExecuted` event. Executing a proposal should be done using {execute} or {_execute}."},"id":1372,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperations","nameLocation":"16821:18:2","nodeType":"FunctionDefinition","parameters":{"id":1332,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1320,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1372,"src":"16849:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1319,"name":"uint256","nodeType":"ElementaryTypeName","src":"16849:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1323,"mutability":"mutable","name":"targets","nameLocation":"16900:7:2","nodeType":"VariableDeclaration","scope":1372,"src":"16883:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1321,"name":"address","nodeType":"ElementaryTypeName","src":"16883:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1322,"nodeType":"ArrayTypeName","src":"16883:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1326,"mutability":"mutable","name":"values","nameLocation":"16934:6:2","nodeType":"VariableDeclaration","scope":1372,"src":"16917:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1324,"name":"uint256","nodeType":"ElementaryTypeName","src":"16917:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1325,"nodeType":"ArrayTypeName","src":"16917:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1329,"mutability":"mutable","name":"calldatas","nameLocation":"16965:9:2","nodeType":"VariableDeclaration","scope":1372,"src":"16950:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1327,"name":"bytes","nodeType":"ElementaryTypeName","src":"16950:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1328,"nodeType":"ArrayTypeName","src":"16950:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1331,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1372,"src":"16984:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1330,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16984:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16839:178:2"},"returnParameters":{"id":1333,"nodeType":"ParameterList","parameters":[],"src":"17035:0:2"},"scope":2134,"src":"16812:457:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2519],"body":{"id":1426,"nodeType":"Block","src":"17516:788:2","statements":[{"assignments":[1390],"declarations":[{"constant":false,"id":1390,"mutability":"mutable","name":"proposalId","nameLocation":"17865:10:2","nodeType":"VariableDeclaration","scope":1426,"src":"17857:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1389,"name":"uint256","nodeType":"ElementaryTypeName","src":"17857:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1397,"initialValue":{"arguments":[{"id":1392,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1376,"src":"17891:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1393,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1379,"src":"17900:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1394,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1382,"src":"17908:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1395,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1384,"src":"17919:15:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1391,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"17878:12:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) pure returns (uint256)"}},"id":1396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17878:57:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17857:78:2"},{"expression":{"arguments":[{"id":1399,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1390,"src":"18048:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":1401,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"18079:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1402,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18093:7:2","memberName":"Pending","nodeType":"MemberAccess","referencedDeclaration":2146,"src":"18079:21:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1400,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"18060:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18060:41:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1398,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"18027:20:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18027:75:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"id":1405,"nodeType":"ExpressionStatement","src":"18027:75:2"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1406,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"18116:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18116:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1409,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1390,"src":"18149:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1408,"name":"proposalProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":764,"src":"18132:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":1410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18132:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"18116:44:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1418,"nodeType":"IfStatement","src":"18112:116:2","trueBody":{"id":1417,"nodeType":"Block","src":"18162:66:2","statements":[{"errorCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":1413,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"18204:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18204:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1412,"name":"GovernorOnlyProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2176,"src":"18183:20:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18183:34:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1416,"nodeType":"RevertStatement","src":"18176:41:2"}]}},{"expression":{"arguments":[{"id":1420,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1376,"src":"18253:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1421,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1379,"src":"18262:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1422,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1382,"src":"18270:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1423,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1384,"src":"18281:15:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1419,"name":"_cancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1487,"src":"18245:7:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) returns (uint256)"}},"id":1424,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18245:52:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1388,"id":1425,"nodeType":"Return","src":"18238:59:2"}]},"documentation":{"id":1373,"nodeType":"StructuredDocumentation","src":"17275:47:2","text":" @dev See {IGovernor-cancel}."},"functionSelector":"452115d6","id":1427,"implemented":true,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"17336:6:2","nodeType":"FunctionDefinition","parameters":{"id":1385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1376,"mutability":"mutable","name":"targets","nameLocation":"17369:7:2","nodeType":"VariableDeclaration","scope":1427,"src":"17352:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1374,"name":"address","nodeType":"ElementaryTypeName","src":"17352:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1375,"nodeType":"ArrayTypeName","src":"17352:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1379,"mutability":"mutable","name":"values","nameLocation":"17403:6:2","nodeType":"VariableDeclaration","scope":1427,"src":"17386:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1377,"name":"uint256","nodeType":"ElementaryTypeName","src":"17386:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1378,"nodeType":"ArrayTypeName","src":"17386:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1382,"mutability":"mutable","name":"calldatas","nameLocation":"17434:9:2","nodeType":"VariableDeclaration","scope":1427,"src":"17419:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1380,"name":"bytes","nodeType":"ElementaryTypeName","src":"17419:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1381,"nodeType":"ArrayTypeName","src":"17419:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1384,"mutability":"mutable","name":"descriptionHash","nameLocation":"17461:15:2","nodeType":"VariableDeclaration","scope":1427,"src":"17453:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1383,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17453:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17342:140:2"},"returnParameters":{"id":1388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1387,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1427,"src":"17507:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1386,"name":"uint256","nodeType":"ElementaryTypeName","src":"17507:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17506:9:2"},"scope":2134,"src":"17327:977:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1486,"nodeType":"Block","src":"18781:502:2","statements":[{"assignments":[1445],"declarations":[{"constant":false,"id":1445,"mutability":"mutable","name":"proposalId","nameLocation":"18799:10:2","nodeType":"VariableDeclaration","scope":1486,"src":"18791:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1444,"name":"uint256","nodeType":"ElementaryTypeName","src":"18791:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1452,"initialValue":{"arguments":[{"id":1447,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1431,"src":"18825:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1448,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1434,"src":"18834:6:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1449,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1437,"src":"18842:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1450,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1439,"src":"18853:15:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1446,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"18812:12:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) pure returns (uint256)"}},"id":1451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18812:57:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18791:78:2"},{"expression":{"arguments":[{"id":1454,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"18914:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1455,"name":"ALL_PROPOSAL_STATES_BITMAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":468,"src":"18938:26:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"arguments":[{"expression":{"id":1457,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"19002:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19016:8:2","memberName":"Canceled","nodeType":"MemberAccess","referencedDeclaration":2148,"src":"19002:22:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1456,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"18983:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18983:42:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"18938:87:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"arguments":[{"expression":{"id":1462,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"19063:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19077:7:2","memberName":"Expired","nodeType":"MemberAccess","referencedDeclaration":2152,"src":"19063:21:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1461,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"19044:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19044:41:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"18938:147:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"arguments":[{"expression":{"id":1467,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"19123:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19137:8:2","memberName":"Executed","nodeType":"MemberAccess","referencedDeclaration":2153,"src":"19123:22:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1466,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"19104:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19104:42:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"18938:208:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1453,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"18880:20:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18880:276:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"id":1472,"nodeType":"ExpressionStatement","src":"18880:276:2"},{"expression":{"id":1478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1473,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"19167:10:2","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$448_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1475,"indexExpression":{"id":1474,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"19178:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19167:22:2","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$448_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1476,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"19190:8:2","memberName":"canceled","nodeType":"MemberAccess","referencedDeclaration":445,"src":"19167:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1477,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19201:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"19167:38:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1479,"nodeType":"ExpressionStatement","src":"19167:38:2"},{"eventCall":{"arguments":[{"id":1481,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"19237:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1480,"name":"ProposalCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"19220:16:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":1482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19220:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1483,"nodeType":"EmitStatement","src":"19215:33:2"},{"expression":{"id":1484,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"19266:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1443,"id":1485,"nodeType":"Return","src":"19259:17:2"}]},"documentation":{"id":1428,"nodeType":"StructuredDocumentation","src":"18310:274:2","text":" @dev Internal cancel mechanism with minimal restrictions. A proposal can be cancelled in any state other than\n Canceled, Expired, or Executed. Once cancelled a proposal can't be re-submitted.\n Emits a {IGovernor-ProposalCanceled} event."},"id":1487,"implemented":true,"kind":"function","modifiers":[],"name":"_cancel","nameLocation":"18598:7:2","nodeType":"FunctionDefinition","parameters":{"id":1440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1431,"mutability":"mutable","name":"targets","nameLocation":"18632:7:2","nodeType":"VariableDeclaration","scope":1487,"src":"18615:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1429,"name":"address","nodeType":"ElementaryTypeName","src":"18615:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1430,"nodeType":"ArrayTypeName","src":"18615:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1434,"mutability":"mutable","name":"values","nameLocation":"18666:6:2","nodeType":"VariableDeclaration","scope":1487,"src":"18649:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1432,"name":"uint256","nodeType":"ElementaryTypeName","src":"18649:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1433,"nodeType":"ArrayTypeName","src":"18649:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1437,"mutability":"mutable","name":"calldatas","nameLocation":"18697:9:2","nodeType":"VariableDeclaration","scope":1487,"src":"18682:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1435,"name":"bytes","nodeType":"ElementaryTypeName","src":"18682:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1436,"nodeType":"ArrayTypeName","src":"18682:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1439,"mutability":"mutable","name":"descriptionHash","nameLocation":"18724:15:2","nodeType":"VariableDeclaration","scope":1487,"src":"18716:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1438,"name":"bytes32","nodeType":"ElementaryTypeName","src":"18716:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"18605:140:2"},"returnParameters":{"id":1443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1442,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1487,"src":"18772:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1441,"name":"uint256","nodeType":"ElementaryTypeName","src":"18772:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18771:9:2"},"scope":2134,"src":"18589:694:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2429],"body":{"id":1504,"nodeType":"Block","src":"19435:71:2","statements":[{"expression":{"arguments":[{"id":1498,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1490,"src":"19462:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1499,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"19471:9:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":1500,"name":"_defaultParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":889,"src":"19482:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_memory_ptr_$","typeString":"function () view returns (bytes memory)"}},"id":1501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19482:16:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1497,"name":"_getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":857,"src":"19452:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (address,uint256,bytes memory) view returns (uint256)"}},"id":1502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19452:47:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1496,"id":1503,"nodeType":"Return","src":"19445:54:2"}]},"documentation":{"id":1488,"nodeType":"StructuredDocumentation","src":"19289:49:2","text":" @dev See {IGovernor-getVotes}."},"functionSelector":"eb9019d4","id":1505,"implemented":true,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"19352:8:2","nodeType":"FunctionDefinition","parameters":{"id":1493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1490,"mutability":"mutable","name":"account","nameLocation":"19369:7:2","nodeType":"VariableDeclaration","scope":1505,"src":"19361:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1489,"name":"address","nodeType":"ElementaryTypeName","src":"19361:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1492,"mutability":"mutable","name":"timepoint","nameLocation":"19386:9:2","nodeType":"VariableDeclaration","scope":1505,"src":"19378:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1491,"name":"uint256","nodeType":"ElementaryTypeName","src":"19378:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19360:36:2"},"returnParameters":{"id":1496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1495,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1505,"src":"19426:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1494,"name":"uint256","nodeType":"ElementaryTypeName","src":"19426:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19425:9:2"},"scope":2134,"src":"19343:163:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2441],"body":{"id":1523,"nodeType":"Block","src":"19729:61:2","statements":[{"expression":{"arguments":[{"id":1518,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1508,"src":"19756:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1519,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"19765:9:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1520,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"19776:6:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1517,"name":"_getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":857,"src":"19746:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (address,uint256,bytes memory) view returns (uint256)"}},"id":1521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19746:37:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1516,"id":1522,"nodeType":"Return","src":"19739:44:2"}]},"documentation":{"id":1506,"nodeType":"StructuredDocumentation","src":"19512:59:2","text":" @dev See {IGovernor-getVotesWithParams}."},"functionSelector":"9a802a6d","id":1524,"implemented":true,"kind":"function","modifiers":[],"name":"getVotesWithParams","nameLocation":"19585:18:2","nodeType":"FunctionDefinition","parameters":{"id":1513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1508,"mutability":"mutable","name":"account","nameLocation":"19621:7:2","nodeType":"VariableDeclaration","scope":1524,"src":"19613:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1507,"name":"address","nodeType":"ElementaryTypeName","src":"19613:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1510,"mutability":"mutable","name":"timepoint","nameLocation":"19646:9:2","nodeType":"VariableDeclaration","scope":1524,"src":"19638:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1509,"name":"uint256","nodeType":"ElementaryTypeName","src":"19638:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1512,"mutability":"mutable","name":"params","nameLocation":"19678:6:2","nodeType":"VariableDeclaration","scope":1524,"src":"19665:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1511,"name":"bytes","nodeType":"ElementaryTypeName","src":"19665:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19603:87:2"},"returnParameters":{"id":1516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1515,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1524,"src":"19720:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1514,"name":"uint256","nodeType":"ElementaryTypeName","src":"19720:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19719:9:2"},"scope":2134,"src":"19576:214:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2529],"body":{"id":1546,"nodeType":"Block","src":"19936:103:2","statements":[{"assignments":[1535],"declarations":[{"constant":false,"id":1535,"mutability":"mutable","name":"voter","nameLocation":"19954:5:2","nodeType":"VariableDeclaration","scope":1546,"src":"19946:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1534,"name":"address","nodeType":"ElementaryTypeName","src":"19946:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1538,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1536,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"19962:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1537,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19962:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"19946:28:2"},{"expression":{"arguments":[{"id":1540,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1527,"src":"20001:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1541,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1535,"src":"20013:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1542,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1529,"src":"20020:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"hexValue":"","id":1543,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20029:2:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":1539,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1742,"src":"19991:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory) returns (uint256)"}},"id":1544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19991:41:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1533,"id":1545,"nodeType":"Return","src":"19984:48:2"}]},"documentation":{"id":1525,"nodeType":"StructuredDocumentation","src":"19796:49:2","text":" @dev See {IGovernor-castVote}."},"functionSelector":"56781388","id":1547,"implemented":true,"kind":"function","modifiers":[],"name":"castVote","nameLocation":"19859:8:2","nodeType":"FunctionDefinition","parameters":{"id":1530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1527,"mutability":"mutable","name":"proposalId","nameLocation":"19876:10:2","nodeType":"VariableDeclaration","scope":1547,"src":"19868:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1526,"name":"uint256","nodeType":"ElementaryTypeName","src":"19868:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1529,"mutability":"mutable","name":"support","nameLocation":"19894:7:2","nodeType":"VariableDeclaration","scope":1547,"src":"19888:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1528,"name":"uint8","nodeType":"ElementaryTypeName","src":"19888:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19867:35:2"},"returnParameters":{"id":1533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1532,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1547,"src":"19927:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1531,"name":"uint256","nodeType":"ElementaryTypeName","src":"19927:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19926:9:2"},"scope":2134,"src":"19850:189:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2541],"body":{"id":1571,"nodeType":"Block","src":"20259:107:2","statements":[{"assignments":[1560],"declarations":[{"constant":false,"id":1560,"mutability":"mutable","name":"voter","nameLocation":"20277:5:2","nodeType":"VariableDeclaration","scope":1571,"src":"20269:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1559,"name":"address","nodeType":"ElementaryTypeName","src":"20269:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1563,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1561,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"20285:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20285:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"20269:28:2"},{"expression":{"arguments":[{"id":1565,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1550,"src":"20324:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1566,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1560,"src":"20336:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1567,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1552,"src":"20343:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1568,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1554,"src":"20352:6:2","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1564,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1742,"src":"20314:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory) returns (uint256)"}},"id":1569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20314:45:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1558,"id":1570,"nodeType":"Return","src":"20307:52:2"}]},"documentation":{"id":1548,"nodeType":"StructuredDocumentation","src":"20045:59:2","text":" @dev See {IGovernor-castVoteWithReason}."},"functionSelector":"7b3c71d3","id":1572,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteWithReason","nameLocation":"20118:18:2","nodeType":"FunctionDefinition","parameters":{"id":1555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1550,"mutability":"mutable","name":"proposalId","nameLocation":"20154:10:2","nodeType":"VariableDeclaration","scope":1572,"src":"20146:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1549,"name":"uint256","nodeType":"ElementaryTypeName","src":"20146:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1552,"mutability":"mutable","name":"support","nameLocation":"20180:7:2","nodeType":"VariableDeclaration","scope":1572,"src":"20174:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1551,"name":"uint8","nodeType":"ElementaryTypeName","src":"20174:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1554,"mutability":"mutable","name":"reason","nameLocation":"20213:6:2","nodeType":"VariableDeclaration","scope":1572,"src":"20197:22:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1553,"name":"string","nodeType":"ElementaryTypeName","src":"20197:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"20136:89:2"},"returnParameters":{"id":1558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1557,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1572,"src":"20250:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1556,"name":"uint256","nodeType":"ElementaryTypeName","src":"20250:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20249:9:2"},"scope":2134,"src":"20109:257:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2555],"body":{"id":1599,"nodeType":"Block","src":"20633:115:2","statements":[{"assignments":[1587],"declarations":[{"constant":false,"id":1587,"mutability":"mutable","name":"voter","nameLocation":"20651:5:2","nodeType":"VariableDeclaration","scope":1599,"src":"20643:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1586,"name":"address","nodeType":"ElementaryTypeName","src":"20643:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1590,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1588,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"20659:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20659:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"20643:28:2"},{"expression":{"arguments":[{"id":1592,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1575,"src":"20698:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1593,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1587,"src":"20710:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1594,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"20717:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1595,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1579,"src":"20726:6:2","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":1596,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1581,"src":"20734:6:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1591,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1817,"src":"20688:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory,bytes memory) returns (uint256)"}},"id":1597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20688:53:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1585,"id":1598,"nodeType":"Return","src":"20681:60:2"}]},"documentation":{"id":1573,"nodeType":"StructuredDocumentation","src":"20372:68:2","text":" @dev See {IGovernor-castVoteWithReasonAndParams}."},"functionSelector":"5f398a14","id":1600,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParams","nameLocation":"20454:27:2","nodeType":"FunctionDefinition","parameters":{"id":1582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1575,"mutability":"mutable","name":"proposalId","nameLocation":"20499:10:2","nodeType":"VariableDeclaration","scope":1600,"src":"20491:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1574,"name":"uint256","nodeType":"ElementaryTypeName","src":"20491:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1577,"mutability":"mutable","name":"support","nameLocation":"20525:7:2","nodeType":"VariableDeclaration","scope":1600,"src":"20519:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1576,"name":"uint8","nodeType":"ElementaryTypeName","src":"20519:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1579,"mutability":"mutable","name":"reason","nameLocation":"20558:6:2","nodeType":"VariableDeclaration","scope":1600,"src":"20542:22:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1578,"name":"string","nodeType":"ElementaryTypeName","src":"20542:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1581,"mutability":"mutable","name":"params","nameLocation":"20587:6:2","nodeType":"VariableDeclaration","scope":1600,"src":"20574:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1580,"name":"bytes","nodeType":"ElementaryTypeName","src":"20574:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20481:118:2"},"returnParameters":{"id":1585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1584,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1600,"src":"20624:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1583,"name":"uint256","nodeType":"ElementaryTypeName","src":"20624:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20623:9:2"},"scope":2134,"src":"20445:303:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2569],"body":{"id":1651,"nodeType":"Block","src":"20981:378:2","statements":[{"assignments":[1615],"declarations":[{"constant":false,"id":1615,"mutability":"mutable","name":"valid","nameLocation":"20996:5:2","nodeType":"VariableDeclaration","scope":1651,"src":"20991:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1614,"name":"bool","nodeType":"ElementaryTypeName","src":"20991:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1635,"initialValue":{"arguments":[{"id":1618,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1607,"src":"21054:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"arguments":[{"id":1623,"name":"BALLOT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"21111:15:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1624,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1603,"src":"21128:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1625,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1605,"src":"21140:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1626,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1607,"src":"21149:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1628,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1607,"src":"21166:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1627,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6782,"src":"21156:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":1629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21156:16:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1621,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"21100:3:2","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1622,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21104:6:2","memberName":"encode","nodeType":"MemberAccess","src":"21100:10:2","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21100:73:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1620,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"21090:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21090:84:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1619,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8909,"src":"21073:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1632,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21073:102:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1633,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1609,"src":"21189:9:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1616,"name":"SignatureChecker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9158,"src":"21004:16:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignatureChecker_$9158_$","typeString":"type(library SignatureChecker)"}},"id":1617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21021:19:2","memberName":"isValidSignatureNow","nodeType":"MemberAccess","referencedDeclaration":9105,"src":"21004:36:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,bytes32,bytes memory) view returns (bool)"}},"id":1634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21004:204:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"20991:217:2"},{"condition":{"id":1637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"21223:6:2","subExpression":{"id":1636,"name":"valid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1615,"src":"21224:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1643,"nodeType":"IfStatement","src":"21219:75:2","trueBody":{"id":1642,"nodeType":"Block","src":"21231:63:2","statements":[{"errorCall":{"arguments":[{"id":1639,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1607,"src":"21277:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1638,"name":"GovernorInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2239,"src":"21252:24:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21252:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1641,"nodeType":"RevertStatement","src":"21245:38:2"}]}},{"expression":{"arguments":[{"id":1645,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1603,"src":"21321:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1646,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1607,"src":"21333:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1647,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1605,"src":"21340:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"hexValue":"","id":1648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21349:2:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":1644,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1742,"src":"21311:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory) returns (uint256)"}},"id":1649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21311:41:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1613,"id":1650,"nodeType":"Return","src":"21304:48:2"}]},"documentation":{"id":1601,"nodeType":"StructuredDocumentation","src":"20754:54:2","text":" @dev See {IGovernor-castVoteBySig}."},"functionSelector":"8ff262e3","id":1652,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteBySig","nameLocation":"20822:13:2","nodeType":"FunctionDefinition","parameters":{"id":1610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1603,"mutability":"mutable","name":"proposalId","nameLocation":"20853:10:2","nodeType":"VariableDeclaration","scope":1652,"src":"20845:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1602,"name":"uint256","nodeType":"ElementaryTypeName","src":"20845:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1605,"mutability":"mutable","name":"support","nameLocation":"20879:7:2","nodeType":"VariableDeclaration","scope":1652,"src":"20873:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1604,"name":"uint8","nodeType":"ElementaryTypeName","src":"20873:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1607,"mutability":"mutable","name":"voter","nameLocation":"20904:5:2","nodeType":"VariableDeclaration","scope":1652,"src":"20896:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1606,"name":"address","nodeType":"ElementaryTypeName","src":"20896:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1609,"mutability":"mutable","name":"signature","nameLocation":"20932:9:2","nodeType":"VariableDeclaration","scope":1652,"src":"20919:22:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1608,"name":"bytes","nodeType":"ElementaryTypeName","src":"20919:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20835:112:2"},"returnParameters":{"id":1613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1612,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1652,"src":"20972:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1611,"name":"uint256","nodeType":"ElementaryTypeName","src":"20972:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20971:9:2"},"scope":2134,"src":"20813:546:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2587],"body":{"id":1717,"nodeType":"Block","src":"21691:702:2","statements":[{"assignments":[1671],"declarations":[{"constant":false,"id":1671,"mutability":"mutable","name":"valid","nameLocation":"21706:5:2","nodeType":"VariableDeclaration","scope":1717,"src":"21701:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1670,"name":"bool","nodeType":"ElementaryTypeName","src":"21701:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1700,"initialValue":{"arguments":[{"id":1674,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"21764:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"arguments":[{"id":1679,"name":"EXTENDED_BALLOT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":435,"src":"21884:24:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1680,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1655,"src":"21934:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1681,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1657,"src":"21970:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1682,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"22003:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1684,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"22044:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1683,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6782,"src":"22034:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":1685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22034:16:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":1689,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1661,"src":"22092:6:2","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1688,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22086:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1687,"name":"bytes","nodeType":"ElementaryTypeName","src":"22086:5:2","typeDescriptions":{}}},"id":1690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22086:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":1686,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"22076:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22076:24:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"id":1693,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1663,"src":"22136:6:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1692,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"22126:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22126:17:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1677,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"21848:3:2","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1678,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21852:6:2","memberName":"encode","nodeType":"MemberAccess","src":"21848:10:2","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1695,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21848:317:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1676,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"21817:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21817:366:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1675,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8909,"src":"21783:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21783:414:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1698,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1665,"src":"22211:9:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1672,"name":"SignatureChecker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9158,"src":"21714:16:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignatureChecker_$9158_$","typeString":"type(library SignatureChecker)"}},"id":1673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21731:19:2","memberName":"isValidSignatureNow","nodeType":"MemberAccess","referencedDeclaration":9105,"src":"21714:36:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,bytes32,bytes memory) view returns (bool)"}},"id":1699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21714:516:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"21701:529:2"},{"condition":{"id":1702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"22245:6:2","subExpression":{"id":1701,"name":"valid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1671,"src":"22246:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1708,"nodeType":"IfStatement","src":"22241:75:2","trueBody":{"id":1707,"nodeType":"Block","src":"22253:63:2","statements":[{"errorCall":{"arguments":[{"id":1704,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"22299:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1703,"name":"GovernorInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2239,"src":"22274:24:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22274:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1706,"nodeType":"RevertStatement","src":"22267:38:2"}]}},{"expression":{"arguments":[{"id":1710,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1655,"src":"22343:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1711,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"22355:5:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1712,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1657,"src":"22362:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1713,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1661,"src":"22371:6:2","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":1714,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1663,"src":"22379:6:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1709,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1817,"src":"22333:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory,bytes memory) returns (uint256)"}},"id":1715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22333:53:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1669,"id":1716,"nodeType":"Return","src":"22326:60:2"}]},"documentation":{"id":1653,"nodeType":"StructuredDocumentation","src":"21365:73:2","text":" @dev See {IGovernor-castVoteWithReasonAndParamsBySig}."},"functionSelector":"5b8d0e0d","id":1718,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParamsBySig","nameLocation":"21452:32:2","nodeType":"FunctionDefinition","parameters":{"id":1666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1655,"mutability":"mutable","name":"proposalId","nameLocation":"21502:10:2","nodeType":"VariableDeclaration","scope":1718,"src":"21494:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1654,"name":"uint256","nodeType":"ElementaryTypeName","src":"21494:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1657,"mutability":"mutable","name":"support","nameLocation":"21528:7:2","nodeType":"VariableDeclaration","scope":1718,"src":"21522:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1656,"name":"uint8","nodeType":"ElementaryTypeName","src":"21522:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1659,"mutability":"mutable","name":"voter","nameLocation":"21553:5:2","nodeType":"VariableDeclaration","scope":1718,"src":"21545:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1658,"name":"address","nodeType":"ElementaryTypeName","src":"21545:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1661,"mutability":"mutable","name":"reason","nameLocation":"21584:6:2","nodeType":"VariableDeclaration","scope":1718,"src":"21568:22:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1660,"name":"string","nodeType":"ElementaryTypeName","src":"21568:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1663,"mutability":"mutable","name":"params","nameLocation":"21613:6:2","nodeType":"VariableDeclaration","scope":1718,"src":"21600:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1662,"name":"bytes","nodeType":"ElementaryTypeName","src":"21600:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1665,"mutability":"mutable","name":"signature","nameLocation":"21642:9:2","nodeType":"VariableDeclaration","scope":1718,"src":"21629:22:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1664,"name":"bytes","nodeType":"ElementaryTypeName","src":"21629:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"21484:173:2"},"returnParameters":{"id":1669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1668,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1718,"src":"21682:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1667,"name":"uint256","nodeType":"ElementaryTypeName","src":"21682:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21681:9:2"},"scope":2134,"src":"21443:950:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1741,"nodeType":"Block","src":"22868:89:2","statements":[{"expression":{"arguments":[{"id":1733,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1721,"src":"22895:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1734,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1723,"src":"22907:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1735,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1725,"src":"22916:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1736,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1727,"src":"22925:6:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":1737,"name":"_defaultParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":889,"src":"22933:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_memory_ptr_$","typeString":"function () view returns (bytes memory)"}},"id":1738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22933:16:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1732,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1742,1817],"referencedDeclaration":1817,"src":"22885:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory,bytes memory) returns (uint256)"}},"id":1739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22885:65:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1731,"id":1740,"nodeType":"Return","src":"22878:72:2"}]},"documentation":{"id":1719,"nodeType":"StructuredDocumentation","src":"22399:298:2","text":" @dev Internal vote casting mechanism: Check that the vote is pending, that it has not been cast yet, retrieve\n voting weight using {IGovernor-getVotes} and call the {_countVote} internal function. Uses the _defaultParams().\n Emits a {IGovernor-VoteCast} event."},"id":1742,"implemented":true,"kind":"function","modifiers":[],"name":"_castVote","nameLocation":"22711:9:2","nodeType":"FunctionDefinition","parameters":{"id":1728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1721,"mutability":"mutable","name":"proposalId","nameLocation":"22738:10:2","nodeType":"VariableDeclaration","scope":1742,"src":"22730:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1720,"name":"uint256","nodeType":"ElementaryTypeName","src":"22730:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1723,"mutability":"mutable","name":"account","nameLocation":"22766:7:2","nodeType":"VariableDeclaration","scope":1742,"src":"22758:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1722,"name":"address","nodeType":"ElementaryTypeName","src":"22758:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1725,"mutability":"mutable","name":"support","nameLocation":"22789:7:2","nodeType":"VariableDeclaration","scope":1742,"src":"22783:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1724,"name":"uint8","nodeType":"ElementaryTypeName","src":"22783:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1727,"mutability":"mutable","name":"reason","nameLocation":"22820:6:2","nodeType":"VariableDeclaration","scope":1742,"src":"22806:20:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1726,"name":"string","nodeType":"ElementaryTypeName","src":"22806:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"22720:112:2"},"returnParameters":{"id":1731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1730,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1742,"src":"22859:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1729,"name":"uint256","nodeType":"ElementaryTypeName","src":"22859:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22858:9:2"},"scope":2134,"src":"22702:255:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1816,"nodeType":"Block","src":"23434:574:2","statements":[{"expression":{"arguments":[{"id":1759,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23465:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":1761,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"23496:13:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1762,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23510:6:2","memberName":"Active","nodeType":"MemberAccess","referencedDeclaration":2147,"src":"23496:20:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1760,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"23477:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23477:40:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1758,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"23444:20:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23444:74:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"id":1765,"nodeType":"ExpressionStatement","src":"23444:74:2"},{"assignments":[1767],"declarations":[{"constant":false,"id":1767,"mutability":"mutable","name":"totalWeight","nameLocation":"23537:11:2","nodeType":"VariableDeclaration","scope":1816,"src":"23529:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1766,"name":"uint256","nodeType":"ElementaryTypeName","src":"23529:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1775,"initialValue":{"arguments":[{"id":1769,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"23561:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1771,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23587:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1770,"name":"proposalSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":731,"src":"23570:16:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":1772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23570:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1773,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1753,"src":"23600:6:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1768,"name":"_getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":857,"src":"23551:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (address,uint256,bytes memory) view returns (uint256)"}},"id":1774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23551:56:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23529:78:2"},{"assignments":[1777],"declarations":[{"constant":false,"id":1777,"mutability":"mutable","name":"votedWeight","nameLocation":"23625:11:2","nodeType":"VariableDeclaration","scope":1816,"src":"23617:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1776,"name":"uint256","nodeType":"ElementaryTypeName","src":"23617:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1785,"initialValue":{"arguments":[{"id":1779,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23650:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1780,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"23662:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1781,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1749,"src":"23671:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1782,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"23680:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1783,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1753,"src":"23693:6:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1778,"name":"_countVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":873,"src":"23639:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,uint256,bytes memory) returns (uint256)"}},"id":1784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23639:61:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23617:83:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1786,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1753,"src":"23715:6:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23722:6:2","memberName":"length","nodeType":"MemberAccess","src":"23715:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23732:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23715:18:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1808,"nodeType":"Block","src":"23830:107:2","statements":[{"eventCall":{"arguments":[{"id":1800,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"23868:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1801,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23877:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1802,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1749,"src":"23889:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1803,"name":"votedWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1777,"src":"23898:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1804,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1751,"src":"23911:6:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":1805,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1753,"src":"23919:6:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1799,"name":"VoteCastWithParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2309,"src":"23849:18:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint8_$_t_uint256_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,uint8,uint256,string memory,bytes memory)"}},"id":1806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23849:77:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1807,"nodeType":"EmitStatement","src":"23844:82:2"}]},"id":1809,"nodeType":"IfStatement","src":"23711:226:2","trueBody":{"id":1798,"nodeType":"Block","src":"23735:89:2","statements":[{"eventCall":{"arguments":[{"id":1791,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"23763:7:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1792,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23772:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1793,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1749,"src":"23784:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1794,"name":"votedWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1777,"src":"23793:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1795,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1751,"src":"23806:6:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1790,"name":"VoteCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2294,"src":"23754:8:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint8_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,uint256,uint8,uint256,string memory)"}},"id":1796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23754:59:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1797,"nodeType":"EmitStatement","src":"23749:64:2"}]}},{"expression":{"arguments":[{"id":1811,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"23961:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1810,"name":"_tallyUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":880,"src":"23947:13:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":1812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23947:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1813,"nodeType":"ExpressionStatement","src":"23947:25:2"},{"expression":{"id":1814,"name":"votedWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1777,"src":"23990:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1757,"id":1815,"nodeType":"Return","src":"23983:18:2"}]},"documentation":{"id":1743,"nodeType":"StructuredDocumentation","src":"22963:271:2","text":" @dev Internal vote casting mechanism: Check that the vote is pending, that it has not been cast yet, retrieve\n voting weight using {IGovernor-getVotes} and call the {_countVote} internal function.\n Emits a {IGovernor-VoteCast} event."},"id":1817,"implemented":true,"kind":"function","modifiers":[],"name":"_castVote","nameLocation":"23248:9:2","nodeType":"FunctionDefinition","parameters":{"id":1754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1745,"mutability":"mutable","name":"proposalId","nameLocation":"23275:10:2","nodeType":"VariableDeclaration","scope":1817,"src":"23267:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1744,"name":"uint256","nodeType":"ElementaryTypeName","src":"23267:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1747,"mutability":"mutable","name":"account","nameLocation":"23303:7:2","nodeType":"VariableDeclaration","scope":1817,"src":"23295:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1746,"name":"address","nodeType":"ElementaryTypeName","src":"23295:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1749,"mutability":"mutable","name":"support","nameLocation":"23326:7:2","nodeType":"VariableDeclaration","scope":1817,"src":"23320:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1748,"name":"uint8","nodeType":"ElementaryTypeName","src":"23320:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1751,"mutability":"mutable","name":"reason","nameLocation":"23357:6:2","nodeType":"VariableDeclaration","scope":1817,"src":"23343:20:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1750,"name":"string","nodeType":"ElementaryTypeName","src":"23343:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1753,"mutability":"mutable","name":"params","nameLocation":"23386:6:2","nodeType":"VariableDeclaration","scope":1817,"src":"23373:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1752,"name":"bytes","nodeType":"ElementaryTypeName","src":"23373:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"23257:141:2"},"returnParameters":{"id":1757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1756,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1817,"src":"23425:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1755,"name":"uint256","nodeType":"ElementaryTypeName","src":"23425:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23424:9:2"},"scope":2134,"src":"23239:769:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1847,"nodeType":"Block","src":"24566:145:2","statements":[{"assignments":[1830,1832],"declarations":[{"constant":false,"id":1830,"mutability":"mutable","name":"success","nameLocation":"24582:7:2","nodeType":"VariableDeclaration","scope":1847,"src":"24577:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1829,"name":"bool","nodeType":"ElementaryTypeName","src":"24577:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1832,"mutability":"mutable","name":"returndata","nameLocation":"24604:10:2","nodeType":"VariableDeclaration","scope":1847,"src":"24591:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1831,"name":"bytes","nodeType":"ElementaryTypeName","src":"24591:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1839,"initialValue":{"arguments":[{"id":1837,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1824,"src":"24644:4:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":1833,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"24618:6:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24625:4:2","memberName":"call","nodeType":"MemberAccess","src":"24618:11:2","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":1835,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1822,"src":"24637:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"24618:25:2","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24618:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"24576:73:2"},{"expression":{"arguments":[{"id":1843,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1830,"src":"24684:7:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1844,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1832,"src":"24693:10:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1840,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"24659:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$6688_$","typeString":"type(library Address)"}},"id":1842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24667:16:2","memberName":"verifyCallResult","nodeType":"MemberAccess","referencedDeclaration":6667,"src":"24659:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (bool,bytes memory) pure returns (bytes memory)"}},"id":1845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24659:45:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1846,"nodeType":"ExpressionStatement","src":"24659:45:2"}]},"documentation":{"id":1818,"nodeType":"StructuredDocumentation","src":"24014:440:2","text":" @dev Relays a transaction or function call to an arbitrary target. In cases where the governance executor\n is some contract other than the governor itself, like when using a timelock, this function can be invoked\n in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake.\n Note that if the executor is simply the governor itself, use of `relay` is redundant."},"functionSelector":"c28bc2fa","id":1848,"implemented":true,"kind":"function","modifiers":[{"id":1827,"kind":"modifierInvocation","modifierName":{"id":1826,"name":"onlyGovernance","nameLocations":["24551:14:2"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"24551:14:2"},"nodeType":"ModifierInvocation","src":"24551:14:2"}],"name":"relay","nameLocation":"24468:5:2","nodeType":"FunctionDefinition","parameters":{"id":1825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1820,"mutability":"mutable","name":"target","nameLocation":"24482:6:2","nodeType":"VariableDeclaration","scope":1848,"src":"24474:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1819,"name":"address","nodeType":"ElementaryTypeName","src":"24474:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1822,"mutability":"mutable","name":"value","nameLocation":"24498:5:2","nodeType":"VariableDeclaration","scope":1848,"src":"24490:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1821,"name":"uint256","nodeType":"ElementaryTypeName","src":"24490:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1824,"mutability":"mutable","name":"data","nameLocation":"24520:4:2","nodeType":"VariableDeclaration","scope":1848,"src":"24505:19:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1823,"name":"bytes","nodeType":"ElementaryTypeName","src":"24505:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"24473:52:2"},"returnParameters":{"id":1828,"nodeType":"ParameterList","parameters":[],"src":"24566:0:2"},"scope":2134,"src":"24459:252:2","stateMutability":"payable","virtual":true,"visibility":"external"},{"body":{"id":1859,"nodeType":"Block","src":"24960:37:2","statements":[{"expression":{"arguments":[{"id":1856,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24985:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1855,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24977:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1854,"name":"address","nodeType":"ElementaryTypeName","src":"24977:7:2","typeDescriptions":{}}},"id":1857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24977:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1853,"id":1858,"nodeType":"Return","src":"24970:20:2"}]},"documentation":{"id":1849,"nodeType":"StructuredDocumentation","src":"24717:177:2","text":" @dev Address through which the governor executes action. Will be overloaded by module that execute actions\n through another contract such as a timelock."},"id":1860,"implemented":true,"kind":"function","modifiers":[],"name":"_executor","nameLocation":"24908:9:2","nodeType":"FunctionDefinition","parameters":{"id":1850,"nodeType":"ParameterList","parameters":[],"src":"24917:2:2"},"returnParameters":{"id":1853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1852,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1860,"src":"24951:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1851,"name":"address","nodeType":"ElementaryTypeName","src":"24951:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"24950:9:2"},"scope":2134,"src":"24899:98:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[6400],"body":{"id":1890,"nodeType":"Block","src":"25301:154:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1874,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"25315:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25315:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1878,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25338:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1877,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25330:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1876,"name":"address","nodeType":"ElementaryTypeName","src":"25330:7:2","typeDescriptions":{}}},"id":1879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25330:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25315:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1885,"nodeType":"IfStatement","src":"25311:91:2","trueBody":{"id":1884,"nodeType":"Block","src":"25345:57:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1881,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"25366:23:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":1882,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25366:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1883,"nodeType":"RevertStatement","src":"25359:32:2"}]}},{"expression":{"expression":{"expression":{"id":1886,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25418:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}},"id":1887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25423:16:2","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":1891,"src":"25418:21:2","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,bytes memory) external returns (bytes4)"}},"id":1888,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25440:8:2","memberName":"selector","nodeType":"MemberAccess","src":"25418:30:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":1873,"id":1889,"nodeType":"Return","src":"25411:37:2"}]},"documentation":{"id":1861,"nodeType":"StructuredDocumentation","src":"25003:194:2","text":" @dev See {IERC721Receiver-onERC721Received}.\n Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock)."},"functionSelector":"150b7a02","id":1891,"implemented":true,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"25211:16:2","nodeType":"FunctionDefinition","parameters":{"id":1870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1863,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1891,"src":"25228:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1862,"name":"address","nodeType":"ElementaryTypeName","src":"25228:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1865,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1891,"src":"25237:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1864,"name":"address","nodeType":"ElementaryTypeName","src":"25237:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1867,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1891,"src":"25246:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1866,"name":"uint256","nodeType":"ElementaryTypeName","src":"25246:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1869,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1891,"src":"25255:12:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1868,"name":"bytes","nodeType":"ElementaryTypeName","src":"25255:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25227:41:2"},"returnParameters":{"id":1873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1872,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1891,"src":"25293:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1871,"name":"bytes4","nodeType":"ElementaryTypeName","src":"25293:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"25292:8:2"},"scope":2134,"src":"25202:253:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5532],"body":{"id":1923,"nodeType":"Block","src":"25771:155:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1907,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"25785:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25785:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1911,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25808:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25800:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1909,"name":"address","nodeType":"ElementaryTypeName","src":"25800:7:2","typeDescriptions":{}}},"id":1912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25800:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25785:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1918,"nodeType":"IfStatement","src":"25781:91:2","trueBody":{"id":1917,"nodeType":"Block","src":"25815:57:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1914,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"25836:23:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":1915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25836:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1916,"nodeType":"RevertStatement","src":"25829:32:2"}]}},{"expression":{"expression":{"expression":{"id":1919,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25888:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}},"id":1920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25893:17:2","memberName":"onERC1155Received","nodeType":"MemberAccess","referencedDeclaration":1924,"src":"25888:22:2","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256,bytes memory) external returns (bytes4)"}},"id":1921,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25911:8:2","memberName":"selector","nodeType":"MemberAccess","src":"25888:31:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":1906,"id":1922,"nodeType":"Return","src":"25881:38:2"}]},"documentation":{"id":1892,"nodeType":"StructuredDocumentation","src":"25461:196:2","text":" @dev See {IERC1155Receiver-onERC1155Received}.\n Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock)."},"functionSelector":"f23a6e61","id":1924,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155Received","nameLocation":"25671:17:2","nodeType":"FunctionDefinition","parameters":{"id":1903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1894,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25689:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1893,"name":"address","nodeType":"ElementaryTypeName","src":"25689:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1896,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25698:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1895,"name":"address","nodeType":"ElementaryTypeName","src":"25698:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1898,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25707:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1897,"name":"uint256","nodeType":"ElementaryTypeName","src":"25707:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1900,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25716:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1899,"name":"uint256","nodeType":"ElementaryTypeName","src":"25716:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1902,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25725:12:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1901,"name":"bytes","nodeType":"ElementaryTypeName","src":"25725:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25688:50:2"},"returnParameters":{"id":1906,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1905,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1924,"src":"25763:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1904,"name":"bytes4","nodeType":"ElementaryTypeName","src":"25763:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"25762:8:2"},"scope":2134,"src":"25662:264:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5550],"body":{"id":1958,"nodeType":"Block","src":"26316:160:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1942,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"26330:9:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26330:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1946,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26353:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}],"id":1945,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26345:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1944,"name":"address","nodeType":"ElementaryTypeName","src":"26345:7:2","typeDescriptions":{}}},"id":1947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26345:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"26330:28:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1953,"nodeType":"IfStatement","src":"26326:91:2","trueBody":{"id":1952,"nodeType":"Block","src":"26360:57:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1949,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"26381:23:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":1950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26381:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1951,"nodeType":"RevertStatement","src":"26374:32:2"}]}},{"expression":{"expression":{"expression":{"id":1954,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26433:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2134","typeString":"contract Governor"}},"id":1955,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26438:22:2","memberName":"onERC1155BatchReceived","nodeType":"MemberAccess","referencedDeclaration":1959,"src":"26433:27:2","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256[] memory,uint256[] memory,bytes memory) external returns (bytes4)"}},"id":1956,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26461:8:2","memberName":"selector","nodeType":"MemberAccess","src":"26433:36:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":1941,"id":1957,"nodeType":"Return","src":"26426:43:2"}]},"documentation":{"id":1925,"nodeType":"StructuredDocumentation","src":"25932:201:2","text":" @dev See {IERC1155Receiver-onERC1155BatchReceived}.\n Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock)."},"functionSelector":"bc197c81","id":1959,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155BatchReceived","nameLocation":"26147:22:2","nodeType":"FunctionDefinition","parameters":{"id":1938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1927,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26179:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1926,"name":"address","nodeType":"ElementaryTypeName","src":"26179:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1929,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26196:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1928,"name":"address","nodeType":"ElementaryTypeName","src":"26196:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1932,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26213:16:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1930,"name":"uint256","nodeType":"ElementaryTypeName","src":"26213:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1931,"nodeType":"ArrayTypeName","src":"26213:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1935,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26239:16:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1933,"name":"uint256","nodeType":"ElementaryTypeName","src":"26239:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1934,"nodeType":"ArrayTypeName","src":"26239:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1937,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26265:12:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1936,"name":"bytes","nodeType":"ElementaryTypeName","src":"26265:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"26169:114:2"},"returnParameters":{"id":1941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1940,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1959,"src":"26308:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1939,"name":"bytes4","nodeType":"ElementaryTypeName","src":"26308:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"26307:8:2"},"scope":2134,"src":"26138:338:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1978,"nodeType":"Block","src":"26975:58:2","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":1970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27000:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":1973,"name":"proposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1963,"src":"27011:13:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1972,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27005:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":1971,"name":"uint8","nodeType":"ElementaryTypeName","src":"27005:5:2","typeDescriptions":{}}},"id":1974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27005:20:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"27000:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26992:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1968,"name":"bytes32","nodeType":"ElementaryTypeName","src":"26992:7:2","typeDescriptions":{}}},"id":1976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26992:34:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":1967,"id":1977,"nodeType":"Return","src":"26985:41:2"}]},"documentation":{"id":1960,"nodeType":"StructuredDocumentation","src":"26482:399:2","text":" @dev Encodes a `ProposalState` into a `bytes32` representation where each bit enabled corresponds to\n the underlying position in the `ProposalState` enum. For example:\n 0x000...10000\n ^^^^^^------ ...\n ^----- Succeeded\n ^---- Defeated\n ^--- Canceled\n ^-- Active\n ^- Pending"},"id":1979,"implemented":true,"kind":"function","modifiers":[],"name":"_encodeStateBitmap","nameLocation":"26895:18:2","nodeType":"FunctionDefinition","parameters":{"id":1964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1963,"mutability":"mutable","name":"proposalState","nameLocation":"26928:13:2","nodeType":"VariableDeclaration","scope":1979,"src":"26914:27:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":1962,"nodeType":"UserDefinedTypeName","pathNode":{"id":1961,"name":"ProposalState","nameLocations":["26914:13:2"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"26914:13:2"},"referencedDeclaration":2154,"src":"26914:13:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"26913:29:2"},"returnParameters":{"id":1967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1966,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1979,"src":"26966:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1965,"name":"bytes32","nodeType":"ElementaryTypeName","src":"26966:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"26965:9:2"},"scope":2134,"src":"26886:147:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2017,"nodeType":"Block","src":"27449:273:2","statements":[{"assignments":[1992],"declarations":[{"constant":false,"id":1992,"mutability":"mutable","name":"currentState","nameLocation":"27473:12:2","nodeType":"VariableDeclaration","scope":2017,"src":"27459:26:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":1991,"nodeType":"UserDefinedTypeName","pathNode":{"id":1990,"name":"ProposalState","nameLocations":["27459:13:2"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"27459:13:2"},"referencedDeclaration":2154,"src":"27459:13:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"id":1996,"initialValue":{"arguments":[{"id":1994,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1982,"src":"27494:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1993,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"27488:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":1995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27488:17:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"nodeType":"VariableDeclarationStatement","src":"27459:46:2"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":1998,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1992,"src":"27538:12:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}],"id":1997,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"27519:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2154_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27519:32:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":2000,"name":"allowedStates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1984,"src":"27554:13:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"27519:48:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27579:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2003,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27571:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":2002,"name":"bytes32","nodeType":"ElementaryTypeName","src":"27571:7:2","typeDescriptions":{}}},"id":2005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27571:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"27519:62:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2014,"nodeType":"IfStatement","src":"27515:172:2","trueBody":{"id":2013,"nodeType":"Block","src":"27583:104:2","statements":[{"errorCall":{"arguments":[{"id":2008,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1982,"src":"27636:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2009,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1992,"src":"27648:12:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},{"id":2010,"name":"allowedStates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1984,"src":"27662:13:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2007,"name":"GovernorUnexpectedProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2196,"src":"27604:31:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_enum$_ProposalState_$2154_$_t_bytes32_$returns$__$","typeString":"function (uint256,enum IGovernor.ProposalState,bytes32) pure"}},"id":2011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27604:72:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2012,"nodeType":"RevertStatement","src":"27597:79:2"}]}},{"expression":{"id":2015,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1992,"src":"27703:12:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":1989,"id":2016,"nodeType":"Return","src":"27696:19:2"}]},"documentation":{"id":1980,"nodeType":"StructuredDocumentation","src":"27039:294:2","text":" @dev Check that the current state of a proposal matches the requirements described by the `allowedStates` bitmap.\n This bitmap should be built using `_encodeStateBitmap`.\n If requirements are not met, reverts with a {GovernorUnexpectedProposalState} error."},"id":2018,"implemented":true,"kind":"function","modifiers":[],"name":"_validateStateBitmap","nameLocation":"27347:20:2","nodeType":"FunctionDefinition","parameters":{"id":1985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1982,"mutability":"mutable","name":"proposalId","nameLocation":"27376:10:2","nodeType":"VariableDeclaration","scope":2018,"src":"27368:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1981,"name":"uint256","nodeType":"ElementaryTypeName","src":"27368:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1984,"mutability":"mutable","name":"allowedStates","nameLocation":"27396:13:2","nodeType":"VariableDeclaration","scope":2018,"src":"27388:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1983,"name":"bytes32","nodeType":"ElementaryTypeName","src":"27388:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"27367:43:2"},"returnParameters":{"id":1989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1988,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2018,"src":"27434:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":1987,"nodeType":"UserDefinedTypeName","pathNode":{"id":1986,"name":"ProposalState","nameLocations":["27434:13:2"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"27434:13:2"},"referencedDeclaration":2154,"src":"27434:13:2","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"27433:15:2"},"scope":2134,"src":"27338:384:2","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2088,"nodeType":"Block","src":"28992:855:2","statements":[{"id":2087,"nodeType":"UncheckedBlock","src":"29002:839:2","statements":[{"assignments":[2028],"declarations":[{"constant":false,"id":2028,"mutability":"mutable","name":"length","nameLocation":"29034:6:2","nodeType":"VariableDeclaration","scope":2087,"src":"29026:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2027,"name":"uint256","nodeType":"ElementaryTypeName","src":"29026:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2034,"initialValue":{"expression":{"arguments":[{"id":2031,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2022,"src":"29049:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2030,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29043:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2029,"name":"bytes","nodeType":"ElementaryTypeName","src":"29043:5:2","typeDescriptions":{}}},"id":2032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29043:18:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29062:6:2","memberName":"length","nodeType":"MemberAccess","src":"29043:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29026:42:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2035,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2028,"src":"29157:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3532","id":2036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29166:2:2","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"src":"29157:11:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2041,"nodeType":"IfStatement","src":"29153:61:2","trueBody":{"id":2040,"nodeType":"Block","src":"29170:44:2","statements":[{"expression":{"hexValue":"74727565","id":2038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29195:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2026,"id":2039,"nodeType":"Return","src":"29188:11:2"}]}},{"assignments":[2043],"declarations":[{"constant":false,"id":2043,"mutability":"mutable","name":"marker","nameLocation":"29318:6:2","nodeType":"VariableDeclaration","scope":2087,"src":"29310:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":2042,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29310:7:2","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":2056,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":2049,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2022,"src":"29364:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2048,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29358:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2047,"name":"bytes","nodeType":"ElementaryTypeName","src":"29358:5:2","typeDescriptions":{}}},"id":2050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29358:18:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2051,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2028,"src":"29378:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3532","id":2052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29387:2:2","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"src":"29378:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2046,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2133,"src":"29335:22:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":2054,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29335:55:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2045,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29327:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes10_$","typeString":"type(bytes10)"},"typeName":{"id":2044,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29327:7:2","typeDescriptions":{}}},"id":2055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29327:64:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"29310:81:2"},{"condition":{"commonType":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"id":2062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2057,"name":"marker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2043,"src":"29490:6:2","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"2370726f706f7365723d","id":2060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"29508:12:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_4824063d6bdb82ec89a8f29b476cefaf04a89262d201a8de38709c6cdfee4574","typeString":"literal_string \"#proposer=\""},"value":"#proposer="}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_4824063d6bdb82ec89a8f29b476cefaf04a89262d201a8de38709c6cdfee4574","typeString":"literal_string \"#proposer=\""}],"id":2059,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29500:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes10_$","typeString":"type(bytes10)"},"typeName":{"id":2058,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29500:7:2","typeDescriptions":{}}},"id":2061,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29500:21:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"src":"29490:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2066,"nodeType":"IfStatement","src":"29486:81:2","trueBody":{"id":2065,"nodeType":"Block","src":"29523:44:2","statements":[{"expression":{"hexValue":"74727565","id":2063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29548:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2026,"id":2064,"nodeType":"Return","src":"29541:11:2"}]}},{"assignments":[2068,2070],"declarations":[{"constant":false,"id":2068,"mutability":"mutable","name":"success","nameLocation":"29689:7:2","nodeType":"VariableDeclaration","scope":2087,"src":"29684:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2067,"name":"bool","nodeType":"ElementaryTypeName","src":"29684:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2070,"mutability":"mutable","name":"recovered","nameLocation":"29706:9:2","nodeType":"VariableDeclaration","scope":2087,"src":"29698:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2069,"name":"address","nodeType":"ElementaryTypeName","src":"29698:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2079,"initialValue":{"arguments":[{"id":2073,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2022,"src":"29743:11:2","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2074,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2028,"src":"29756:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3432","id":2075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29765:2:2","typeDescriptions":{"typeIdentifier":"t_rational_42_by_1","typeString":"int_const 42"},"value":"42"},"src":"29756:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2077,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2028,"src":"29769:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2071,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8401,"src":"29719:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$8401_$","typeString":"type(library Strings)"}},"id":2072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29727:15:2","memberName":"tryParseAddress","nodeType":"MemberAccess","referencedDeclaration":8328,"src":"29719:23:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":2078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29719:57:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"29683:93:2"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"29797:8:2","subExpression":{"id":2080,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2068,"src":"29798:7:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2082,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2070,"src":"29809:9:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2083,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2020,"src":"29822:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"29809:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"29797:33:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2026,"id":2086,"nodeType":"Return","src":"29790:40:2"}]}]},"id":2089,"implemented":true,"kind":"function","modifiers":[],"name":"_isValidDescriptionForProposer","nameLocation":"28857:30:2","nodeType":"FunctionDefinition","parameters":{"id":2023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2020,"mutability":"mutable","name":"proposer","nameLocation":"28905:8:2","nodeType":"VariableDeclaration","scope":2089,"src":"28897:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2019,"name":"address","nodeType":"ElementaryTypeName","src":"28897:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2022,"mutability":"mutable","name":"description","nameLocation":"28937:11:2","nodeType":"VariableDeclaration","scope":2089,"src":"28923:25:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2021,"name":"string","nodeType":"ElementaryTypeName","src":"28923:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"28887:67:2"},"returnParameters":{"id":2026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2025,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2089,"src":"28986:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2024,"name":"bool","nodeType":"ElementaryTypeName","src":"28986:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"28985:6:2"},"scope":2134,"src":"28848:999:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[5365],"documentation":{"id":2090,"nodeType":"StructuredDocumentation","src":"29853:39:2","text":" @inheritdoc IERC6372"},"functionSelector":"91ddadf4","id":2095,"implemented":false,"kind":"function","modifiers":[],"name":"clock","nameLocation":"29906:5:2","nodeType":"FunctionDefinition","parameters":{"id":2091,"nodeType":"ParameterList","parameters":[],"src":"29911:2:2"},"returnParameters":{"id":2094,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2093,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2095,"src":"29943:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2092,"name":"uint48","nodeType":"ElementaryTypeName","src":"29943:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"29942:8:2"},"scope":2134,"src":"29897:54:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5371],"documentation":{"id":2096,"nodeType":"StructuredDocumentation","src":"29957:39:2","text":" @inheritdoc IERC6372"},"functionSelector":"4bf5d7e9","id":2101,"implemented":false,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"30063:10:2","nodeType":"FunctionDefinition","parameters":{"id":2097,"nodeType":"ParameterList","parameters":[],"src":"30073:2:2"},"returnParameters":{"id":2100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2099,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2101,"src":"30105:13:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2098,"name":"string","nodeType":"ElementaryTypeName","src":"30105:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"30104:15:2"},"scope":2134,"src":"30054:66:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2405],"documentation":{"id":2102,"nodeType":"StructuredDocumentation","src":"30126:40:2","text":" @inheritdoc IGovernor"},"functionSelector":"3932abb1","id":2107,"implemented":false,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"30180:11:2","nodeType":"FunctionDefinition","parameters":{"id":2103,"nodeType":"ParameterList","parameters":[],"src":"30191:2:2"},"returnParameters":{"id":2106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2105,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2107,"src":"30223:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2104,"name":"uint256","nodeType":"ElementaryTypeName","src":"30223:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30222:9:2"},"scope":2134,"src":"30171:61:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2411],"documentation":{"id":2108,"nodeType":"StructuredDocumentation","src":"30238:40:2","text":" @inheritdoc IGovernor"},"functionSelector":"02a251a3","id":2113,"implemented":false,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"30292:12:2","nodeType":"FunctionDefinition","parameters":{"id":2109,"nodeType":"ParameterList","parameters":[],"src":"30304:2:2"},"returnParameters":{"id":2112,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2111,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2113,"src":"30336:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2110,"name":"uint256","nodeType":"ElementaryTypeName","src":"30336:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30335:9:2"},"scope":2134,"src":"30283:62:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2419],"documentation":{"id":2114,"nodeType":"StructuredDocumentation","src":"30351:40:2","text":" @inheritdoc IGovernor"},"functionSelector":"f8ce560a","id":2121,"implemented":false,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"30405:6:2","nodeType":"FunctionDefinition","parameters":{"id":2117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2116,"mutability":"mutable","name":"timepoint","nameLocation":"30420:9:2","nodeType":"VariableDeclaration","scope":2121,"src":"30412:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2115,"name":"uint256","nodeType":"ElementaryTypeName","src":"30412:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30411:19:2"},"returnParameters":{"id":2120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2119,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2121,"src":"30460:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2118,"name":"uint256","nodeType":"ElementaryTypeName","src":"30460:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30459:9:2"},"scope":2134,"src":"30396:73:2","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2132,"nodeType":"Block","src":"30854:225:2","statements":[{"AST":{"nodeType":"YulBlock","src":"31003:70:2","statements":[{"nodeType":"YulAssignment","src":"31017:46:2","value":{"arguments":[{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"31036:6:2"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"31048:4:2","type":"","value":"0x20"},{"name":"offset","nodeType":"YulIdentifier","src":"31054:6:2"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31044:3:2"},"nodeType":"YulFunctionCall","src":"31044:17:2"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31032:3:2"},"nodeType":"YulFunctionCall","src":"31032:30:2"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"31026:5:2"},"nodeType":"YulFunctionCall","src":"31026:37:2"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"31017:5:2"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2124,"isOffset":false,"isSlot":false,"src":"31036:6:2","valueSize":1},{"declaration":2126,"isOffset":false,"isSlot":false,"src":"31054:6:2","valueSize":1},{"declaration":2129,"isOffset":false,"isSlot":false,"src":"31017:5:2","valueSize":1}],"flags":["memory-safe"],"id":2131,"nodeType":"InlineAssembly","src":"30978:95:2"}]},"documentation":{"id":2122,"nodeType":"StructuredDocumentation","src":"30475:268:2","text":" @dev Reads a bytes32 from a bytes array without bounds checking.\n NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n assembly block as such would prevent some optimizations."},"id":2133,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"30757:22:2","nodeType":"FunctionDefinition","parameters":{"id":2127,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2124,"mutability":"mutable","name":"buffer","nameLocation":"30793:6:2","nodeType":"VariableDeclaration","scope":2133,"src":"30780:19:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2123,"name":"bytes","nodeType":"ElementaryTypeName","src":"30780:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2126,"mutability":"mutable","name":"offset","nameLocation":"30809:6:2","nodeType":"VariableDeclaration","scope":2133,"src":"30801:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2125,"name":"uint256","nodeType":"ElementaryTypeName","src":"30801:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30779:37:2"},"returnParameters":{"id":2130,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2129,"mutability":"mutable","name":"value","nameLocation":"30847:5:2","nodeType":"VariableDeclaration","scope":2133,"src":"30839:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2128,"name":"bytes32","nodeType":"ElementaryTypeName","src":"30839:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"30838:15:2"},"scope":2134,"src":"30748:331:2","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":2135,"src":"1243:29838:2","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,6731,6750,6874,6876,10810],"usedEvents":[2264,2271,2276,2281,2294,2309,5326]}],"src":"107:30975:2"},"id":2},"@openzeppelin/contracts/governance/IGovernor.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/IGovernor.sol","exportedSymbols":{"IERC165":[9194],"IERC6372":[5372],"IGovernor":[2588]},"id":2589,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2136,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"108:24:3"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"../interfaces/IERC165.sol","id":2138,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2589,"sourceUnit":5322,"src":"134:50:3","symbolAliases":[{"foreign":{"id":2137,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"142:7:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC6372.sol","file":"../interfaces/IERC6372.sol","id":2140,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2589,"sourceUnit":5373,"src":"185:52:3","symbolAliases":[{"foreign":{"id":2139,"name":"IERC6372","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5372,"src":"193:8:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2142,"name":"IERC165","nameLocations":["522:7:3"],"nodeType":"IdentifierPath","referencedDeclaration":9194,"src":"522:7:3"},"id":2143,"nodeType":"InheritanceSpecifier","src":"522:7:3"},{"baseName":{"id":2144,"name":"IERC6372","nameLocations":["531:8:3"],"nodeType":"IdentifierPath","referencedDeclaration":5372,"src":"531:8:3"},"id":2145,"nodeType":"InheritanceSpecifier","src":"531:8:3"}],"canonicalName":"IGovernor","contractDependencies":[],"contractKind":"interface","documentation":{"id":2141,"nodeType":"StructuredDocumentation","src":"239:259:3","text":" @dev Interface of the {Governor} core.\n NOTE: Event parameters lack the `indexed` keyword for compatibility with GovernorBravo events.\n Making event parameters `indexed` affects how events are decoded, potentially breaking existing indexers."},"fullyImplemented":false,"id":2588,"linearizedBaseContracts":[2588,5372,9194],"name":"IGovernor","nameLocation":"509:9:3","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IGovernor.ProposalState","id":2154,"members":[{"id":2146,"name":"Pending","nameLocation":"575:7:3","nodeType":"EnumValue","src":"575:7:3"},{"id":2147,"name":"Active","nameLocation":"592:6:3","nodeType":"EnumValue","src":"592:6:3"},{"id":2148,"name":"Canceled","nameLocation":"608:8:3","nodeType":"EnumValue","src":"608:8:3"},{"id":2149,"name":"Defeated","nameLocation":"626:8:3","nodeType":"EnumValue","src":"626:8:3"},{"id":2150,"name":"Succeeded","nameLocation":"644:9:3","nodeType":"EnumValue","src":"644:9:3"},{"id":2151,"name":"Queued","nameLocation":"663:6:3","nodeType":"EnumValue","src":"663:6:3"},{"id":2152,"name":"Expired","nameLocation":"679:7:3","nodeType":"EnumValue","src":"679:7:3"},{"id":2153,"name":"Executed","nameLocation":"696:8:3","nodeType":"EnumValue","src":"696:8:3"}],"name":"ProposalState","nameLocation":"551:13:3","nodeType":"EnumDefinition","src":"546:164:3"},{"documentation":{"id":2155,"nodeType":"StructuredDocumentation","src":"716:103:3","text":" @dev Empty proposal or a mismatch between the parameters length for a proposal call."},"errorSelector":"447b05d0","id":2163,"name":"GovernorInvalidProposalLength","nameLocation":"830:29:3","nodeType":"ErrorDefinition","parameters":{"id":2162,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2157,"mutability":"mutable","name":"targets","nameLocation":"868:7:3","nodeType":"VariableDeclaration","scope":2163,"src":"860:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2156,"name":"uint256","nodeType":"ElementaryTypeName","src":"860:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2159,"mutability":"mutable","name":"calldatas","nameLocation":"885:9:3","nodeType":"VariableDeclaration","scope":2163,"src":"877:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2158,"name":"uint256","nodeType":"ElementaryTypeName","src":"877:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2161,"mutability":"mutable","name":"values","nameLocation":"904:6:3","nodeType":"VariableDeclaration","scope":2163,"src":"896:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2160,"name":"uint256","nodeType":"ElementaryTypeName","src":"896:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"859:52:3"},"src":"824:88:3"},{"documentation":{"id":2164,"nodeType":"StructuredDocumentation","src":"918:50:3","text":" @dev The vote was already cast."},"errorSelector":"71c6af49","id":2168,"name":"GovernorAlreadyCastVote","nameLocation":"979:23:3","nodeType":"ErrorDefinition","parameters":{"id":2167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2166,"mutability":"mutable","name":"voter","nameLocation":"1011:5:3","nodeType":"VariableDeclaration","scope":2168,"src":"1003:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2165,"name":"address","nodeType":"ElementaryTypeName","src":"1003:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1002:15:3"},"src":"973:45:3"},{"documentation":{"id":2169,"nodeType":"StructuredDocumentation","src":"1024:69:3","text":" @dev Token deposits are disabled in this contract."},"errorSelector":"e90a651e","id":2171,"name":"GovernorDisabledDeposit","nameLocation":"1104:23:3","nodeType":"ErrorDefinition","parameters":{"id":2170,"nodeType":"ParameterList","parameters":[],"src":"1127:2:3"},"src":"1098:32:3"},{"documentation":{"id":2172,"nodeType":"StructuredDocumentation","src":"1136:56:3","text":" @dev The `account` is not a proposer."},"errorSelector":"233d98e3","id":2176,"name":"GovernorOnlyProposer","nameLocation":"1203:20:3","nodeType":"ErrorDefinition","parameters":{"id":2175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2174,"mutability":"mutable","name":"account","nameLocation":"1232:7:3","nodeType":"VariableDeclaration","scope":2176,"src":"1224:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2173,"name":"address","nodeType":"ElementaryTypeName","src":"1224:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1223:17:3"},"src":"1197:44:3"},{"documentation":{"id":2177,"nodeType":"StructuredDocumentation","src":"1247:69:3","text":" @dev The `account` is not the governance executor."},"errorSelector":"47096e47","id":2181,"name":"GovernorOnlyExecutor","nameLocation":"1327:20:3","nodeType":"ErrorDefinition","parameters":{"id":2180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2179,"mutability":"mutable","name":"account","nameLocation":"1356:7:3","nodeType":"VariableDeclaration","scope":2181,"src":"1348:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2178,"name":"address","nodeType":"ElementaryTypeName","src":"1348:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1347:17:3"},"src":"1321:44:3"},{"documentation":{"id":2182,"nodeType":"StructuredDocumentation","src":"1371:55:3","text":" @dev The `proposalId` doesn't exist."},"errorSelector":"6ad06075","id":2186,"name":"GovernorNonexistentProposal","nameLocation":"1437:27:3","nodeType":"ErrorDefinition","parameters":{"id":2185,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2184,"mutability":"mutable","name":"proposalId","nameLocation":"1473:10:3","nodeType":"VariableDeclaration","scope":2186,"src":"1465:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2183,"name":"uint256","nodeType":"ElementaryTypeName","src":"1465:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1464:20:3"},"src":"1431:54:3"},{"documentation":{"id":2187,"nodeType":"StructuredDocumentation","src":"1491:530:3","text":" @dev The current state of a proposal is not the required for performing an operation.\n The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position\n counting from right to left.\n NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist).\n This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated).\n See {Governor-_encodeStateBitmap}."},"errorSelector":"31b75e4d","id":2196,"name":"GovernorUnexpectedProposalState","nameLocation":"2032:31:3","nodeType":"ErrorDefinition","parameters":{"id":2195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2189,"mutability":"mutable","name":"proposalId","nameLocation":"2072:10:3","nodeType":"VariableDeclaration","scope":2196,"src":"2064:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2188,"name":"uint256","nodeType":"ElementaryTypeName","src":"2064:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2192,"mutability":"mutable","name":"current","nameLocation":"2098:7:3","nodeType":"VariableDeclaration","scope":2196,"src":"2084:21:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":2191,"nodeType":"UserDefinedTypeName","pathNode":{"id":2190,"name":"ProposalState","nameLocations":["2084:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"2084:13:3"},"referencedDeclaration":2154,"src":"2084:13:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"},{"constant":false,"id":2194,"mutability":"mutable","name":"expectedStates","nameLocation":"2115:14:3","nodeType":"VariableDeclaration","scope":2196,"src":"2107:22:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2193,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2107:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2063:67:3"},"src":"2026:105:3"},{"documentation":{"id":2197,"nodeType":"StructuredDocumentation","src":"2137:68:3","text":" @dev The voting period set is not a valid period."},"errorSelector":"f1cfbf05","id":2201,"name":"GovernorInvalidVotingPeriod","nameLocation":"2216:27:3","nodeType":"ErrorDefinition","parameters":{"id":2200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2199,"mutability":"mutable","name":"votingPeriod","nameLocation":"2252:12:3","nodeType":"VariableDeclaration","scope":2201,"src":"2244:20:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2198,"name":"uint256","nodeType":"ElementaryTypeName","src":"2244:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2243:22:3"},"src":"2210:56:3"},{"documentation":{"id":2202,"nodeType":"StructuredDocumentation","src":"2272:93:3","text":" @dev The `proposer` does not have the required votes to create a proposal."},"errorSelector":"c242ee16","id":2210,"name":"GovernorInsufficientProposerVotes","nameLocation":"2376:33:3","nodeType":"ErrorDefinition","parameters":{"id":2209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2204,"mutability":"mutable","name":"proposer","nameLocation":"2418:8:3","nodeType":"VariableDeclaration","scope":2210,"src":"2410:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2203,"name":"address","nodeType":"ElementaryTypeName","src":"2410:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2206,"mutability":"mutable","name":"votes","nameLocation":"2436:5:3","nodeType":"VariableDeclaration","scope":2210,"src":"2428:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2205,"name":"uint256","nodeType":"ElementaryTypeName","src":"2428:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2208,"mutability":"mutable","name":"threshold","nameLocation":"2451:9:3","nodeType":"VariableDeclaration","scope":2210,"src":"2443:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2207,"name":"uint256","nodeType":"ElementaryTypeName","src":"2443:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2409:52:3"},"src":"2370:92:3"},{"documentation":{"id":2211,"nodeType":"StructuredDocumentation","src":"2468:75:3","text":" @dev The `proposer` is not allowed to create a proposal."},"errorSelector":"d9b39557","id":2215,"name":"GovernorRestrictedProposer","nameLocation":"2554:26:3","nodeType":"ErrorDefinition","parameters":{"id":2214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2213,"mutability":"mutable","name":"proposer","nameLocation":"2589:8:3","nodeType":"VariableDeclaration","scope":2215,"src":"2581:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2212,"name":"address","nodeType":"ElementaryTypeName","src":"2581:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2580:18:3"},"src":"2548:51:3"},{"documentation":{"id":2216,"nodeType":"StructuredDocumentation","src":"2605:94:3","text":" @dev The vote type used is not valid for the corresponding counting module."},"errorSelector":"06b337c2","id":2218,"name":"GovernorInvalidVoteType","nameLocation":"2710:23:3","nodeType":"ErrorDefinition","parameters":{"id":2217,"nodeType":"ParameterList","parameters":[],"src":"2733:2:3"},"src":"2704:32:3"},{"documentation":{"id":2219,"nodeType":"StructuredDocumentation","src":"2742:91:3","text":" @dev The provided params buffer is not supported by the counting module."},"errorSelector":"867db771","id":2221,"name":"GovernorInvalidVoteParams","nameLocation":"2844:25:3","nodeType":"ErrorDefinition","parameters":{"id":2220,"nodeType":"ParameterList","parameters":[],"src":"2869:2:3"},"src":"2838:34:3"},{"documentation":{"id":2222,"nodeType":"StructuredDocumentation","src":"2878:112:3","text":" @dev Queue operation is not implemented for this governor. Execute should be called directly."},"errorSelector":"90884a46","id":2224,"name":"GovernorQueueNotImplemented","nameLocation":"3001:27:3","nodeType":"ErrorDefinition","parameters":{"id":2223,"nodeType":"ParameterList","parameters":[],"src":"3028:2:3"},"src":"2995:36:3"},{"documentation":{"id":2225,"nodeType":"StructuredDocumentation","src":"3037:60:3","text":" @dev The proposal hasn't been queued yet."},"errorSelector":"d5ddb825","id":2229,"name":"GovernorNotQueuedProposal","nameLocation":"3108:25:3","nodeType":"ErrorDefinition","parameters":{"id":2228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2227,"mutability":"mutable","name":"proposalId","nameLocation":"3142:10:3","nodeType":"VariableDeclaration","scope":2229,"src":"3134:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2226,"name":"uint256","nodeType":"ElementaryTypeName","src":"3134:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3133:20:3"},"src":"3102:52:3"},{"documentation":{"id":2230,"nodeType":"StructuredDocumentation","src":"3160:61:3","text":" @dev The proposal has already been queued."},"errorSelector":"f20e7d37","id":2234,"name":"GovernorAlreadyQueuedProposal","nameLocation":"3232:29:3","nodeType":"ErrorDefinition","parameters":{"id":2233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2232,"mutability":"mutable","name":"proposalId","nameLocation":"3270:10:3","nodeType":"VariableDeclaration","scope":2234,"src":"3262:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2231,"name":"uint256","nodeType":"ElementaryTypeName","src":"3262:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3261:20:3"},"src":"3226:56:3"},{"documentation":{"id":2235,"nodeType":"StructuredDocumentation","src":"3288:184:3","text":" @dev The provided signature is not valid for the expected `voter`.\n If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}."},"errorSelector":"94ab6c07","id":2239,"name":"GovernorInvalidSignature","nameLocation":"3483:24:3","nodeType":"ErrorDefinition","parameters":{"id":2238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2237,"mutability":"mutable","name":"voter","nameLocation":"3516:5:3","nodeType":"VariableDeclaration","scope":2239,"src":"3508:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2236,"name":"address","nodeType":"ElementaryTypeName","src":"3508:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3507:15:3"},"src":"3477:46:3"},{"anonymous":false,"documentation":{"id":2240,"nodeType":"StructuredDocumentation","src":"3529:59:3","text":" @dev Emitted when a proposal is created."},"eventSelector":"7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e0","id":2264,"name":"ProposalCreated","nameLocation":"3599:15:3","nodeType":"EventDefinition","parameters":{"id":2263,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2242,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3632:10:3","nodeType":"VariableDeclaration","scope":2264,"src":"3624:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2241,"name":"uint256","nodeType":"ElementaryTypeName","src":"3624:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2244,"indexed":false,"mutability":"mutable","name":"proposer","nameLocation":"3660:8:3","nodeType":"VariableDeclaration","scope":2264,"src":"3652:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2243,"name":"address","nodeType":"ElementaryTypeName","src":"3652:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2247,"indexed":false,"mutability":"mutable","name":"targets","nameLocation":"3688:7:3","nodeType":"VariableDeclaration","scope":2264,"src":"3678:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2245,"name":"address","nodeType":"ElementaryTypeName","src":"3678:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2246,"nodeType":"ArrayTypeName","src":"3678:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2250,"indexed":false,"mutability":"mutable","name":"values","nameLocation":"3715:6:3","nodeType":"VariableDeclaration","scope":2264,"src":"3705:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2248,"name":"uint256","nodeType":"ElementaryTypeName","src":"3705:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2249,"nodeType":"ArrayTypeName","src":"3705:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2253,"indexed":false,"mutability":"mutable","name":"signatures","nameLocation":"3740:10:3","nodeType":"VariableDeclaration","scope":2264,"src":"3731:19:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":2251,"name":"string","nodeType":"ElementaryTypeName","src":"3731:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":2252,"nodeType":"ArrayTypeName","src":"3731:8:3","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":2256,"indexed":false,"mutability":"mutable","name":"calldatas","nameLocation":"3768:9:3","nodeType":"VariableDeclaration","scope":2264,"src":"3760:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2254,"name":"bytes","nodeType":"ElementaryTypeName","src":"3760:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2255,"nodeType":"ArrayTypeName","src":"3760:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2258,"indexed":false,"mutability":"mutable","name":"voteStart","nameLocation":"3795:9:3","nodeType":"VariableDeclaration","scope":2264,"src":"3787:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2257,"name":"uint256","nodeType":"ElementaryTypeName","src":"3787:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2260,"indexed":false,"mutability":"mutable","name":"voteEnd","nameLocation":"3822:7:3","nodeType":"VariableDeclaration","scope":2264,"src":"3814:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2259,"name":"uint256","nodeType":"ElementaryTypeName","src":"3814:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2262,"indexed":false,"mutability":"mutable","name":"description","nameLocation":"3846:11:3","nodeType":"VariableDeclaration","scope":2264,"src":"3839:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2261,"name":"string","nodeType":"ElementaryTypeName","src":"3839:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3614:249:3"},"src":"3593:271:3"},{"anonymous":false,"documentation":{"id":2265,"nodeType":"StructuredDocumentation","src":"3870:58:3","text":" @dev Emitted when a proposal is queued."},"eventSelector":"9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda2892","id":2271,"name":"ProposalQueued","nameLocation":"3939:14:3","nodeType":"EventDefinition","parameters":{"id":2270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2267,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3962:10:3","nodeType":"VariableDeclaration","scope":2271,"src":"3954:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2266,"name":"uint256","nodeType":"ElementaryTypeName","src":"3954:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2269,"indexed":false,"mutability":"mutable","name":"etaSeconds","nameLocation":"3982:10:3","nodeType":"VariableDeclaration","scope":2271,"src":"3974:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2268,"name":"uint256","nodeType":"ElementaryTypeName","src":"3974:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3953:40:3"},"src":"3933:61:3"},{"anonymous":false,"documentation":{"id":2272,"nodeType":"StructuredDocumentation","src":"4000:60:3","text":" @dev Emitted when a proposal is executed."},"eventSelector":"712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f","id":2276,"name":"ProposalExecuted","nameLocation":"4071:16:3","nodeType":"EventDefinition","parameters":{"id":2275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2274,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4096:10:3","nodeType":"VariableDeclaration","scope":2276,"src":"4088:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2273,"name":"uint256","nodeType":"ElementaryTypeName","src":"4088:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4087:20:3"},"src":"4065:43:3"},{"anonymous":false,"documentation":{"id":2277,"nodeType":"StructuredDocumentation","src":"4114:60:3","text":" @dev Emitted when a proposal is canceled."},"eventSelector":"789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c","id":2281,"name":"ProposalCanceled","nameLocation":"4185:16:3","nodeType":"EventDefinition","parameters":{"id":2280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2279,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4210:10:3","nodeType":"VariableDeclaration","scope":2281,"src":"4202:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2278,"name":"uint256","nodeType":"ElementaryTypeName","src":"4202:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4201:20:3"},"src":"4179:43:3"},{"anonymous":false,"documentation":{"id":2282,"nodeType":"StructuredDocumentation","src":"4228:187:3","text":" @dev Emitted when a vote is cast without params.\n Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used."},"eventSelector":"b8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4","id":2294,"name":"VoteCast","nameLocation":"4426:8:3","nodeType":"EventDefinition","parameters":{"id":2293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2284,"indexed":true,"mutability":"mutable","name":"voter","nameLocation":"4451:5:3","nodeType":"VariableDeclaration","scope":2294,"src":"4435:21:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2283,"name":"address","nodeType":"ElementaryTypeName","src":"4435:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2286,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4466:10:3","nodeType":"VariableDeclaration","scope":2294,"src":"4458:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2285,"name":"uint256","nodeType":"ElementaryTypeName","src":"4458:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2288,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"4484:7:3","nodeType":"VariableDeclaration","scope":2294,"src":"4478:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2287,"name":"uint8","nodeType":"ElementaryTypeName","src":"4478:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2290,"indexed":false,"mutability":"mutable","name":"weight","nameLocation":"4501:6:3","nodeType":"VariableDeclaration","scope":2294,"src":"4493:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2289,"name":"uint256","nodeType":"ElementaryTypeName","src":"4493:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2292,"indexed":false,"mutability":"mutable","name":"reason","nameLocation":"4516:6:3","nodeType":"VariableDeclaration","scope":2294,"src":"4509:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2291,"name":"string","nodeType":"ElementaryTypeName","src":"4509:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4434:89:3"},"src":"4420:104:3"},{"anonymous":false,"documentation":{"id":2295,"nodeType":"StructuredDocumentation","src":"4530:297:3","text":" @dev Emitted when a vote is cast with params.\n Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\n `params` are additional encoded parameters. Their interpretation also depends on the voting module used."},"eventSelector":"e2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712","id":2309,"name":"VoteCastWithParams","nameLocation":"4838:18:3","nodeType":"EventDefinition","parameters":{"id":2308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2297,"indexed":true,"mutability":"mutable","name":"voter","nameLocation":"4882:5:3","nodeType":"VariableDeclaration","scope":2309,"src":"4866:21:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2296,"name":"address","nodeType":"ElementaryTypeName","src":"4866:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2299,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4905:10:3","nodeType":"VariableDeclaration","scope":2309,"src":"4897:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2298,"name":"uint256","nodeType":"ElementaryTypeName","src":"4897:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2301,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"4931:7:3","nodeType":"VariableDeclaration","scope":2309,"src":"4925:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2300,"name":"uint8","nodeType":"ElementaryTypeName","src":"4925:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2303,"indexed":false,"mutability":"mutable","name":"weight","nameLocation":"4956:6:3","nodeType":"VariableDeclaration","scope":2309,"src":"4948:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2302,"name":"uint256","nodeType":"ElementaryTypeName","src":"4948:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2305,"indexed":false,"mutability":"mutable","name":"reason","nameLocation":"4979:6:3","nodeType":"VariableDeclaration","scope":2309,"src":"4972:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2304,"name":"string","nodeType":"ElementaryTypeName","src":"4972:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2307,"indexed":false,"mutability":"mutable","name":"params","nameLocation":"5001:6:3","nodeType":"VariableDeclaration","scope":2309,"src":"4995:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2306,"name":"bytes","nodeType":"ElementaryTypeName","src":"4995:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4856:157:3"},"src":"4832:182:3"},{"documentation":{"id":2310,"nodeType":"StructuredDocumentation","src":"5020:129:3","text":" @notice module:core\n @dev Name of the governor instance (used in building the EIP-712 domain separator)."},"functionSelector":"06fdde03","id":2315,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"5163:4:3","nodeType":"FunctionDefinition","parameters":{"id":2311,"nodeType":"ParameterList","parameters":[],"src":"5167:2:3"},"returnParameters":{"id":2314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2313,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2315,"src":"5193:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2312,"name":"string","nodeType":"ElementaryTypeName","src":"5193:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5192:15:3"},"scope":2588,"src":"5154:54:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2316,"nodeType":"StructuredDocumentation","src":"5214:145:3","text":" @notice module:core\n @dev Version of the governor instance (used in building the EIP-712 domain separator). Default: \"1\""},"functionSelector":"54fd4d50","id":2321,"implemented":false,"kind":"function","modifiers":[],"name":"version","nameLocation":"5373:7:3","nodeType":"FunctionDefinition","parameters":{"id":2317,"nodeType":"ParameterList","parameters":[],"src":"5380:2:3"},"returnParameters":{"id":2320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2319,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2321,"src":"5406:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2318,"name":"string","nodeType":"ElementaryTypeName","src":"5406:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5405:15:3"},"scope":2588,"src":"5364:57:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2322,"nodeType":"StructuredDocumentation","src":"5427:1315:3","text":" @notice module:voting\n @dev A description of the possible `support` values for {castVote} and the way these votes are counted, meant to\n be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of\n key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`.\n There are 2 standard keys: `support` and `quorum`.\n - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`.\n - `quorum=bravo` means that only For votes are counted towards quorum.\n - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum.\n If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique\n name that describes the behavior. For example:\n - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain.\n - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote.\n NOTE: The string can be decoded by the standard\n https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`]\n JavaScript class."},"functionSelector":"dd4e2ba5","id":2327,"implemented":false,"kind":"function","modifiers":[],"name":"COUNTING_MODE","nameLocation":"6809:13:3","nodeType":"FunctionDefinition","parameters":{"id":2323,"nodeType":"ParameterList","parameters":[],"src":"6822:2:3"},"returnParameters":{"id":2326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2325,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2327,"src":"6848:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2324,"name":"string","nodeType":"ElementaryTypeName","src":"6848:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6847:15:3"},"scope":2588,"src":"6800:63:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2328,"nodeType":"StructuredDocumentation","src":"6869:129:3","text":" @notice module:core\n @dev Hashing function used to (re)build the proposal id from the proposal details.."},"functionSelector":"c59057e4","id":2344,"implemented":false,"kind":"function","modifiers":[],"name":"hashProposal","nameLocation":"7012:12:3","nodeType":"FunctionDefinition","parameters":{"id":2340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2331,"mutability":"mutable","name":"targets","nameLocation":"7051:7:3","nodeType":"VariableDeclaration","scope":2344,"src":"7034:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2329,"name":"address","nodeType":"ElementaryTypeName","src":"7034:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2330,"nodeType":"ArrayTypeName","src":"7034:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2334,"mutability":"mutable","name":"values","nameLocation":"7085:6:3","nodeType":"VariableDeclaration","scope":2344,"src":"7068:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2332,"name":"uint256","nodeType":"ElementaryTypeName","src":"7068:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2333,"nodeType":"ArrayTypeName","src":"7068:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2337,"mutability":"mutable","name":"calldatas","nameLocation":"7116:9:3","nodeType":"VariableDeclaration","scope":2344,"src":"7101:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2335,"name":"bytes","nodeType":"ElementaryTypeName","src":"7101:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2336,"nodeType":"ArrayTypeName","src":"7101:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2339,"mutability":"mutable","name":"descriptionHash","nameLocation":"7143:15:3","nodeType":"VariableDeclaration","scope":2344,"src":"7135:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2338,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7135:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7024:140:3"},"returnParameters":{"id":2343,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2342,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2344,"src":"7188:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2341,"name":"uint256","nodeType":"ElementaryTypeName","src":"7188:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7187:9:3"},"scope":2588,"src":"7003:194:3","stateMutability":"pure","virtual":false,"visibility":"external"},{"documentation":{"id":2345,"nodeType":"StructuredDocumentation","src":"7203:111:3","text":" @notice module:core\n @dev Current state of a proposal, following Compound's convention"},"functionSelector":"3e4f49e6","id":2353,"implemented":false,"kind":"function","modifiers":[],"name":"state","nameLocation":"7328:5:3","nodeType":"FunctionDefinition","parameters":{"id":2348,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2347,"mutability":"mutable","name":"proposalId","nameLocation":"7342:10:3","nodeType":"VariableDeclaration","scope":2353,"src":"7334:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2346,"name":"uint256","nodeType":"ElementaryTypeName","src":"7334:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7333:20:3"},"returnParameters":{"id":2352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2351,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2353,"src":"7377:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":2350,"nodeType":"UserDefinedTypeName","pathNode":{"id":2349,"name":"ProposalState","nameLocations":["7377:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"7377:13:3"},"referencedDeclaration":2154,"src":"7377:13:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"7376:15:3"},"scope":2588,"src":"7319:73:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2354,"nodeType":"StructuredDocumentation","src":"7398:122:3","text":" @notice module:core\n @dev The number of votes required in order for a voter to become a proposer."},"functionSelector":"b58131b0","id":2359,"implemented":false,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"7534:17:3","nodeType":"FunctionDefinition","parameters":{"id":2355,"nodeType":"ParameterList","parameters":[],"src":"7551:2:3"},"returnParameters":{"id":2358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2357,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2359,"src":"7577:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2356,"name":"uint256","nodeType":"ElementaryTypeName","src":"7577:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7576:9:3"},"scope":2588,"src":"7525:61:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2360,"nodeType":"StructuredDocumentation","src":"7592:296:3","text":" @notice module:core\n @dev Timepoint used to retrieve user's votes and quorum. If using block number (as per Compound's Comp), the\n snapshot is performed at the end of this block. Hence, voting for this proposal starts at the beginning of the\n following block."},"functionSelector":"2d63f693","id":2367,"implemented":false,"kind":"function","modifiers":[],"name":"proposalSnapshot","nameLocation":"7902:16:3","nodeType":"FunctionDefinition","parameters":{"id":2363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2362,"mutability":"mutable","name":"proposalId","nameLocation":"7927:10:3","nodeType":"VariableDeclaration","scope":2367,"src":"7919:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2361,"name":"uint256","nodeType":"ElementaryTypeName","src":"7919:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7918:20:3"},"returnParameters":{"id":2366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2365,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2367,"src":"7962:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2364,"name":"uint256","nodeType":"ElementaryTypeName","src":"7962:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7961:9:3"},"scope":2588,"src":"7893:78:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2368,"nodeType":"StructuredDocumentation","src":"7977:202:3","text":" @notice module:core\n @dev Timepoint at which votes close. If using block number, votes close at the end of this block, so it is\n possible to cast a vote during this block."},"functionSelector":"c01f9e37","id":2375,"implemented":false,"kind":"function","modifiers":[],"name":"proposalDeadline","nameLocation":"8193:16:3","nodeType":"FunctionDefinition","parameters":{"id":2371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2370,"mutability":"mutable","name":"proposalId","nameLocation":"8218:10:3","nodeType":"VariableDeclaration","scope":2375,"src":"8210:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2369,"name":"uint256","nodeType":"ElementaryTypeName","src":"8210:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8209:20:3"},"returnParameters":{"id":2374,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2373,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2375,"src":"8253:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2372,"name":"uint256","nodeType":"ElementaryTypeName","src":"8253:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8252:9:3"},"scope":2588,"src":"8184:78:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2376,"nodeType":"StructuredDocumentation","src":"8268:87:3","text":" @notice module:core\n @dev The account that created a proposal."},"functionSelector":"143489d0","id":2383,"implemented":false,"kind":"function","modifiers":[],"name":"proposalProposer","nameLocation":"8369:16:3","nodeType":"FunctionDefinition","parameters":{"id":2379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2378,"mutability":"mutable","name":"proposalId","nameLocation":"8394:10:3","nodeType":"VariableDeclaration","scope":2383,"src":"8386:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2377,"name":"uint256","nodeType":"ElementaryTypeName","src":"8386:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8385:20:3"},"returnParameters":{"id":2382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2381,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2383,"src":"8429:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2380,"name":"address","nodeType":"ElementaryTypeName","src":"8429:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8428:9:3"},"scope":2588,"src":"8360:78:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2384,"nodeType":"StructuredDocumentation","src":"8444:318:3","text":" @notice module:core\n @dev The time when a queued proposal becomes executable (\"ETA\"). Unlike {proposalSnapshot} and\n {proposalDeadline}, this doesn't use the governor clock, and instead relies on the executor's clock which may be\n different. In most cases this will be a timestamp."},"functionSelector":"ab58fb8e","id":2391,"implemented":false,"kind":"function","modifiers":[],"name":"proposalEta","nameLocation":"8776:11:3","nodeType":"FunctionDefinition","parameters":{"id":2387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2386,"mutability":"mutable","name":"proposalId","nameLocation":"8796:10:3","nodeType":"VariableDeclaration","scope":2391,"src":"8788:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2385,"name":"uint256","nodeType":"ElementaryTypeName","src":"8788:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8787:20:3"},"returnParameters":{"id":2390,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2389,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2391,"src":"8831:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2388,"name":"uint256","nodeType":"ElementaryTypeName","src":"8831:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8830:9:3"},"scope":2588,"src":"8767:73:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2392,"nodeType":"StructuredDocumentation","src":"8846:106:3","text":" @notice module:core\n @dev Whether a proposal needs to be queued before execution."},"functionSelector":"a9a95294","id":2399,"implemented":false,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"8966:20:3","nodeType":"FunctionDefinition","parameters":{"id":2395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2394,"mutability":"mutable","name":"proposalId","nameLocation":"8995:10:3","nodeType":"VariableDeclaration","scope":2399,"src":"8987:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2393,"name":"uint256","nodeType":"ElementaryTypeName","src":"8987:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8986:20:3"},"returnParameters":{"id":2398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2397,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2399,"src":"9030:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2396,"name":"bool","nodeType":"ElementaryTypeName","src":"9030:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9029:6:3"},"scope":2588,"src":"8957:79:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2400,"nodeType":"StructuredDocumentation","src":"9042:599:3","text":" @notice module:user-config\n @dev Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends\n on the clock (see ERC-6372) this contract uses.\n This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a\n proposal starts.\n NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type.\n Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}."},"functionSelector":"3932abb1","id":2405,"implemented":false,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"9655:11:3","nodeType":"FunctionDefinition","parameters":{"id":2401,"nodeType":"ParameterList","parameters":[],"src":"9666:2:3"},"returnParameters":{"id":2404,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2403,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2405,"src":"9692:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2402,"name":"uint256","nodeType":"ElementaryTypeName","src":"9692:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9691:9:3"},"scope":2588,"src":"9646:55:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2406,"nodeType":"StructuredDocumentation","src":"9707:686:3","text":" @notice module:user-config\n @dev Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock\n (see ERC-6372) this contract uses.\n NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting\n duration compared to the voting delay.\n NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect\n proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this\n interface returns a uint256, the value it returns should fit in a uint32."},"functionSelector":"02a251a3","id":2411,"implemented":false,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"10407:12:3","nodeType":"FunctionDefinition","parameters":{"id":2407,"nodeType":"ParameterList","parameters":[],"src":"10419:2:3"},"returnParameters":{"id":2410,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2409,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2411,"src":"10445:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2408,"name":"uint256","nodeType":"ElementaryTypeName","src":"10445:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10444:9:3"},"scope":2588,"src":"10398:56:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2412,"nodeType":"StructuredDocumentation","src":"10460:358:3","text":" @notice module:user-config\n @dev Minimum number of cast voted required for a proposal to be successful.\n NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the\n quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes})."},"functionSelector":"f8ce560a","id":2419,"implemented":false,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"10832:6:3","nodeType":"FunctionDefinition","parameters":{"id":2415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2414,"mutability":"mutable","name":"timepoint","nameLocation":"10847:9:3","nodeType":"VariableDeclaration","scope":2419,"src":"10839:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2413,"name":"uint256","nodeType":"ElementaryTypeName","src":"10839:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10838:19:3"},"returnParameters":{"id":2418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2417,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2419,"src":"10881:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2416,"name":"uint256","nodeType":"ElementaryTypeName","src":"10881:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10880:9:3"},"scope":2588,"src":"10823:67:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2420,"nodeType":"StructuredDocumentation","src":"10896:274:3","text":" @notice module:reputation\n @dev Voting power of an `account` at a specific `timepoint`.\n Note: this can be implemented in a number of ways, for example by reading the delegated balance from one (or\n multiple), {ERC20Votes} tokens."},"functionSelector":"eb9019d4","id":2429,"implemented":false,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"11184:8:3","nodeType":"FunctionDefinition","parameters":{"id":2425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2422,"mutability":"mutable","name":"account","nameLocation":"11201:7:3","nodeType":"VariableDeclaration","scope":2429,"src":"11193:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2421,"name":"address","nodeType":"ElementaryTypeName","src":"11193:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2424,"mutability":"mutable","name":"timepoint","nameLocation":"11218:9:3","nodeType":"VariableDeclaration","scope":2429,"src":"11210:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2423,"name":"uint256","nodeType":"ElementaryTypeName","src":"11210:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11192:36:3"},"returnParameters":{"id":2428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2427,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2429,"src":"11252:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2426,"name":"uint256","nodeType":"ElementaryTypeName","src":"11252:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11251:9:3"},"scope":2588,"src":"11175:86:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2430,"nodeType":"StructuredDocumentation","src":"11267:148:3","text":" @notice module:reputation\n @dev Voting power of an `account` at a specific `timepoint` given additional encoded parameters."},"functionSelector":"9a802a6d","id":2441,"implemented":false,"kind":"function","modifiers":[],"name":"getVotesWithParams","nameLocation":"11429:18:3","nodeType":"FunctionDefinition","parameters":{"id":2437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2432,"mutability":"mutable","name":"account","nameLocation":"11465:7:3","nodeType":"VariableDeclaration","scope":2441,"src":"11457:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2431,"name":"address","nodeType":"ElementaryTypeName","src":"11457:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2434,"mutability":"mutable","name":"timepoint","nameLocation":"11490:9:3","nodeType":"VariableDeclaration","scope":2441,"src":"11482:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2433,"name":"uint256","nodeType":"ElementaryTypeName","src":"11482:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2436,"mutability":"mutable","name":"params","nameLocation":"11522:6:3","nodeType":"VariableDeclaration","scope":2441,"src":"11509:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2435,"name":"bytes","nodeType":"ElementaryTypeName","src":"11509:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"11447:87:3"},"returnParameters":{"id":2440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2439,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2441,"src":"11558:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2438,"name":"uint256","nodeType":"ElementaryTypeName","src":"11558:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11557:9:3"},"scope":2588,"src":"11420:147:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2442,"nodeType":"StructuredDocumentation","src":"11573:111:3","text":" @notice module:voting\n @dev Returns whether `account` has cast a vote on `proposalId`."},"functionSelector":"43859632","id":2451,"implemented":false,"kind":"function","modifiers":[],"name":"hasVoted","nameLocation":"11698:8:3","nodeType":"FunctionDefinition","parameters":{"id":2447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2444,"mutability":"mutable","name":"proposalId","nameLocation":"11715:10:3","nodeType":"VariableDeclaration","scope":2451,"src":"11707:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2443,"name":"uint256","nodeType":"ElementaryTypeName","src":"11707:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2446,"mutability":"mutable","name":"account","nameLocation":"11735:7:3","nodeType":"VariableDeclaration","scope":2451,"src":"11727:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2445,"name":"address","nodeType":"ElementaryTypeName","src":"11727:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11706:37:3"},"returnParameters":{"id":2450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2451,"src":"11767:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2448,"name":"bool","nodeType":"ElementaryTypeName","src":"11767:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"11766:6:3"},"scope":2588,"src":"11689:84:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2452,"nodeType":"StructuredDocumentation","src":"11779:746:3","text":" @dev Create a new proposal. Vote start after a delay specified by {IGovernor-votingDelay} and lasts for a\n duration specified by {IGovernor-votingPeriod}.\n Emits a {ProposalCreated} event.\n NOTE: The state of the Governor and `targets` may change between the proposal creation and its execution.\n This may be the result of third party actions on the targeted contracts, or other governor proposals.\n For example, the balance of this contract could be updated or its access control permissions may be modified,\n possibly compromising the proposal's ability to execute successfully (e.g. the governor doesn't have enough\n value to cover a proposal with multiple transfers)."},"functionSelector":"7d5e81e2","id":2468,"implemented":false,"kind":"function","modifiers":[],"name":"propose","nameLocation":"12539:7:3","nodeType":"FunctionDefinition","parameters":{"id":2464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2455,"mutability":"mutable","name":"targets","nameLocation":"12573:7:3","nodeType":"VariableDeclaration","scope":2468,"src":"12556:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2453,"name":"address","nodeType":"ElementaryTypeName","src":"12556:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2454,"nodeType":"ArrayTypeName","src":"12556:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2458,"mutability":"mutable","name":"values","nameLocation":"12607:6:3","nodeType":"VariableDeclaration","scope":2468,"src":"12590:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2456,"name":"uint256","nodeType":"ElementaryTypeName","src":"12590:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2457,"nodeType":"ArrayTypeName","src":"12590:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2461,"mutability":"mutable","name":"calldatas","nameLocation":"12638:9:3","nodeType":"VariableDeclaration","scope":2468,"src":"12623:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2459,"name":"bytes","nodeType":"ElementaryTypeName","src":"12623:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2460,"nodeType":"ArrayTypeName","src":"12623:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2463,"mutability":"mutable","name":"description","nameLocation":"12671:11:3","nodeType":"VariableDeclaration","scope":2468,"src":"12657:25:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2462,"name":"string","nodeType":"ElementaryTypeName","src":"12657:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"12546:142:3"},"returnParameters":{"id":2467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2466,"mutability":"mutable","name":"proposalId","nameLocation":"12715:10:3","nodeType":"VariableDeclaration","scope":2468,"src":"12707:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2465,"name":"uint256","nodeType":"ElementaryTypeName","src":"12707:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12706:20:3"},"scope":2588,"src":"12530:197:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2469,"nodeType":"StructuredDocumentation","src":"12733:347:3","text":" @dev Queue a proposal. Some governors require this step to be performed before execution can happen. If queuing\n is not necessary, this function may revert.\n Queuing a proposal requires the quorum to be reached, the vote to be successful, and the deadline to be reached.\n Emits a {ProposalQueued} event."},"functionSelector":"160cbed7","id":2485,"implemented":false,"kind":"function","modifiers":[],"name":"queue","nameLocation":"13094:5:3","nodeType":"FunctionDefinition","parameters":{"id":2481,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2472,"mutability":"mutable","name":"targets","nameLocation":"13126:7:3","nodeType":"VariableDeclaration","scope":2485,"src":"13109:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2470,"name":"address","nodeType":"ElementaryTypeName","src":"13109:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2471,"nodeType":"ArrayTypeName","src":"13109:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2475,"mutability":"mutable","name":"values","nameLocation":"13160:6:3","nodeType":"VariableDeclaration","scope":2485,"src":"13143:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2473,"name":"uint256","nodeType":"ElementaryTypeName","src":"13143:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2474,"nodeType":"ArrayTypeName","src":"13143:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2478,"mutability":"mutable","name":"calldatas","nameLocation":"13191:9:3","nodeType":"VariableDeclaration","scope":2485,"src":"13176:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2476,"name":"bytes","nodeType":"ElementaryTypeName","src":"13176:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2477,"nodeType":"ArrayTypeName","src":"13176:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2480,"mutability":"mutable","name":"descriptionHash","nameLocation":"13218:15:3","nodeType":"VariableDeclaration","scope":2485,"src":"13210:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2479,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13210:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13099:140:3"},"returnParameters":{"id":2484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2483,"mutability":"mutable","name":"proposalId","nameLocation":"13266:10:3","nodeType":"VariableDeclaration","scope":2485,"src":"13258:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2482,"name":"uint256","nodeType":"ElementaryTypeName","src":"13258:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13257:20:3"},"scope":2588,"src":"13085:193:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2486,"nodeType":"StructuredDocumentation","src":"13284:446:3","text":" @dev Execute a successful proposal. This requires the quorum to be reached, the vote to be successful, and the\n deadline to be reached. Depending on the governor it might also be required that the proposal was queued and\n that some delay passed.\n Emits a {ProposalExecuted} event.\n NOTE: Some modules can modify the requirements for execution, for example by adding an additional timelock."},"functionSelector":"2656227d","id":2502,"implemented":false,"kind":"function","modifiers":[],"name":"execute","nameLocation":"13744:7:3","nodeType":"FunctionDefinition","parameters":{"id":2498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2489,"mutability":"mutable","name":"targets","nameLocation":"13778:7:3","nodeType":"VariableDeclaration","scope":2502,"src":"13761:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2487,"name":"address","nodeType":"ElementaryTypeName","src":"13761:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2488,"nodeType":"ArrayTypeName","src":"13761:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2492,"mutability":"mutable","name":"values","nameLocation":"13812:6:3","nodeType":"VariableDeclaration","scope":2502,"src":"13795:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2490,"name":"uint256","nodeType":"ElementaryTypeName","src":"13795:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2491,"nodeType":"ArrayTypeName","src":"13795:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2495,"mutability":"mutable","name":"calldatas","nameLocation":"13843:9:3","nodeType":"VariableDeclaration","scope":2502,"src":"13828:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2493,"name":"bytes","nodeType":"ElementaryTypeName","src":"13828:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2494,"nodeType":"ArrayTypeName","src":"13828:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2497,"mutability":"mutable","name":"descriptionHash","nameLocation":"13870:15:3","nodeType":"VariableDeclaration","scope":2502,"src":"13862:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2496,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13862:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13751:140:3"},"returnParameters":{"id":2501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2500,"mutability":"mutable","name":"proposalId","nameLocation":"13926:10:3","nodeType":"VariableDeclaration","scope":2502,"src":"13918:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2499,"name":"uint256","nodeType":"ElementaryTypeName","src":"13918:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13917:20:3"},"scope":2588,"src":"13735:203:3","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":2503,"nodeType":"StructuredDocumentation","src":"13944:205:3","text":" @dev Cancel a proposal. A proposal is cancellable by the proposer, but only while it is Pending state, i.e.\n before the vote starts.\n Emits a {ProposalCanceled} event."},"functionSelector":"452115d6","id":2519,"implemented":false,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"14163:6:3","nodeType":"FunctionDefinition","parameters":{"id":2515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2506,"mutability":"mutable","name":"targets","nameLocation":"14196:7:3","nodeType":"VariableDeclaration","scope":2519,"src":"14179:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2504,"name":"address","nodeType":"ElementaryTypeName","src":"14179:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2505,"nodeType":"ArrayTypeName","src":"14179:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2509,"mutability":"mutable","name":"values","nameLocation":"14230:6:3","nodeType":"VariableDeclaration","scope":2519,"src":"14213:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2507,"name":"uint256","nodeType":"ElementaryTypeName","src":"14213:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2508,"nodeType":"ArrayTypeName","src":"14213:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2512,"mutability":"mutable","name":"calldatas","nameLocation":"14261:9:3","nodeType":"VariableDeclaration","scope":2519,"src":"14246:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2510,"name":"bytes","nodeType":"ElementaryTypeName","src":"14246:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2511,"nodeType":"ArrayTypeName","src":"14246:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2514,"mutability":"mutable","name":"descriptionHash","nameLocation":"14288:15:3","nodeType":"VariableDeclaration","scope":2519,"src":"14280:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2513,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14280:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14169:140:3"},"returnParameters":{"id":2518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2517,"mutability":"mutable","name":"proposalId","nameLocation":"14336:10:3","nodeType":"VariableDeclaration","scope":2519,"src":"14328:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2516,"name":"uint256","nodeType":"ElementaryTypeName","src":"14328:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14327:20:3"},"scope":2588,"src":"14154:194:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2520,"nodeType":"StructuredDocumentation","src":"14354:75:3","text":" @dev Cast a vote\n Emits a {VoteCast} event."},"functionSelector":"56781388","id":2529,"implemented":false,"kind":"function","modifiers":[],"name":"castVote","nameLocation":"14443:8:3","nodeType":"FunctionDefinition","parameters":{"id":2525,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2522,"mutability":"mutable","name":"proposalId","nameLocation":"14460:10:3","nodeType":"VariableDeclaration","scope":2529,"src":"14452:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2521,"name":"uint256","nodeType":"ElementaryTypeName","src":"14452:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2524,"mutability":"mutable","name":"support","nameLocation":"14478:7:3","nodeType":"VariableDeclaration","scope":2529,"src":"14472:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2523,"name":"uint8","nodeType":"ElementaryTypeName","src":"14472:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"14451:35:3"},"returnParameters":{"id":2528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2527,"mutability":"mutable","name":"balance","nameLocation":"14513:7:3","nodeType":"VariableDeclaration","scope":2529,"src":"14505:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2526,"name":"uint256","nodeType":"ElementaryTypeName","src":"14505:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14504:17:3"},"scope":2588,"src":"14434:88:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2530,"nodeType":"StructuredDocumentation","src":"14528:89:3","text":" @dev Cast a vote with a reason\n Emits a {VoteCast} event."},"functionSelector":"7b3c71d3","id":2541,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReason","nameLocation":"14631:18:3","nodeType":"FunctionDefinition","parameters":{"id":2537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2532,"mutability":"mutable","name":"proposalId","nameLocation":"14667:10:3","nodeType":"VariableDeclaration","scope":2541,"src":"14659:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2531,"name":"uint256","nodeType":"ElementaryTypeName","src":"14659:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2534,"mutability":"mutable","name":"support","nameLocation":"14693:7:3","nodeType":"VariableDeclaration","scope":2541,"src":"14687:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2533,"name":"uint8","nodeType":"ElementaryTypeName","src":"14687:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2536,"mutability":"mutable","name":"reason","nameLocation":"14726:6:3","nodeType":"VariableDeclaration","scope":2541,"src":"14710:22:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2535,"name":"string","nodeType":"ElementaryTypeName","src":"14710:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14649:89:3"},"returnParameters":{"id":2540,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2539,"mutability":"mutable","name":"balance","nameLocation":"14765:7:3","nodeType":"VariableDeclaration","scope":2541,"src":"14757:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2538,"name":"uint256","nodeType":"ElementaryTypeName","src":"14757:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14756:17:3"},"scope":2588,"src":"14622:152:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2542,"nodeType":"StructuredDocumentation","src":"14780:181:3","text":" @dev Cast a vote with a reason and additional encoded parameters\n Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params."},"functionSelector":"5f398a14","id":2555,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParams","nameLocation":"14975:27:3","nodeType":"FunctionDefinition","parameters":{"id":2551,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2544,"mutability":"mutable","name":"proposalId","nameLocation":"15020:10:3","nodeType":"VariableDeclaration","scope":2555,"src":"15012:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2543,"name":"uint256","nodeType":"ElementaryTypeName","src":"15012:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2546,"mutability":"mutable","name":"support","nameLocation":"15046:7:3","nodeType":"VariableDeclaration","scope":2555,"src":"15040:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2545,"name":"uint8","nodeType":"ElementaryTypeName","src":"15040:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2548,"mutability":"mutable","name":"reason","nameLocation":"15079:6:3","nodeType":"VariableDeclaration","scope":2555,"src":"15063:22:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2547,"name":"string","nodeType":"ElementaryTypeName","src":"15063:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2550,"mutability":"mutable","name":"params","nameLocation":"15108:6:3","nodeType":"VariableDeclaration","scope":2555,"src":"15095:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2549,"name":"bytes","nodeType":"ElementaryTypeName","src":"15095:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15002:118:3"},"returnParameters":{"id":2554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2553,"mutability":"mutable","name":"balance","nameLocation":"15147:7:3","nodeType":"VariableDeclaration","scope":2555,"src":"15139:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2552,"name":"uint256","nodeType":"ElementaryTypeName","src":"15139:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15138:17:3"},"scope":2588,"src":"14966:190:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2556,"nodeType":"StructuredDocumentation","src":"15162:142:3","text":" @dev Cast a vote using the voter's signature, including ERC-1271 signature support.\n Emits a {VoteCast} event."},"functionSelector":"8ff262e3","id":2569,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteBySig","nameLocation":"15318:13:3","nodeType":"FunctionDefinition","parameters":{"id":2565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2558,"mutability":"mutable","name":"proposalId","nameLocation":"15349:10:3","nodeType":"VariableDeclaration","scope":2569,"src":"15341:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2557,"name":"uint256","nodeType":"ElementaryTypeName","src":"15341:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2560,"mutability":"mutable","name":"support","nameLocation":"15375:7:3","nodeType":"VariableDeclaration","scope":2569,"src":"15369:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2559,"name":"uint8","nodeType":"ElementaryTypeName","src":"15369:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2562,"mutability":"mutable","name":"voter","nameLocation":"15400:5:3","nodeType":"VariableDeclaration","scope":2569,"src":"15392:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2561,"name":"address","nodeType":"ElementaryTypeName","src":"15392:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2564,"mutability":"mutable","name":"signature","nameLocation":"15428:9:3","nodeType":"VariableDeclaration","scope":2569,"src":"15415:22:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2563,"name":"bytes","nodeType":"ElementaryTypeName","src":"15415:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15331:112:3"},"returnParameters":{"id":2568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2567,"mutability":"mutable","name":"balance","nameLocation":"15470:7:3","nodeType":"VariableDeclaration","scope":2569,"src":"15462:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2566,"name":"uint256","nodeType":"ElementaryTypeName","src":"15462:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15461:17:3"},"scope":2588,"src":"15309:170:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2570,"nodeType":"StructuredDocumentation","src":"15485:255:3","text":" @dev Cast a vote with a reason and additional encoded parameters using the voter's signature,\n including ERC-1271 signature support.\n Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params."},"functionSelector":"5b8d0e0d","id":2587,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParamsBySig","nameLocation":"15754:32:3","nodeType":"FunctionDefinition","parameters":{"id":2583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2572,"mutability":"mutable","name":"proposalId","nameLocation":"15804:10:3","nodeType":"VariableDeclaration","scope":2587,"src":"15796:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2571,"name":"uint256","nodeType":"ElementaryTypeName","src":"15796:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2574,"mutability":"mutable","name":"support","nameLocation":"15830:7:3","nodeType":"VariableDeclaration","scope":2587,"src":"15824:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2573,"name":"uint8","nodeType":"ElementaryTypeName","src":"15824:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2576,"mutability":"mutable","name":"voter","nameLocation":"15855:5:3","nodeType":"VariableDeclaration","scope":2587,"src":"15847:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2575,"name":"address","nodeType":"ElementaryTypeName","src":"15847:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2578,"mutability":"mutable","name":"reason","nameLocation":"15886:6:3","nodeType":"VariableDeclaration","scope":2587,"src":"15870:22:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2577,"name":"string","nodeType":"ElementaryTypeName","src":"15870:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2580,"mutability":"mutable","name":"params","nameLocation":"15915:6:3","nodeType":"VariableDeclaration","scope":2587,"src":"15902:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2579,"name":"bytes","nodeType":"ElementaryTypeName","src":"15902:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2582,"mutability":"mutable","name":"signature","nameLocation":"15944:9:3","nodeType":"VariableDeclaration","scope":2587,"src":"15931:22:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2581,"name":"bytes","nodeType":"ElementaryTypeName","src":"15931:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15786:173:3"},"returnParameters":{"id":2586,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2585,"mutability":"mutable","name":"balance","nameLocation":"15986:7:3","nodeType":"VariableDeclaration","scope":2587,"src":"15978:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2584,"name":"uint256","nodeType":"ElementaryTypeName","src":"15978:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15977:17:3"},"scope":2588,"src":"15745:250:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2589,"src":"499:15498:3","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239],"usedEvents":[2264,2271,2276,2281,2294,2309]}],"src":"108:15890:3"},"id":3},"@openzeppelin/contracts/governance/TimelockController.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/TimelockController.sol","exportedSymbols":{"AccessControl":[295],"Address":[6688],"ERC1155Holder":[5632],"ERC721Holder":[6428],"TimelockController":[3608]},"id":3609,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2590,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"117:24:4"},{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","file":"../access/AccessControl.sol","id":2592,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3609,"sourceUnit":296,"src":"143:58:4","symbolAliases":[{"foreign":{"id":2591,"name":"AccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":295,"src":"151:13:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol","file":"../token/ERC721/utils/ERC721Holder.sol","id":2594,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3609,"sourceUnit":6429,"src":"202:68:4","symbolAliases":[{"foreign":{"id":2593,"name":"ERC721Holder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6428,"src":"210:12:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol","file":"../token/ERC1155/utils/ERC1155Holder.sol","id":2596,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3609,"sourceUnit":5633,"src":"271:71:4","symbolAliases":[{"foreign":{"id":2595,"name":"ERC1155Holder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5632,"src":"279:13:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../utils/Address.sol","id":2598,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3609,"sourceUnit":6689,"src":"343:45:4","symbolAliases":[{"foreign":{"id":2597,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"351:7:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2600,"name":"AccessControl","nameLocations":["1115:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":295,"src":"1115:13:4"},"id":2601,"nodeType":"InheritanceSpecifier","src":"1115:13:4"},{"baseName":{"id":2602,"name":"ERC721Holder","nameLocations":["1130:12:4"],"nodeType":"IdentifierPath","referencedDeclaration":6428,"src":"1130:12:4"},"id":2603,"nodeType":"InheritanceSpecifier","src":"1130:12:4"},{"baseName":{"id":2604,"name":"ERC1155Holder","nameLocations":["1144:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":5632,"src":"1144:13:4"},"id":2605,"nodeType":"InheritanceSpecifier","src":"1144:13:4"}],"canonicalName":"TimelockController","contractDependencies":[],"contractKind":"contract","documentation":{"id":2599,"nodeType":"StructuredDocumentation","src":"390:693:4","text":" @dev Contract module which acts as a timelocked controller. When set as the\n owner of an `Ownable` smart contract, it enforces a timelock on all\n `onlyOwner` maintenance operations. This gives time for users of the\n controlled contract to exit before a potentially dangerous maintenance\n operation is applied.\n By default, this contract is self administered, meaning administration tasks\n have to go through the timelock process. The proposer (resp executor) role\n is in charge of proposing (resp executing) operations. A common use case is\n to position this {TimelockController} as the owner of a smart contract, with\n a multisig or a DAO as the sole proposer."},"fullyImplemented":true,"id":3608,"linearizedBaseContracts":[3608,5632,5551,6428,6401,295,9182,9194,378,6718],"name":"TimelockController","nameLocation":"1093:18:4","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"8f61f4f5","id":2610,"mutability":"constant","name":"PROPOSER_ROLE","nameLocation":"1188:13:4","nodeType":"VariableDeclaration","scope":3608,"src":"1164:66:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2606,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1164:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"50524f504f5345525f524f4c45","id":2608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1214:15:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_b09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1","typeString":"literal_string \"PROPOSER_ROLE\""},"value":"PROPOSER_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_b09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1","typeString":"literal_string \"PROPOSER_ROLE\""}],"id":2607,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1204:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1204:26:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"07bd0265","id":2615,"mutability":"constant","name":"EXECUTOR_ROLE","nameLocation":"1260:13:4","nodeType":"VariableDeclaration","scope":3608,"src":"1236:66:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2611,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1236:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"4558454355544f525f524f4c45","id":2613,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1286:15:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63","typeString":"literal_string \"EXECUTOR_ROLE\""},"value":"EXECUTOR_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63","typeString":"literal_string \"EXECUTOR_ROLE\""}],"id":2612,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1276:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2614,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1276:26:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"b08e51c0","id":2620,"mutability":"constant","name":"CANCELLER_ROLE","nameLocation":"1332:14:4","nodeType":"VariableDeclaration","scope":3608,"src":"1308:68:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2616,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1308:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"43414e43454c4c45525f524f4c45","id":2618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1359:16:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_fd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f783","typeString":"literal_string \"CANCELLER_ROLE\""},"value":"CANCELLER_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_fd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f783","typeString":"literal_string \"CANCELLER_ROLE\""}],"id":2617,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1349:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1349:27:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"id":2626,"mutability":"constant","name":"_DONE_TIMESTAMP","nameLocation":"1408:15:4","nodeType":"VariableDeclaration","scope":3608,"src":"1382:54:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2621,"name":"uint256","nodeType":"ElementaryTypeName","src":"1382:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"arguments":[{"hexValue":"31","id":2624,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1434:1:4","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":2623,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1426:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2622,"name":"uint256","nodeType":"ElementaryTypeName","src":"1426:7:4","typeDescriptions":{}}},"id":2625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1426:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2630,"mutability":"mutable","name":"_timestamps","nameLocation":"1482:11:4","nodeType":"VariableDeclaration","scope":3608,"src":"1443:50:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"},"typeName":{"id":2629,"keyName":"id","keyNameLocation":"1459:2:4","keyType":{"id":2627,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1451:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"1443:30:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2628,"name":"uint256","nodeType":"ElementaryTypeName","src":"1465:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":2632,"mutability":"mutable","name":"_minDelay","nameLocation":"1515:9:4","nodeType":"VariableDeclaration","scope":3608,"src":"1499:25:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2631,"name":"uint256","nodeType":"ElementaryTypeName","src":"1499:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"canonicalName":"TimelockController.OperationState","id":2637,"members":[{"id":2633,"name":"Unset","nameLocation":"1561:5:4","nodeType":"EnumValue","src":"1561:5:4"},{"id":2634,"name":"Waiting","nameLocation":"1576:7:4","nodeType":"EnumValue","src":"1576:7:4"},{"id":2635,"name":"Ready","nameLocation":"1593:5:4","nodeType":"EnumValue","src":"1593:5:4"},{"id":2636,"name":"Done","nameLocation":"1608:4:4","nodeType":"EnumValue","src":"1608:4:4"}],"name":"OperationState","nameLocation":"1536:14:4","nodeType":"EnumDefinition","src":"1531:87:4"},{"documentation":{"id":2638,"nodeType":"StructuredDocumentation","src":"1624:85:4","text":" @dev Mismatch between the parameters length for an operation call."},"errorSelector":"ffb03211","id":2646,"name":"TimelockInvalidOperationLength","nameLocation":"1720:30:4","nodeType":"ErrorDefinition","parameters":{"id":2645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2640,"mutability":"mutable","name":"targets","nameLocation":"1759:7:4","nodeType":"VariableDeclaration","scope":2646,"src":"1751:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2639,"name":"uint256","nodeType":"ElementaryTypeName","src":"1751:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2642,"mutability":"mutable","name":"payloads","nameLocation":"1776:8:4","nodeType":"VariableDeclaration","scope":2646,"src":"1768:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2641,"name":"uint256","nodeType":"ElementaryTypeName","src":"1768:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2644,"mutability":"mutable","name":"values","nameLocation":"1794:6:4","nodeType":"VariableDeclaration","scope":2646,"src":"1786:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2643,"name":"uint256","nodeType":"ElementaryTypeName","src":"1786:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1750:51:4"},"src":"1714:88:4"},{"documentation":{"id":2647,"nodeType":"StructuredDocumentation","src":"1808:78:4","text":" @dev The schedule operation doesn't meet the minimum delay."},"errorSelector":"54336609","id":2653,"name":"TimelockInsufficientDelay","nameLocation":"1897:25:4","nodeType":"ErrorDefinition","parameters":{"id":2652,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2649,"mutability":"mutable","name":"delay","nameLocation":"1931:5:4","nodeType":"VariableDeclaration","scope":2653,"src":"1923:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2648,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2651,"mutability":"mutable","name":"minDelay","nameLocation":"1946:8:4","nodeType":"VariableDeclaration","scope":2653,"src":"1938:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2650,"name":"uint256","nodeType":"ElementaryTypeName","src":"1938:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1922:33:4"},"src":"1891:65:4"},{"documentation":{"id":2654,"nodeType":"StructuredDocumentation","src":"1962:253:4","text":" @dev The current state of an operation is not as required.\n The `expectedStates` is a bitmap with the bits enabled for each OperationState enum position\n counting from right to left.\n See {_encodeStateBitmap}."},"errorSelector":"5ead8eb5","id":2660,"name":"TimelockUnexpectedOperationState","nameLocation":"2226:32:4","nodeType":"ErrorDefinition","parameters":{"id":2659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2656,"mutability":"mutable","name":"operationId","nameLocation":"2267:11:4","nodeType":"VariableDeclaration","scope":2660,"src":"2259:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2655,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2259:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2658,"mutability":"mutable","name":"expectedStates","nameLocation":"2288:14:4","nodeType":"VariableDeclaration","scope":2660,"src":"2280:22:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2657,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2280:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2258:45:4"},"src":"2220:84:4"},{"documentation":{"id":2661,"nodeType":"StructuredDocumentation","src":"2310:69:4","text":" @dev The predecessor to an operation not yet done."},"errorSelector":"90a9a618","id":2665,"name":"TimelockUnexecutedPredecessor","nameLocation":"2390:29:4","nodeType":"ErrorDefinition","parameters":{"id":2664,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2663,"mutability":"mutable","name":"predecessorId","nameLocation":"2428:13:4","nodeType":"VariableDeclaration","scope":2665,"src":"2420:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2662,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2420:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2419:23:4"},"src":"2384:59:4"},{"documentation":{"id":2666,"nodeType":"StructuredDocumentation","src":"2449:61:4","text":" @dev The caller account is not authorized."},"errorSelector":"e2850c59","id":2670,"name":"TimelockUnauthorizedCaller","nameLocation":"2521:26:4","nodeType":"ErrorDefinition","parameters":{"id":2669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2668,"mutability":"mutable","name":"caller","nameLocation":"2556:6:4","nodeType":"VariableDeclaration","scope":2670,"src":"2548:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2667,"name":"address","nodeType":"ElementaryTypeName","src":"2548:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2547:16:4"},"src":"2515:49:4"},{"anonymous":false,"documentation":{"id":2671,"nodeType":"StructuredDocumentation","src":"2570:83:4","text":" @dev Emitted when a call is scheduled as part of operation `id`."},"eventSelector":"4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca","id":2687,"name":"CallScheduled","nameLocation":"2664:13:4","nodeType":"EventDefinition","parameters":{"id":2686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2673,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"2703:2:4","nodeType":"VariableDeclaration","scope":2687,"src":"2687:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2672,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2687:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2675,"indexed":true,"mutability":"mutable","name":"index","nameLocation":"2731:5:4","nodeType":"VariableDeclaration","scope":2687,"src":"2715:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2674,"name":"uint256","nodeType":"ElementaryTypeName","src":"2715:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2677,"indexed":false,"mutability":"mutable","name":"target","nameLocation":"2754:6:4","nodeType":"VariableDeclaration","scope":2687,"src":"2746:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2676,"name":"address","nodeType":"ElementaryTypeName","src":"2746:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2679,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"2778:5:4","nodeType":"VariableDeclaration","scope":2687,"src":"2770:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2678,"name":"uint256","nodeType":"ElementaryTypeName","src":"2770:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2681,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"2799:4:4","nodeType":"VariableDeclaration","scope":2687,"src":"2793:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2680,"name":"bytes","nodeType":"ElementaryTypeName","src":"2793:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2683,"indexed":false,"mutability":"mutable","name":"predecessor","nameLocation":"2821:11:4","nodeType":"VariableDeclaration","scope":2687,"src":"2813:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2682,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2813:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2685,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2850:5:4","nodeType":"VariableDeclaration","scope":2687,"src":"2842:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2684,"name":"uint256","nodeType":"ElementaryTypeName","src":"2842:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2677:184:4"},"src":"2658:204:4"},{"anonymous":false,"documentation":{"id":2688,"nodeType":"StructuredDocumentation","src":"2868:83:4","text":" @dev Emitted when a call is performed as part of operation `id`."},"eventSelector":"c2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58","id":2700,"name":"CallExecuted","nameLocation":"2962:12:4","nodeType":"EventDefinition","parameters":{"id":2699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2690,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"2991:2:4","nodeType":"VariableDeclaration","scope":2700,"src":"2975:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2689,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2975:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2692,"indexed":true,"mutability":"mutable","name":"index","nameLocation":"3011:5:4","nodeType":"VariableDeclaration","scope":2700,"src":"2995:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2691,"name":"uint256","nodeType":"ElementaryTypeName","src":"2995:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2694,"indexed":false,"mutability":"mutable","name":"target","nameLocation":"3026:6:4","nodeType":"VariableDeclaration","scope":2700,"src":"3018:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2693,"name":"address","nodeType":"ElementaryTypeName","src":"3018:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2696,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"3042:5:4","nodeType":"VariableDeclaration","scope":2700,"src":"3034:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2695,"name":"uint256","nodeType":"ElementaryTypeName","src":"3034:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2698,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"3055:4:4","nodeType":"VariableDeclaration","scope":2700,"src":"3049:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2697,"name":"bytes","nodeType":"ElementaryTypeName","src":"3049:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2974:86:4"},"src":"2956:105:4"},{"anonymous":false,"documentation":{"id":2701,"nodeType":"StructuredDocumentation","src":"3067:82:4","text":" @dev Emitted when new proposal is scheduled with non-zero salt."},"eventSelector":"20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d0387","id":2707,"name":"CallSalt","nameLocation":"3160:8:4","nodeType":"EventDefinition","parameters":{"id":2706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2703,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"3185:2:4","nodeType":"VariableDeclaration","scope":2707,"src":"3169:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2702,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3169:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2705,"indexed":false,"mutability":"mutable","name":"salt","nameLocation":"3197:4:4","nodeType":"VariableDeclaration","scope":2707,"src":"3189:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2704,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3189:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3168:34:4"},"src":"3154:49:4"},{"anonymous":false,"documentation":{"id":2708,"nodeType":"StructuredDocumentation","src":"3209:65:4","text":" @dev Emitted when operation `id` is cancelled."},"eventSelector":"baa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb70","id":2712,"name":"Cancelled","nameLocation":"3285:9:4","nodeType":"EventDefinition","parameters":{"id":2711,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2710,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"3311:2:4","nodeType":"VariableDeclaration","scope":2712,"src":"3295:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2709,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3295:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3294:20:4"},"src":"3279:36:4"},{"anonymous":false,"documentation":{"id":2713,"nodeType":"StructuredDocumentation","src":"3321:89:4","text":" @dev Emitted when the minimum delay for future operations is modified."},"eventSelector":"11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5","id":2719,"name":"MinDelayChange","nameLocation":"3421:14:4","nodeType":"EventDefinition","parameters":{"id":2718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2715,"indexed":false,"mutability":"mutable","name":"oldDuration","nameLocation":"3444:11:4","nodeType":"VariableDeclaration","scope":2719,"src":"3436:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2714,"name":"uint256","nodeType":"ElementaryTypeName","src":"3436:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2717,"indexed":false,"mutability":"mutable","name":"newDuration","nameLocation":"3465:11:4","nodeType":"VariableDeclaration","scope":2719,"src":"3457:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2716,"name":"uint256","nodeType":"ElementaryTypeName","src":"3457:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3435:42:4"},"src":"3415:63:4"},{"body":{"id":2810,"nodeType":"Block","src":"4349:660:4","statements":[{"expression":{"arguments":[{"id":2734,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"4401:18:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"id":2737,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4429:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":2736,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4421:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2735,"name":"address","nodeType":"ElementaryTypeName","src":"4421:7:4","typeDescriptions":{}}},"id":2738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4421:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2733,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4390:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4390:45:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2740,"nodeType":"ExpressionStatement","src":"4390:45:4"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2741,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2730,"src":"4476:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2744,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4493:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2743,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4485:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2742,"name":"address","nodeType":"ElementaryTypeName","src":"4485:7:4","typeDescriptions":{}}},"id":2745,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4485:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4476:19:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2753,"nodeType":"IfStatement","src":"4472:87:4","trueBody":{"id":2752,"nodeType":"Block","src":"4497:62:4","statements":[{"expression":{"arguments":[{"id":2748,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"4522:18:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2749,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2730,"src":"4542:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2747,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4511:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4511:37:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2751,"nodeType":"ExpressionStatement","src":"4511:37:4"}]}},{"body":{"id":2779,"nodeType":"Block","src":"4661:118:4","statements":[{"expression":{"arguments":[{"id":2766,"name":"PROPOSER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2610,"src":"4686:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":2767,"name":"proposers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2725,"src":"4701:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2769,"indexExpression":{"id":2768,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2755,"src":"4711:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4701:12:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2765,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4675:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2770,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4675:39:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2771,"nodeType":"ExpressionStatement","src":"4675:39:4"},{"expression":{"arguments":[{"id":2773,"name":"CANCELLER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2620,"src":"4739:14:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":2774,"name":"proposers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2725,"src":"4755:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2776,"indexExpression":{"id":2775,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2755,"src":"4765:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4755:12:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2772,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4728:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2777,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4728:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2778,"nodeType":"ExpressionStatement","src":"4728:40:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2758,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2755,"src":"4634:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2759,"name":"proposers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2725,"src":"4638:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4648:6:4","memberName":"length","nodeType":"MemberAccess","src":"4638:16:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4634:20:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2780,"initializationExpression":{"assignments":[2755],"declarations":[{"constant":false,"id":2755,"mutability":"mutable","name":"i","nameLocation":"4627:1:4","nodeType":"VariableDeclaration","scope":2780,"src":"4619:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2754,"name":"uint256","nodeType":"ElementaryTypeName","src":"4619:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2757,"initialValue":{"hexValue":"30","id":2756,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4631:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4619:13:4"},"loopExpression":{"expression":{"id":2763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"4656:3:4","subExpression":{"id":2762,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2755,"src":"4658:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2764,"nodeType":"ExpressionStatement","src":"4656:3:4"},"nodeType":"ForStatement","src":"4614:165:4"},{"body":{"id":2799,"nodeType":"Block","src":"4866:64:4","statements":[{"expression":{"arguments":[{"id":2793,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"4891:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":2794,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2728,"src":"4906:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2796,"indexExpression":{"id":2795,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2782,"src":"4916:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4906:12:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2792,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4880:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:39:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2798,"nodeType":"ExpressionStatement","src":"4880:39:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2785,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2782,"src":"4839:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2786,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2728,"src":"4843:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4853:6:4","memberName":"length","nodeType":"MemberAccess","src":"4843:16:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4839:20:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2800,"initializationExpression":{"assignments":[2782],"declarations":[{"constant":false,"id":2782,"mutability":"mutable","name":"i","nameLocation":"4832:1:4","nodeType":"VariableDeclaration","scope":2800,"src":"4824:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2781,"name":"uint256","nodeType":"ElementaryTypeName","src":"4824:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2784,"initialValue":{"hexValue":"30","id":2783,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4836:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4824:13:4"},"loopExpression":{"expression":{"id":2790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"4861:3:4","subExpression":{"id":2789,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2782,"src":"4863:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2791,"nodeType":"ExpressionStatement","src":"4861:3:4"},"nodeType":"ForStatement","src":"4819:111:4"},{"expression":{"id":2803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2801,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"4940:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2802,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2722,"src":"4952:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4940:20:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2804,"nodeType":"ExpressionStatement","src":"4940:20:4"},{"eventCall":{"arguments":[{"hexValue":"30","id":2806,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4990:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":2807,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2722,"src":"4993:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2805,"name":"MinDelayChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2719,"src":"4975:14:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":2808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4975:27:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2809,"nodeType":"EmitStatement","src":"4970:32:4"}]},"documentation":{"id":2720,"nodeType":"StructuredDocumentation","src":"3484:759:4","text":" @dev Initializes the contract with the following parameters:\n - `minDelay`: initial minimum delay in seconds for operations\n - `proposers`: accounts to be granted proposer and canceller roles\n - `executors`: accounts to be granted executor role\n - `admin`: optional account to be granted admin role; disable with zero address\n IMPORTANT: The optional admin can aid with initial configuration of roles after deployment\n without being subject to delay, but this role should be subsequently renounced in favor of\n administration through timelocked proposals. Previous versions of this contract would assign\n this admin to the deployer automatically and should be renounced as well."},"id":2811,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2722,"mutability":"mutable","name":"minDelay","nameLocation":"4268:8:4","nodeType":"VariableDeclaration","scope":2811,"src":"4260:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2721,"name":"uint256","nodeType":"ElementaryTypeName","src":"4260:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2725,"mutability":"mutable","name":"proposers","nameLocation":"4295:9:4","nodeType":"VariableDeclaration","scope":2811,"src":"4278:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2723,"name":"address","nodeType":"ElementaryTypeName","src":"4278:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2724,"nodeType":"ArrayTypeName","src":"4278:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2728,"mutability":"mutable","name":"executors","nameLocation":"4323:9:4","nodeType":"VariableDeclaration","scope":2811,"src":"4306:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2726,"name":"address","nodeType":"ElementaryTypeName","src":"4306:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2727,"nodeType":"ArrayTypeName","src":"4306:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2730,"mutability":"mutable","name":"admin","nameLocation":"4342:5:4","nodeType":"VariableDeclaration","scope":2811,"src":"4334:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2729,"name":"address","nodeType":"ElementaryTypeName","src":"4334:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4259:89:4"},"returnParameters":{"id":2732,"nodeType":"ParameterList","parameters":[],"src":"4349:0:4"},"scope":3608,"src":"4248:761:4","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":2833,"nodeType":"Block","src":"5333:114:4","statements":[{"condition":{"id":2823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5347:26:4","subExpression":{"arguments":[{"id":2817,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2814,"src":"5356:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"hexValue":"30","id":2820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5370:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5362:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2818,"name":"address","nodeType":"ElementaryTypeName","src":"5362:7:4","typeDescriptions":{}}},"id":2821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5362:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2816,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":80,"src":"5348:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":2822,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5348:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2831,"nodeType":"IfStatement","src":"5343:87:4","trueBody":{"id":2830,"nodeType":"Block","src":"5375:55:4","statements":[{"expression":{"arguments":[{"id":2825,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2814,"src":"5400:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":2826,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"5406:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5406:12:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2824,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[93,114],"referencedDeclaration":114,"src":"5389:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address) view"}},"id":2828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:30:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2829,"nodeType":"ExpressionStatement","src":"5389:30:4"}]}},{"id":2832,"nodeType":"PlaceholderStatement","src":"5439:1:4"}]},"documentation":{"id":2812,"nodeType":"StructuredDocumentation","src":"5015:271:4","text":" @dev Modifier to make a function callable only by a certain role. In\n addition to checking the sender's role, `address(0)` 's role is also\n considered. Granting a role to `address(0)` is equivalent to enabling\n this role for everyone."},"id":2834,"name":"onlyRoleOrOpenRole","nameLocation":"5300:18:4","nodeType":"ModifierDefinition","parameters":{"id":2815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2814,"mutability":"mutable","name":"role","nameLocation":"5327:4:4","nodeType":"VariableDeclaration","scope":2834,"src":"5319:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2813,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5319:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5318:14:4"},"src":"5291:156:4","virtual":false,"visibility":"internal"},{"body":{"id":2838,"nodeType":"Block","src":"5576:2:4","statements":[]},"documentation":{"id":2835,"nodeType":"StructuredDocumentation","src":"5453:91:4","text":" @dev Contract might receive/hold ETH as part of the maintenance process."},"id":2839,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2836,"nodeType":"ParameterList","parameters":[],"src":"5556:2:4"},"returnParameters":{"id":2837,"nodeType":"ParameterList","parameters":[],"src":"5576:0:4"},"scope":3608,"src":"5549:29:4","stateMutability":"payable","virtual":false,"visibility":"external"},{"baseFunctions":[62,5587],"body":{"id":2855,"nodeType":"Block","src":"5780:60:4","statements":[{"expression":{"arguments":[{"id":2852,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2842,"src":"5821:11:4","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":2850,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5797:5:4","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TimelockController_$3608_$","typeString":"type(contract super TimelockController)"}},"id":2851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5803:17:4","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":5587,"src":"5797:23:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":2853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5797:36:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2849,"id":2854,"nodeType":"Return","src":"5790:43:4"}]},"documentation":{"id":2840,"nodeType":"StructuredDocumentation","src":"5584:56:4","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":2856,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"5654:17:4","nodeType":"FunctionDefinition","overrides":{"id":2846,"nodeType":"OverrideSpecifier","overrides":[{"id":2844,"name":"AccessControl","nameLocations":["5735:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":295,"src":"5735:13:4"},{"id":2845,"name":"ERC1155Holder","nameLocations":["5750:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":5632,"src":"5750:13:4"}],"src":"5726:38:4"},"parameters":{"id":2843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2842,"mutability":"mutable","name":"interfaceId","nameLocation":"5688:11:4","nodeType":"VariableDeclaration","scope":2856,"src":"5681:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2841,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5681:6:4","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5671:34:4"},"returnParameters":{"id":2849,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2848,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2856,"src":"5774:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2847,"name":"bool","nodeType":"ElementaryTypeName","src":"5774:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5773:6:4"},"scope":3608,"src":"5645:195:4","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2871,"nodeType":"Block","src":"6058:69:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"id":2869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2865,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2859,"src":"6093:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2864,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"6075:17:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2637_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":2866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6075:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":2867,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"6100:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2868,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6115:5:4","memberName":"Unset","nodeType":"MemberAccess","referencedDeclaration":2633,"src":"6100:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"src":"6075:45:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2863,"id":2870,"nodeType":"Return","src":"6068:52:4"}]},"documentation":{"id":2857,"nodeType":"StructuredDocumentation","src":"5846:147:4","text":" @dev Returns whether an id corresponds to a registered operation. This\n includes both Waiting, Ready, and Done operations."},"functionSelector":"31d50750","id":2872,"implemented":true,"kind":"function","modifiers":[],"name":"isOperation","nameLocation":"6007:11:4","nodeType":"FunctionDefinition","parameters":{"id":2860,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2859,"mutability":"mutable","name":"id","nameLocation":"6027:2:4","nodeType":"VariableDeclaration","scope":2872,"src":"6019:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2858,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6019:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6018:12:4"},"returnParameters":{"id":2863,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2862,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2872,"src":"6052:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2861,"name":"bool","nodeType":"ElementaryTypeName","src":"6052:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6051:6:4"},"scope":3608,"src":"5998:129:4","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2897,"nodeType":"Block","src":"6329:142:4","statements":[{"assignments":[2882],"declarations":[{"constant":false,"id":2882,"mutability":"mutable","name":"state","nameLocation":"6354:5:4","nodeType":"VariableDeclaration","scope":2897,"src":"6339:20:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"typeName":{"id":2881,"nodeType":"UserDefinedTypeName","pathNode":{"id":2880,"name":"OperationState","nameLocations":["6339:14:4"],"nodeType":"IdentifierPath","referencedDeclaration":2637,"src":"6339:14:4"},"referencedDeclaration":2637,"src":"6339:14:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"visibility":"internal"}],"id":2886,"initialValue":{"arguments":[{"id":2884,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2875,"src":"6380:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2883,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"6362:17:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2637_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":2885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6362:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"VariableDeclarationStatement","src":"6339:44:4"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"id":2890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2887,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2882,"src":"6400:5:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2888,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"6409:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2889,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6424:7:4","memberName":"Waiting","nodeType":"MemberAccess","referencedDeclaration":2634,"src":"6409:22:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"src":"6400:31:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"id":2894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2891,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2882,"src":"6435:5:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2892,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"6444:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2893,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6459:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"6444:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"src":"6435:29:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6400:64:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2879,"id":2896,"nodeType":"Return","src":"6393:71:4"}]},"documentation":{"id":2873,"nodeType":"StructuredDocumentation","src":"6133:124:4","text":" @dev Returns whether an operation is pending or not. Note that a \"pending\" operation may also be \"ready\"."},"functionSelector":"584b153e","id":2898,"implemented":true,"kind":"function","modifiers":[],"name":"isOperationPending","nameLocation":"6271:18:4","nodeType":"FunctionDefinition","parameters":{"id":2876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2875,"mutability":"mutable","name":"id","nameLocation":"6298:2:4","nodeType":"VariableDeclaration","scope":2898,"src":"6290:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2874,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6290:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6289:12:4"},"returnParameters":{"id":2879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2878,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2898,"src":"6323:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2877,"name":"bool","nodeType":"ElementaryTypeName","src":"6323:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6322:6:4"},"scope":3608,"src":"6262:209:4","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2913,"nodeType":"Block","src":"6672:69:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"id":2911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2907,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2901,"src":"6707:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2906,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"6689:17:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2637_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":2908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6689:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2909,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"6714:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6729:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"6714:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"src":"6689:45:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2905,"id":2912,"nodeType":"Return","src":"6682:52:4"}]},"documentation":{"id":2899,"nodeType":"StructuredDocumentation","src":"6477:125:4","text":" @dev Returns whether an operation is ready for execution. Note that a \"ready\" operation is also \"pending\"."},"functionSelector":"13bc9f20","id":2914,"implemented":true,"kind":"function","modifiers":[],"name":"isOperationReady","nameLocation":"6616:16:4","nodeType":"FunctionDefinition","parameters":{"id":2902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2901,"mutability":"mutable","name":"id","nameLocation":"6641:2:4","nodeType":"VariableDeclaration","scope":2914,"src":"6633:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2900,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6633:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6632:12:4"},"returnParameters":{"id":2905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2914,"src":"6666:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2903,"name":"bool","nodeType":"ElementaryTypeName","src":"6666:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6665:6:4"},"scope":3608,"src":"6607:134:4","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2929,"nodeType":"Block","src":"6884:68:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"id":2927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2923,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2917,"src":"6919:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2922,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"6901:17:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2637_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":2924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6901:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2925,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"6926:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2926,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6941:4:4","memberName":"Done","nodeType":"MemberAccess","referencedDeclaration":2636,"src":"6926:19:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"src":"6901:44:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2921,"id":2928,"nodeType":"Return","src":"6894:51:4"}]},"documentation":{"id":2915,"nodeType":"StructuredDocumentation","src":"6747:68:4","text":" @dev Returns whether an operation is done or not."},"functionSelector":"2ab0f529","id":2930,"implemented":true,"kind":"function","modifiers":[],"name":"isOperationDone","nameLocation":"6829:15:4","nodeType":"FunctionDefinition","parameters":{"id":2918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2917,"mutability":"mutable","name":"id","nameLocation":"6853:2:4","nodeType":"VariableDeclaration","scope":2930,"src":"6845:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2916,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6845:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6844:12:4"},"returnParameters":{"id":2921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2920,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2930,"src":"6878:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2919,"name":"bool","nodeType":"ElementaryTypeName","src":"6878:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6877:6:4"},"scope":3608,"src":"6820:132:4","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2942,"nodeType":"Block","src":"7172:39:4","statements":[{"expression":{"baseExpression":{"id":2938,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2630,"src":"7189:11:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":2940,"indexExpression":{"id":2939,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2933,"src":"7201:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7189:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2937,"id":2941,"nodeType":"Return","src":"7182:22:4"}]},"documentation":{"id":2931,"nodeType":"StructuredDocumentation","src":"6958:137:4","text":" @dev Returns the timestamp at which an operation becomes ready (0 for\n unset operations, 1 for done operations)."},"functionSelector":"d45c4435","id":2943,"implemented":true,"kind":"function","modifiers":[],"name":"getTimestamp","nameLocation":"7109:12:4","nodeType":"FunctionDefinition","parameters":{"id":2934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2933,"mutability":"mutable","name":"id","nameLocation":"7130:2:4","nodeType":"VariableDeclaration","scope":2943,"src":"7122:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2932,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7122:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7121:12:4"},"returnParameters":{"id":2937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2936,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2943,"src":"7163:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2935,"name":"uint256","nodeType":"ElementaryTypeName","src":"7163:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7162:9:4"},"scope":3608,"src":"7100:111:4","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2987,"nodeType":"Block","src":"7354:376:4","statements":[{"assignments":[2953],"declarations":[{"constant":false,"id":2953,"mutability":"mutable","name":"timestamp","nameLocation":"7372:9:4","nodeType":"VariableDeclaration","scope":2987,"src":"7364:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2952,"name":"uint256","nodeType":"ElementaryTypeName","src":"7364:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2957,"initialValue":{"arguments":[{"id":2955,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2946,"src":"7397:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2954,"name":"getTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2943,"src":"7384:12:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) view returns (uint256)"}},"id":2956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7384:16:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7364:36:4"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2958,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2953,"src":"7414:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2959,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7427:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7414:14:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2965,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2953,"src":"7492:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2966,"name":"_DONE_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2626,"src":"7505:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7492:28:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2972,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2953,"src":"7583:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":2973,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7595:5:4","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7601:9:4","memberName":"timestamp","nodeType":"MemberAccess","src":"7595:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7583:27:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2983,"nodeType":"Block","src":"7672:52:4","statements":[{"expression":{"expression":{"id":2980,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"7693:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2981,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7708:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"7693:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":2951,"id":2982,"nodeType":"Return","src":"7686:27:4"}]},"id":2984,"nodeType":"IfStatement","src":"7579:145:4","trueBody":{"id":2979,"nodeType":"Block","src":"7612:54:4","statements":[{"expression":{"expression":{"id":2976,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"7633:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7648:7:4","memberName":"Waiting","nodeType":"MemberAccess","referencedDeclaration":2634,"src":"7633:22:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":2951,"id":2978,"nodeType":"Return","src":"7626:29:4"}]}},"id":2985,"nodeType":"IfStatement","src":"7488:236:4","trueBody":{"id":2971,"nodeType":"Block","src":"7522:51:4","statements":[{"expression":{"expression":{"id":2968,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"7543:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7558:4:4","memberName":"Done","nodeType":"MemberAccess","referencedDeclaration":2636,"src":"7543:19:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":2951,"id":2970,"nodeType":"Return","src":"7536:26:4"}]}},"id":2986,"nodeType":"IfStatement","src":"7410:314:4","trueBody":{"id":2964,"nodeType":"Block","src":"7430:52:4","statements":[{"expression":{"expression":{"id":2961,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"7451:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":2962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7466:5:4","memberName":"Unset","nodeType":"MemberAccess","referencedDeclaration":2633,"src":"7451:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":2951,"id":2963,"nodeType":"Return","src":"7444:27:4"}]}}]},"documentation":{"id":2944,"nodeType":"StructuredDocumentation","src":"7217:48:4","text":" @dev Returns operation state."},"functionSelector":"7958004c","id":2988,"implemented":true,"kind":"function","modifiers":[],"name":"getOperationState","nameLocation":"7279:17:4","nodeType":"FunctionDefinition","parameters":{"id":2947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2946,"mutability":"mutable","name":"id","nameLocation":"7305:2:4","nodeType":"VariableDeclaration","scope":2988,"src":"7297:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2945,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7297:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7296:12:4"},"returnParameters":{"id":2951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2950,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2988,"src":"7338:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"typeName":{"id":2949,"nodeType":"UserDefinedTypeName","pathNode":{"id":2948,"name":"OperationState","nameLocations":["7338:14:4"],"nodeType":"IdentifierPath","referencedDeclaration":2637,"src":"7338:14:4"},"referencedDeclaration":2637,"src":"7338:14:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"visibility":"internal"}],"src":"7337:16:4"},"scope":3608,"src":"7270:460:4","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2996,"nodeType":"Block","src":"7988:33:4","statements":[{"expression":{"id":2994,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"8005:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2993,"id":2995,"nodeType":"Return","src":"7998:16:4"}]},"documentation":{"id":2989,"nodeType":"StructuredDocumentation","src":"7736:186:4","text":" @dev Returns the minimum delay in seconds for an operation to become valid.\n This value can be changed by executing an operation that calls `updateDelay`."},"functionSelector":"f27a0c92","id":2997,"implemented":true,"kind":"function","modifiers":[],"name":"getMinDelay","nameLocation":"7936:11:4","nodeType":"FunctionDefinition","parameters":{"id":2990,"nodeType":"ParameterList","parameters":[],"src":"7947:2:4"},"returnParameters":{"id":2993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2992,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2997,"src":"7979:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2991,"name":"uint256","nodeType":"ElementaryTypeName","src":"7979:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7978:9:4"},"scope":3608,"src":"7927:94:4","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3024,"nodeType":"Block","src":"8328:85:4","statements":[{"expression":{"arguments":[{"arguments":[{"id":3016,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3000,"src":"8366:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3017,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3002,"src":"8374:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3018,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3004,"src":"8381:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3019,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3006,"src":"8387:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3020,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3008,"src":"8400:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":3014,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"8355:3:4","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3015,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8359:6:4","memberName":"encode","nodeType":"MemberAccess","src":"8355:10:4","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8355:50:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3013,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"8345:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3022,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8345:61:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3012,"id":3023,"nodeType":"Return","src":"8338:68:4"}]},"documentation":{"id":2998,"nodeType":"StructuredDocumentation","src":"8027:102:4","text":" @dev Returns the identifier of an operation containing a single\n transaction."},"functionSelector":"8065657f","id":3025,"implemented":true,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"8143:13:4","nodeType":"FunctionDefinition","parameters":{"id":3009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3000,"mutability":"mutable","name":"target","nameLocation":"8174:6:4","nodeType":"VariableDeclaration","scope":3025,"src":"8166:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2999,"name":"address","nodeType":"ElementaryTypeName","src":"8166:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3002,"mutability":"mutable","name":"value","nameLocation":"8198:5:4","nodeType":"VariableDeclaration","scope":3025,"src":"8190:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3001,"name":"uint256","nodeType":"ElementaryTypeName","src":"8190:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3004,"mutability":"mutable","name":"data","nameLocation":"8228:4:4","nodeType":"VariableDeclaration","scope":3025,"src":"8213:19:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3003,"name":"bytes","nodeType":"ElementaryTypeName","src":"8213:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3006,"mutability":"mutable","name":"predecessor","nameLocation":"8250:11:4","nodeType":"VariableDeclaration","scope":3025,"src":"8242:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3005,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8242:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3008,"mutability":"mutable","name":"salt","nameLocation":"8279:4:4","nodeType":"VariableDeclaration","scope":3025,"src":"8271:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3007,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8271:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8156:133:4"},"returnParameters":{"id":3012,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3011,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3025,"src":"8319:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3010,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8319:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8318:9:4"},"scope":3608,"src":"8134:279:4","stateMutability":"pure","virtual":true,"visibility":"public"},{"body":{"id":3055,"nodeType":"Block","src":"8758:91:4","statements":[{"expression":{"arguments":[{"arguments":[{"id":3047,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3029,"src":"8796:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},{"id":3048,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3032,"src":"8805:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},{"id":3049,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3035,"src":"8813:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},{"id":3050,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3037,"src":"8823:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3051,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3039,"src":"8836:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"},{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"},{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":3045,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"8785:3:4","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3046,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8789:6:4","memberName":"encode","nodeType":"MemberAccess","src":"8785:10:4","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8785:56:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3044,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"8775:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8775:67:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3043,"id":3054,"nodeType":"Return","src":"8768:74:4"}]},"documentation":{"id":3026,"nodeType":"StructuredDocumentation","src":"8419:105:4","text":" @dev Returns the identifier of an operation containing a batch of\n transactions."},"functionSelector":"b1c5f427","id":3056,"implemented":true,"kind":"function","modifiers":[],"name":"hashOperationBatch","nameLocation":"8538:18:4","nodeType":"FunctionDefinition","parameters":{"id":3040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3029,"mutability":"mutable","name":"targets","nameLocation":"8585:7:4","nodeType":"VariableDeclaration","scope":3056,"src":"8566:26:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3027,"name":"address","nodeType":"ElementaryTypeName","src":"8566:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3028,"nodeType":"ArrayTypeName","src":"8566:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":3032,"mutability":"mutable","name":"values","nameLocation":"8621:6:4","nodeType":"VariableDeclaration","scope":3056,"src":"8602:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3030,"name":"uint256","nodeType":"ElementaryTypeName","src":"8602:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3031,"nodeType":"ArrayTypeName","src":"8602:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3035,"mutability":"mutable","name":"payloads","nameLocation":"8654:8:4","nodeType":"VariableDeclaration","scope":3056,"src":"8637:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3033,"name":"bytes","nodeType":"ElementaryTypeName","src":"8637:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3034,"nodeType":"ArrayTypeName","src":"8637:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":3037,"mutability":"mutable","name":"predecessor","nameLocation":"8680:11:4","nodeType":"VariableDeclaration","scope":3056,"src":"8672:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3036,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8672:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3039,"mutability":"mutable","name":"salt","nameLocation":"8709:4:4","nodeType":"VariableDeclaration","scope":3056,"src":"8701:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3038,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8701:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8556:163:4"},"returnParameters":{"id":3043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3042,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3056,"src":"8749:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3041,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8749:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8748:9:4"},"scope":3608,"src":"8529:320:4","stateMutability":"pure","virtual":true,"visibility":"public"},{"body":{"id":3113,"nodeType":"Block","src":"9309:270:4","statements":[{"assignments":[3076],"declarations":[{"constant":false,"id":3076,"mutability":"mutable","name":"id","nameLocation":"9327:2:4","nodeType":"VariableDeclaration","scope":3113,"src":"9319:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3075,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9319:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3084,"initialValue":{"arguments":[{"id":3078,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3059,"src":"9346:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3079,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3061,"src":"9354:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3080,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3063,"src":"9361:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3081,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3065,"src":"9367:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3082,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3067,"src":"9380:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3077,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3025,"src":"9332:13:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (address,uint256,bytes calldata,bytes32,bytes32) pure returns (bytes32)"}},"id":3083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9332:53:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"9319:66:4"},{"expression":{"arguments":[{"id":3086,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3076,"src":"9405:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3087,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3069,"src":"9409:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3085,"name":"_schedule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3262,"src":"9395:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256)"}},"id":3088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9395:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3089,"nodeType":"ExpressionStatement","src":"9395:20:4"},{"eventCall":{"arguments":[{"id":3091,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3076,"src":"9444:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"hexValue":"30","id":3092,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9448:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":3093,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3059,"src":"9451:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3094,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3061,"src":"9459:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3095,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3063,"src":"9466:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3096,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3065,"src":"9472:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3097,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3069,"src":"9485:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3090,"name":"CallScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"9430:13:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256,address,uint256,bytes memory,bytes32,uint256)"}},"id":3098,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9430:61:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3099,"nodeType":"EmitStatement","src":"9425:66:4"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3100,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3067,"src":"9505:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9521:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3102,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9513:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3101,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9513:7:4","typeDescriptions":{}}},"id":3104,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9513:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"9505:18:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3112,"nodeType":"IfStatement","src":"9501:72:4","trueBody":{"id":3111,"nodeType":"Block","src":"9525:48:4","statements":[{"eventCall":{"arguments":[{"id":3107,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3076,"src":"9553:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3108,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3067,"src":"9557:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3106,"name":"CallSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2707,"src":"9544:8:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32)"}},"id":3109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9544:18:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3110,"nodeType":"EmitStatement","src":"9539:23:4"}]}}]},"documentation":{"id":3057,"nodeType":"StructuredDocumentation","src":"8855:236:4","text":" @dev Schedule an operation containing a single transaction.\n Emits {CallSalt} if salt is nonzero, and {CallScheduled}.\n Requirements:\n - the caller must have the 'proposer' role."},"functionSelector":"01d5062a","id":3114,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3072,"name":"PROPOSER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2610,"src":"9294:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3073,"kind":"modifierInvocation","modifierName":{"id":3071,"name":"onlyRole","nameLocations":["9285:8:4"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"9285:8:4"},"nodeType":"ModifierInvocation","src":"9285:23:4"}],"name":"schedule","nameLocation":"9105:8:4","nodeType":"FunctionDefinition","parameters":{"id":3070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3059,"mutability":"mutable","name":"target","nameLocation":"9131:6:4","nodeType":"VariableDeclaration","scope":3114,"src":"9123:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3058,"name":"address","nodeType":"ElementaryTypeName","src":"9123:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3061,"mutability":"mutable","name":"value","nameLocation":"9155:5:4","nodeType":"VariableDeclaration","scope":3114,"src":"9147:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3060,"name":"uint256","nodeType":"ElementaryTypeName","src":"9147:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3063,"mutability":"mutable","name":"data","nameLocation":"9185:4:4","nodeType":"VariableDeclaration","scope":3114,"src":"9170:19:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3062,"name":"bytes","nodeType":"ElementaryTypeName","src":"9170:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3065,"mutability":"mutable","name":"predecessor","nameLocation":"9207:11:4","nodeType":"VariableDeclaration","scope":3114,"src":"9199:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3064,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9199:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3067,"mutability":"mutable","name":"salt","nameLocation":"9236:4:4","nodeType":"VariableDeclaration","scope":3114,"src":"9228:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3066,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9228:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3069,"mutability":"mutable","name":"delay","nameLocation":"9258:5:4","nodeType":"VariableDeclaration","scope":3114,"src":"9250:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3068,"name":"uint256","nodeType":"ElementaryTypeName","src":"9250:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9113:156:4"},"returnParameters":{"id":3074,"nodeType":"ParameterList","parameters":[],"src":"9309:0:4"},"scope":3608,"src":"9096:483:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3215,"nodeType":"Block","src":"10116:559:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3136,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10130:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10138:6:4","memberName":"length","nodeType":"MemberAccess","src":"10130:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3138,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"10148:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10155:6:4","memberName":"length","nodeType":"MemberAccess","src":"10148:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10130:31:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3141,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10165:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10173:6:4","memberName":"length","nodeType":"MemberAccess","src":"10165:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3143,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"10183:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10192:6:4","memberName":"length","nodeType":"MemberAccess","src":"10183:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10165:33:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10130:68:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3157,"nodeType":"IfStatement","src":"10126:184:4","trueBody":{"id":3156,"nodeType":"Block","src":"10200:110:4","statements":[{"errorCall":{"arguments":[{"expression":{"id":3148,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10252:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10260:6:4","memberName":"length","nodeType":"MemberAccess","src":"10252:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3150,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"10268:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10277:6:4","memberName":"length","nodeType":"MemberAccess","src":"10268:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3152,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"10285:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10292:6:4","memberName":"length","nodeType":"MemberAccess","src":"10285:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3147,"name":"TimelockInvalidOperationLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2646,"src":"10221:30:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":3154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10221:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3155,"nodeType":"RevertStatement","src":"10214:85:4"}]}},{"assignments":[3159],"declarations":[{"constant":false,"id":3159,"mutability":"mutable","name":"id","nameLocation":"10328:2:4","nodeType":"VariableDeclaration","scope":3215,"src":"10320:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3158,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10320:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3167,"initialValue":{"arguments":[{"id":3161,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10352:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},{"id":3162,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"10361:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},{"id":3163,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"10369:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},{"id":3164,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3126,"src":"10379:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3165,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3128,"src":"10392:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"},{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"},{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3160,"name":"hashOperationBatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3056,"src":"10333:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_address_$dyn_calldata_ptr_$_t_array$_t_uint256_$dyn_calldata_ptr_$_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (address[] calldata,uint256[] calldata,bytes calldata[] calldata,bytes32,bytes32) pure returns (bytes32)"}},"id":3166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10333:64:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"10320:77:4"},{"expression":{"arguments":[{"id":3169,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3159,"src":"10417:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3170,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"10421:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3168,"name":"_schedule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3262,"src":"10407:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256)"}},"id":3171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10407:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3172,"nodeType":"ExpressionStatement","src":"10407:20:4"},{"body":{"id":3200,"nodeType":"Block","src":"10482:106:4","statements":[{"eventCall":{"arguments":[{"id":3185,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3159,"src":"10515:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3186,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10519:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":3187,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10522:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3189,"indexExpression":{"id":3188,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10530:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10522:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":3190,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"10534:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3192,"indexExpression":{"id":3191,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10541:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10534:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":3193,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"10545:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3195,"indexExpression":{"id":3194,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10554:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10545:11:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3196,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3126,"src":"10558:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3197,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"10571:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3184,"name":"CallScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"10501:13:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256,address,uint256,bytes memory,bytes32,uint256)"}},"id":3198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10501:76:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3199,"nodeType":"EmitStatement","src":"10496:81:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3177,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10457:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3178,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3118,"src":"10461:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10469:6:4","memberName":"length","nodeType":"MemberAccess","src":"10461:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10457:18:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3201,"initializationExpression":{"assignments":[3174],"declarations":[{"constant":false,"id":3174,"mutability":"mutable","name":"i","nameLocation":"10450:1:4","nodeType":"VariableDeclaration","scope":3201,"src":"10442:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3173,"name":"uint256","nodeType":"ElementaryTypeName","src":"10442:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3176,"initialValue":{"hexValue":"30","id":3175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10454:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10442:13:4"},"loopExpression":{"expression":{"id":3182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"10477:3:4","subExpression":{"id":3181,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"10479:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3183,"nodeType":"ExpressionStatement","src":"10477:3:4"},"nodeType":"ForStatement","src":"10437:151:4"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3202,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3128,"src":"10601:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10617:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3204,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10609:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3203,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10609:7:4","typeDescriptions":{}}},"id":3206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10609:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"10601:18:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3214,"nodeType":"IfStatement","src":"10597:72:4","trueBody":{"id":3213,"nodeType":"Block","src":"10621:48:4","statements":[{"eventCall":{"arguments":[{"id":3209,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3159,"src":"10649:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3210,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3128,"src":"10653:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3208,"name":"CallSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2707,"src":"10640:8:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32)"}},"id":3211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10640:18:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3212,"nodeType":"EmitStatement","src":"10635:23:4"}]}}]},"documentation":{"id":3115,"nodeType":"StructuredDocumentation","src":"9585:278:4","text":" @dev Schedule an operation containing a batch of transactions.\n Emits {CallSalt} if salt is nonzero, and one {CallScheduled} event per transaction in the batch.\n Requirements:\n - the caller must have the 'proposer' role."},"functionSelector":"8f2a0bb0","id":3216,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3133,"name":"PROPOSER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2610,"src":"10101:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3134,"kind":"modifierInvocation","modifierName":{"id":3132,"name":"onlyRole","nameLocations":["10092:8:4"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"10092:8:4"},"nodeType":"ModifierInvocation","src":"10092:23:4"}],"name":"scheduleBatch","nameLocation":"9877:13:4","nodeType":"FunctionDefinition","parameters":{"id":3131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3118,"mutability":"mutable","name":"targets","nameLocation":"9919:7:4","nodeType":"VariableDeclaration","scope":3216,"src":"9900:26:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3116,"name":"address","nodeType":"ElementaryTypeName","src":"9900:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3117,"nodeType":"ArrayTypeName","src":"9900:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":3121,"mutability":"mutable","name":"values","nameLocation":"9955:6:4","nodeType":"VariableDeclaration","scope":3216,"src":"9936:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3119,"name":"uint256","nodeType":"ElementaryTypeName","src":"9936:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3120,"nodeType":"ArrayTypeName","src":"9936:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3124,"mutability":"mutable","name":"payloads","nameLocation":"9988:8:4","nodeType":"VariableDeclaration","scope":3216,"src":"9971:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3122,"name":"bytes","nodeType":"ElementaryTypeName","src":"9971:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3123,"nodeType":"ArrayTypeName","src":"9971:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":3126,"mutability":"mutable","name":"predecessor","nameLocation":"10014:11:4","nodeType":"VariableDeclaration","scope":3216,"src":"10006:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3125,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10006:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3128,"mutability":"mutable","name":"salt","nameLocation":"10043:4:4","nodeType":"VariableDeclaration","scope":3216,"src":"10035:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3127,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10035:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3130,"mutability":"mutable","name":"delay","nameLocation":"10065:5:4","nodeType":"VariableDeclaration","scope":3216,"src":"10057:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3129,"name":"uint256","nodeType":"ElementaryTypeName","src":"10057:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9890:186:4"},"returnParameters":{"id":3135,"nodeType":"ParameterList","parameters":[],"src":"10116:0:4"},"scope":3608,"src":"9868:807:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3261,"nodeType":"Block","src":"10830:345:4","statements":[{"condition":{"arguments":[{"id":3225,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3219,"src":"10856:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3224,"name":"isOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2872,"src":"10844:11:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3226,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10844:15:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3236,"nodeType":"IfStatement","src":"10840:131:4","trueBody":{"id":3235,"nodeType":"Block","src":"10861:110:4","statements":[{"errorCall":{"arguments":[{"id":3228,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3219,"src":"10915:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"expression":{"id":3230,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"10938:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3231,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10953:5:4","memberName":"Unset","nodeType":"MemberAccess","referencedDeclaration":2633,"src":"10938:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3229,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"10919:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2637_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10919:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3227,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"10882:32:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10882:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3234,"nodeType":"RevertStatement","src":"10875:85:4"}]}},{"assignments":[3238],"declarations":[{"constant":false,"id":3238,"mutability":"mutable","name":"minDelay","nameLocation":"10988:8:4","nodeType":"VariableDeclaration","scope":3261,"src":"10980:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3237,"name":"uint256","nodeType":"ElementaryTypeName","src":"10980:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3241,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3239,"name":"getMinDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2997,"src":"10999:11:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":3240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10999:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10980:32:4"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3242,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3221,"src":"11026:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3243,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3238,"src":"11034:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11026:16:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3251,"nodeType":"IfStatement","src":"11022:96:4","trueBody":{"id":3250,"nodeType":"Block","src":"11044:74:4","statements":[{"errorCall":{"arguments":[{"id":3246,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3221,"src":"11091:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3247,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3238,"src":"11098:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3245,"name":"TimelockInsufficientDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2653,"src":"11065:25:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":3248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11065:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3249,"nodeType":"RevertStatement","src":"11058:49:4"}]}},{"expression":{"id":3259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3252,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2630,"src":"11127:11:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":3254,"indexExpression":{"id":3253,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3219,"src":"11139:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11127:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3255,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"11145:5:4","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11151:9:4","memberName":"timestamp","nodeType":"MemberAccess","src":"11145:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":3257,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3221,"src":"11163:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11145:23:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11127:41:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3260,"nodeType":"ExpressionStatement","src":"11127:41:4"}]},"documentation":{"id":3217,"nodeType":"StructuredDocumentation","src":"10681:90:4","text":" @dev Schedule an operation that is to become valid after a given delay."},"id":3262,"implemented":true,"kind":"function","modifiers":[],"name":"_schedule","nameLocation":"10785:9:4","nodeType":"FunctionDefinition","parameters":{"id":3222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3219,"mutability":"mutable","name":"id","nameLocation":"10803:2:4","nodeType":"VariableDeclaration","scope":3262,"src":"10795:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3218,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10795:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3221,"mutability":"mutable","name":"delay","nameLocation":"10815:5:4","nodeType":"VariableDeclaration","scope":3262,"src":"10807:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3220,"name":"uint256","nodeType":"ElementaryTypeName","src":"10807:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10794:27:4"},"returnParameters":{"id":3223,"nodeType":"ParameterList","parameters":[],"src":"10830:0:4"},"scope":3608,"src":"10776:399:4","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":3299,"nodeType":"Block","src":"11385:307:4","statements":[{"condition":{"id":3274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11399:23:4","subExpression":{"arguments":[{"id":3272,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3265,"src":"11419:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3271,"name":"isOperationPending","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2898,"src":"11400:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11400:22:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3289,"nodeType":"IfStatement","src":"11395:230:4","trueBody":{"id":3288,"nodeType":"Block","src":"11424:201:4","statements":[{"errorCall":{"arguments":[{"id":3276,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3265,"src":"11495:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":3278,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"11534:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3279,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11549:7:4","memberName":"Waiting","nodeType":"MemberAccess","referencedDeclaration":2634,"src":"11534:22:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3277,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"11515:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2637_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11515:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"expression":{"id":3282,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"11579:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3283,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11594:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"11579:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3281,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"11560:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2637_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11560:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"11515:85:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3275,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"11445:32:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11445:169:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3287,"nodeType":"RevertStatement","src":"11438:176:4"}]}},{"expression":{"id":3293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"11634:22:4","subExpression":{"baseExpression":{"id":3290,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2630,"src":"11641:11:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":3292,"indexExpression":{"id":3291,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3265,"src":"11653:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11641:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3294,"nodeType":"ExpressionStatement","src":"11634:22:4"},{"eventCall":{"arguments":[{"id":3296,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3265,"src":"11682:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3295,"name":"Cancelled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2712,"src":"11672:9:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":3297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11672:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3298,"nodeType":"EmitStatement","src":"11667:18:4"}]},"documentation":{"id":3263,"nodeType":"StructuredDocumentation","src":"11181:131:4","text":" @dev Cancel an operation.\n Requirements:\n - the caller must have the 'canceller' role."},"functionSelector":"c4d252f5","id":3300,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3268,"name":"CANCELLER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2620,"src":"11369:14:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3269,"kind":"modifierInvocation","modifierName":{"id":3267,"name":"onlyRole","nameLocations":["11360:8:4"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"11360:8:4"},"nodeType":"ModifierInvocation","src":"11360:24:4"}],"name":"cancel","nameLocation":"11326:6:4","nodeType":"FunctionDefinition","parameters":{"id":3266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3265,"mutability":"mutable","name":"id","nameLocation":"11341:2:4","nodeType":"VariableDeclaration","scope":3300,"src":"11333:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3264,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11333:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"11332:12:4"},"returnParameters":{"id":3270,"nodeType":"ParameterList","parameters":[],"src":"11385:0:4"},"scope":3608,"src":"11317:375:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3350,"nodeType":"Block","src":"12376:249:4","statements":[{"assignments":[3318],"declarations":[{"constant":false,"id":3318,"mutability":"mutable","name":"id","nameLocation":"12394:2:4","nodeType":"VariableDeclaration","scope":3350,"src":"12386:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3317,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12386:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3326,"initialValue":{"arguments":[{"id":3320,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3303,"src":"12413:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3321,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3305,"src":"12421:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3322,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3307,"src":"12428:7:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3323,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3309,"src":"12437:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3324,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3311,"src":"12450:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3319,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3025,"src":"12399:13:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (address,uint256,bytes calldata,bytes32,bytes32) pure returns (bytes32)"}},"id":3325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12399:56:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"12386:69:4"},{"expression":{"arguments":[{"id":3328,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"12478:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3329,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3309,"src":"12482:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3327,"name":"_beforeCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3527,"src":"12466:11:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) view"}},"id":3330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12466:28:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3331,"nodeType":"ExpressionStatement","src":"12466:28:4"},{"expression":{"arguments":[{"id":3333,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3303,"src":"12513:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3334,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3305,"src":"12521:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3335,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3307,"src":"12528:7:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3332,"name":"_execute","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3487,"src":"12504:8:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$__$","typeString":"function (address,uint256,bytes calldata)"}},"id":3336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12504:32:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3337,"nodeType":"ExpressionStatement","src":"12504:32:4"},{"eventCall":{"arguments":[{"id":3339,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"12564:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"hexValue":"30","id":3340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12568:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":3341,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3303,"src":"12571:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3342,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3305,"src":"12579:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3343,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3307,"src":"12586:7:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3338,"name":"CallExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2700,"src":"12551:12:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,uint256,address,uint256,bytes memory)"}},"id":3344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12551:43:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3345,"nodeType":"EmitStatement","src":"12546:48:4"},{"expression":{"arguments":[{"id":3347,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"12615:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3346,"name":"_afterCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3554,"src":"12604:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":3348,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12604:14:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3349,"nodeType":"ExpressionStatement","src":"12604:14:4"}]},"documentation":{"id":3301,"nodeType":"StructuredDocumentation","src":"11698:215:4","text":" @dev Execute an (ready) operation containing a single transaction.\n Emits a {CallExecuted} event.\n Requirements:\n - the caller must have the 'executor' role."},"functionSelector":"134008d3","id":3351,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3314,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"12361:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3315,"kind":"modifierInvocation","modifierName":{"id":3313,"name":"onlyRoleOrOpenRole","nameLocations":["12342:18:4"],"nodeType":"IdentifierPath","referencedDeclaration":2834,"src":"12342:18:4"},"nodeType":"ModifierInvocation","src":"12342:33:4"}],"name":"execute","nameLocation":"12175:7:4","nodeType":"FunctionDefinition","parameters":{"id":3312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3303,"mutability":"mutable","name":"target","nameLocation":"12200:6:4","nodeType":"VariableDeclaration","scope":3351,"src":"12192:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3302,"name":"address","nodeType":"ElementaryTypeName","src":"12192:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3305,"mutability":"mutable","name":"value","nameLocation":"12224:5:4","nodeType":"VariableDeclaration","scope":3351,"src":"12216:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3304,"name":"uint256","nodeType":"ElementaryTypeName","src":"12216:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3307,"mutability":"mutable","name":"payload","nameLocation":"12254:7:4","nodeType":"VariableDeclaration","scope":3351,"src":"12239:22:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3306,"name":"bytes","nodeType":"ElementaryTypeName","src":"12239:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3309,"mutability":"mutable","name":"predecessor","nameLocation":"12279:11:4","nodeType":"VariableDeclaration","scope":3351,"src":"12271:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3308,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12271:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3311,"mutability":"mutable","name":"salt","nameLocation":"12308:4:4","nodeType":"VariableDeclaration","scope":3351,"src":"12300:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3310,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12300:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"12182:136:4"},"returnParameters":{"id":3316,"nodeType":"ParameterList","parameters":[],"src":"12376:0:4"},"scope":3608,"src":"12166:459:4","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":3457,"nodeType":"Block","src":"13375:654:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3371,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13389:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13397:6:4","memberName":"length","nodeType":"MemberAccess","src":"13389:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3373,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3358,"src":"13407:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13414:6:4","memberName":"length","nodeType":"MemberAccess","src":"13407:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13389:31:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3376,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13424:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13432:6:4","memberName":"length","nodeType":"MemberAccess","src":"13424:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3378,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3361,"src":"13442:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13451:6:4","memberName":"length","nodeType":"MemberAccess","src":"13442:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13424:33:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13389:68:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3392,"nodeType":"IfStatement","src":"13385:184:4","trueBody":{"id":3391,"nodeType":"Block","src":"13459:110:4","statements":[{"errorCall":{"arguments":[{"expression":{"id":3383,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13511:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13519:6:4","memberName":"length","nodeType":"MemberAccess","src":"13511:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3385,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3361,"src":"13527:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13536:6:4","memberName":"length","nodeType":"MemberAccess","src":"13527:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3387,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3358,"src":"13544:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13551:6:4","memberName":"length","nodeType":"MemberAccess","src":"13544:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3382,"name":"TimelockInvalidOperationLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2646,"src":"13480:30:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":3389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13480:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3390,"nodeType":"RevertStatement","src":"13473:85:4"}]}},{"assignments":[3394],"declarations":[{"constant":false,"id":3394,"mutability":"mutable","name":"id","nameLocation":"13587:2:4","nodeType":"VariableDeclaration","scope":3457,"src":"13579:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3393,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13579:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3402,"initialValue":{"arguments":[{"id":3396,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13611:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},{"id":3397,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3358,"src":"13620:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},{"id":3398,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3361,"src":"13628:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},{"id":3399,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3363,"src":"13638:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3400,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3365,"src":"13651:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"},{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"},{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3395,"name":"hashOperationBatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3056,"src":"13592:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_address_$dyn_calldata_ptr_$_t_array$_t_uint256_$dyn_calldata_ptr_$_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (address[] calldata,uint256[] calldata,bytes calldata[] calldata,bytes32,bytes32) pure returns (bytes32)"}},"id":3401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13592:64:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"13579:77:4"},{"expression":{"arguments":[{"id":3404,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"13679:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3405,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3363,"src":"13683:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3403,"name":"_beforeCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3527,"src":"13667:11:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) view"}},"id":3406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13667:28:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3407,"nodeType":"ExpressionStatement","src":"13667:28:4"},{"body":{"id":3451,"nodeType":"Block","src":"13750:249:4","statements":[{"assignments":[3420],"declarations":[{"constant":false,"id":3420,"mutability":"mutable","name":"target","nameLocation":"13772:6:4","nodeType":"VariableDeclaration","scope":3451,"src":"13764:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3419,"name":"address","nodeType":"ElementaryTypeName","src":"13764:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3424,"initialValue":{"baseExpression":{"id":3421,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13781:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3423,"indexExpression":{"id":3422,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13789:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13781:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"13764:27:4"},{"assignments":[3426],"declarations":[{"constant":false,"id":3426,"mutability":"mutable","name":"value","nameLocation":"13813:5:4","nodeType":"VariableDeclaration","scope":3451,"src":"13805:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3425,"name":"uint256","nodeType":"ElementaryTypeName","src":"13805:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3430,"initialValue":{"baseExpression":{"id":3427,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3358,"src":"13821:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3429,"indexExpression":{"id":3428,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13828:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13821:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13805:25:4"},{"assignments":[3432],"declarations":[{"constant":false,"id":3432,"mutability":"mutable","name":"payload","nameLocation":"13859:7:4","nodeType":"VariableDeclaration","scope":3451,"src":"13844:22:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3431,"name":"bytes","nodeType":"ElementaryTypeName","src":"13844:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3436,"initialValue":{"baseExpression":{"id":3433,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3361,"src":"13869:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3435,"indexExpression":{"id":3434,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13878:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13869:11:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"nodeType":"VariableDeclarationStatement","src":"13844:36:4"},{"expression":{"arguments":[{"id":3438,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3420,"src":"13903:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3439,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3426,"src":"13911:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3440,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3432,"src":"13918:7:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3437,"name":"_execute","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3487,"src":"13894:8:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$__$","typeString":"function (address,uint256,bytes calldata)"}},"id":3441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13894:32:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3442,"nodeType":"ExpressionStatement","src":"13894:32:4"},{"eventCall":{"arguments":[{"id":3444,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"13958:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3445,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13962:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3446,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3420,"src":"13965:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3447,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3426,"src":"13973:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3448,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3432,"src":"13980:7:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3443,"name":"CallExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2700,"src":"13945:12:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,uint256,address,uint256,bytes memory)"}},"id":3449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13945:43:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3450,"nodeType":"EmitStatement","src":"13940:48:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3412,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13725:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3413,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3355,"src":"13729:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13737:6:4","memberName":"length","nodeType":"MemberAccess","src":"13729:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13725:18:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3452,"initializationExpression":{"assignments":[3409],"declarations":[{"constant":false,"id":3409,"mutability":"mutable","name":"i","nameLocation":"13718:1:4","nodeType":"VariableDeclaration","scope":3452,"src":"13710:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3408,"name":"uint256","nodeType":"ElementaryTypeName","src":"13710:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3411,"initialValue":{"hexValue":"30","id":3410,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13722:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13710:13:4"},"loopExpression":{"expression":{"id":3417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"13745:3:4","subExpression":{"id":3416,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3409,"src":"13747:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3418,"nodeType":"ExpressionStatement","src":"13745:3:4"},"nodeType":"ForStatement","src":"13705:294:4"},{"expression":{"arguments":[{"id":3454,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"14019:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3453,"name":"_afterCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3554,"src":"14008:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":3455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14008:14:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3456,"nodeType":"ExpressionStatement","src":"14008:14:4"}]},"documentation":{"id":3352,"nodeType":"StructuredDocumentation","src":"12631:249:4","text":" @dev Execute an (ready) operation containing a batch of transactions.\n Emits one {CallExecuted} event per transaction in the batch.\n Requirements:\n - the caller must have the 'executor' role."},"functionSelector":"e38335e5","id":3458,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3368,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"13360:13:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3369,"kind":"modifierInvocation","modifierName":{"id":3367,"name":"onlyRoleOrOpenRole","nameLocations":["13341:18:4"],"nodeType":"IdentifierPath","referencedDeclaration":2834,"src":"13341:18:4"},"nodeType":"ModifierInvocation","src":"13341:33:4"}],"name":"executeBatch","nameLocation":"13142:12:4","nodeType":"FunctionDefinition","parameters":{"id":3366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3355,"mutability":"mutable","name":"targets","nameLocation":"13183:7:4","nodeType":"VariableDeclaration","scope":3458,"src":"13164:26:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3353,"name":"address","nodeType":"ElementaryTypeName","src":"13164:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3354,"nodeType":"ArrayTypeName","src":"13164:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":3358,"mutability":"mutable","name":"values","nameLocation":"13219:6:4","nodeType":"VariableDeclaration","scope":3458,"src":"13200:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3356,"name":"uint256","nodeType":"ElementaryTypeName","src":"13200:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3357,"nodeType":"ArrayTypeName","src":"13200:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3361,"mutability":"mutable","name":"payloads","nameLocation":"13252:8:4","nodeType":"VariableDeclaration","scope":3458,"src":"13235:25:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3359,"name":"bytes","nodeType":"ElementaryTypeName","src":"13235:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3360,"nodeType":"ArrayTypeName","src":"13235:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":3363,"mutability":"mutable","name":"predecessor","nameLocation":"13278:11:4","nodeType":"VariableDeclaration","scope":3458,"src":"13270:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3362,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13270:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3365,"mutability":"mutable","name":"salt","nameLocation":"13307:4:4","nodeType":"VariableDeclaration","scope":3458,"src":"13299:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3364,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13299:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13154:163:4"},"returnParameters":{"id":3370,"nodeType":"ParameterList","parameters":[],"src":"13375:0:4"},"scope":3608,"src":"13133:896:4","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":3486,"nodeType":"Block","src":"14179:145:4","statements":[{"assignments":[3469,3471],"declarations":[{"constant":false,"id":3469,"mutability":"mutable","name":"success","nameLocation":"14195:7:4","nodeType":"VariableDeclaration","scope":3486,"src":"14190:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3468,"name":"bool","nodeType":"ElementaryTypeName","src":"14190:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3471,"mutability":"mutable","name":"returndata","nameLocation":"14217:10:4","nodeType":"VariableDeclaration","scope":3486,"src":"14204:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3470,"name":"bytes","nodeType":"ElementaryTypeName","src":"14204:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3478,"initialValue":{"arguments":[{"id":3476,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"14257:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":3472,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3461,"src":"14231:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14238:4:4","memberName":"call","nodeType":"MemberAccess","src":"14231:11:4","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":3475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":3474,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3463,"src":"14250:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"14231:25:4","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":3477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14231:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"14189:73:4"},{"expression":{"arguments":[{"id":3482,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3469,"src":"14297:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":3483,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3471,"src":"14306:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":3479,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"14272:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$6688_$","typeString":"type(library Address)"}},"id":3481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14280:16:4","memberName":"verifyCallResult","nodeType":"MemberAccess","referencedDeclaration":6667,"src":"14272:24:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (bool,bytes memory) pure returns (bytes memory)"}},"id":3484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14272:45:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3485,"nodeType":"ExpressionStatement","src":"14272:45:4"}]},"documentation":{"id":3459,"nodeType":"StructuredDocumentation","src":"14035:52:4","text":" @dev Execute an operation's call."},"id":3487,"implemented":true,"kind":"function","modifiers":[],"name":"_execute","nameLocation":"14101:8:4","nodeType":"FunctionDefinition","parameters":{"id":3466,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3461,"mutability":"mutable","name":"target","nameLocation":"14118:6:4","nodeType":"VariableDeclaration","scope":3487,"src":"14110:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3460,"name":"address","nodeType":"ElementaryTypeName","src":"14110:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3463,"mutability":"mutable","name":"value","nameLocation":"14134:5:4","nodeType":"VariableDeclaration","scope":3487,"src":"14126:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3462,"name":"uint256","nodeType":"ElementaryTypeName","src":"14126:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3465,"mutability":"mutable","name":"data","nameLocation":"14156:4:4","nodeType":"VariableDeclaration","scope":3487,"src":"14141:19:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3464,"name":"bytes","nodeType":"ElementaryTypeName","src":"14141:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14109:52:4"},"returnParameters":{"id":3467,"nodeType":"ParameterList","parameters":[],"src":"14179:0:4"},"scope":3608,"src":"14092:232:4","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":3526,"nodeType":"Block","src":"14474:300:4","statements":[{"condition":{"id":3498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14488:21:4","subExpression":{"arguments":[{"id":3496,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3490,"src":"14506:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3495,"name":"isOperationReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2914,"src":"14489:16:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3497,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14489:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3508,"nodeType":"IfStatement","src":"14484:137:4","trueBody":{"id":3507,"nodeType":"Block","src":"14511:110:4","statements":[{"errorCall":{"arguments":[{"id":3500,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3490,"src":"14565:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"expression":{"id":3502,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"14588:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3503,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14603:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"14588:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3501,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"14569:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2637_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14569:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3499,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"14532:32:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14532:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3506,"nodeType":"RevertStatement","src":"14525:85:4"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3509,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3492,"src":"14634:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14657:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3511,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14649:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3510,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14649:7:4","typeDescriptions":{}}},"id":3513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14649:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"14634:25:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":3518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14663:29:4","subExpression":{"arguments":[{"id":3516,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3492,"src":"14680:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3515,"name":"isOperationDone","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2930,"src":"14664:15:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14664:28:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14634:58:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3525,"nodeType":"IfStatement","src":"14630:138:4","trueBody":{"id":3524,"nodeType":"Block","src":"14694:74:4","statements":[{"errorCall":{"arguments":[{"id":3521,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3492,"src":"14745:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3520,"name":"TimelockUnexecutedPredecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2665,"src":"14715:29:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$__$","typeString":"function (bytes32) pure"}},"id":3522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14715:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3523,"nodeType":"RevertStatement","src":"14708:49:4"}]}}]},"documentation":{"id":3488,"nodeType":"StructuredDocumentation","src":"14330:72:4","text":" @dev Checks before execution of an operation's calls."},"id":3527,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeCall","nameLocation":"14416:11:4","nodeType":"FunctionDefinition","parameters":{"id":3493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3490,"mutability":"mutable","name":"id","nameLocation":"14436:2:4","nodeType":"VariableDeclaration","scope":3527,"src":"14428:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3489,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14428:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3492,"mutability":"mutable","name":"predecessor","nameLocation":"14448:11:4","nodeType":"VariableDeclaration","scope":3527,"src":"14440:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3491,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14440:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14427:33:4"},"returnParameters":{"id":3494,"nodeType":"ParameterList","parameters":[],"src":"14474:0:4"},"scope":3608,"src":"14407:367:4","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":3553,"nodeType":"Block","src":"14896:196:4","statements":[{"condition":{"id":3536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14910:21:4","subExpression":{"arguments":[{"id":3534,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3530,"src":"14928:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3533,"name":"isOperationReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2914,"src":"14911:16:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14911:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3546,"nodeType":"IfStatement","src":"14906:137:4","trueBody":{"id":3545,"nodeType":"Block","src":"14933:110:4","statements":[{"errorCall":{"arguments":[{"id":3538,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3530,"src":"14987:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"expression":{"id":3540,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2637,"src":"15010:14:4","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2637_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3541,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15025:5:4","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2635,"src":"15010:20:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3539,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"14991:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2637_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3542,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14991:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3537,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"14954:32:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14954:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3544,"nodeType":"RevertStatement","src":"14947:85:4"}]}},{"expression":{"id":3551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3547,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2630,"src":"15052:11:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":3549,"indexExpression":{"id":3548,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3530,"src":"15064:2:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"15052:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3550,"name":"_DONE_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2626,"src":"15070:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15052:33:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3552,"nodeType":"ExpressionStatement","src":"15052:33:4"}]},"documentation":{"id":3528,"nodeType":"StructuredDocumentation","src":"14780:71:4","text":" @dev Checks after execution of an operation's calls."},"id":3554,"implemented":true,"kind":"function","modifiers":[],"name":"_afterCall","nameLocation":"14865:10:4","nodeType":"FunctionDefinition","parameters":{"id":3531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3530,"mutability":"mutable","name":"id","nameLocation":"14884:2:4","nodeType":"VariableDeclaration","scope":3554,"src":"14876:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3529,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14876:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14875:12:4"},"returnParameters":{"id":3532,"nodeType":"ParameterList","parameters":[],"src":"14896:0:4"},"scope":3608,"src":"14856:236:4","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":3586,"nodeType":"Block","src":"15541:230:4","statements":[{"assignments":[3561],"declarations":[{"constant":false,"id":3561,"mutability":"mutable","name":"sender","nameLocation":"15559:6:4","nodeType":"VariableDeclaration","scope":3586,"src":"15551:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3560,"name":"address","nodeType":"ElementaryTypeName","src":"15551:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3564,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3562,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"15568:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":3563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15568:12:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"15551:29:4"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3565,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3561,"src":"15594:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":3568,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"15612:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":3567,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15604:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3566,"name":"address","nodeType":"ElementaryTypeName","src":"15604:7:4","typeDescriptions":{}}},"id":3569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15604:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15594:23:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3576,"nodeType":"IfStatement","src":"15590:95:4","trueBody":{"id":3575,"nodeType":"Block","src":"15619:66:4","statements":[{"errorCall":{"arguments":[{"id":3572,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3561,"src":"15667:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3571,"name":"TimelockUnauthorizedCaller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"15640:26:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":3573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15640:34:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3574,"nodeType":"RevertStatement","src":"15633:41:4"}]}},{"eventCall":{"arguments":[{"id":3578,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"15714:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3579,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3557,"src":"15725:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3577,"name":"MinDelayChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2719,"src":"15699:14:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":3580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15699:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3581,"nodeType":"EmitStatement","src":"15694:40:4"},{"expression":{"id":3584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3582,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"15744:9:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3583,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3557,"src":"15756:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15744:20:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3585,"nodeType":"ExpressionStatement","src":"15744:20:4"}]},"documentation":{"id":3555,"nodeType":"StructuredDocumentation","src":"15098:382:4","text":" @dev Changes the minimum timelock duration for future operations.\n Emits a {MinDelayChange} event.\n Requirements:\n - the caller must be the timelock itself. This can only be achieved by scheduling and later executing\n an operation where the timelock is the target and the data is the ABI-encoded call to this function."},"functionSelector":"64d62353","id":3587,"implemented":true,"kind":"function","modifiers":[],"name":"updateDelay","nameLocation":"15494:11:4","nodeType":"FunctionDefinition","parameters":{"id":3558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3557,"mutability":"mutable","name":"newDelay","nameLocation":"15514:8:4","nodeType":"VariableDeclaration","scope":3587,"src":"15506:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3556,"name":"uint256","nodeType":"ElementaryTypeName","src":"15506:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15505:18:4"},"returnParameters":{"id":3559,"nodeType":"ParameterList","parameters":[],"src":"15541:0:4"},"scope":3608,"src":"15485:286:4","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":3606,"nodeType":"Block","src":"16228:59:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":3598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16253:1:4","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":3601,"name":"operationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3591,"src":"16264:14:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}],"id":3600,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16258:5:4","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3599,"name":"uint8","nodeType":"ElementaryTypeName","src":"16258:5:4","typeDescriptions":{}}},"id":3602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16258:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16253:26:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3597,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16245:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3596,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16245:7:4","typeDescriptions":{}}},"id":3604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16245:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3595,"id":3605,"nodeType":"Return","src":"16238:42:4"}]},"documentation":{"id":3588,"nodeType":"StructuredDocumentation","src":"15777:355:4","text":" @dev Encodes a `OperationState` into a `bytes32` representation where each bit enabled corresponds to\n the underlying position in the `OperationState` enum. For example:\n 0x000...1000\n ^^^^^^----- ...\n ^---- Done\n ^--- Ready\n ^-- Waiting\n ^- Unset"},"id":3607,"implemented":true,"kind":"function","modifiers":[],"name":"_encodeStateBitmap","nameLocation":"16146:18:4","nodeType":"FunctionDefinition","parameters":{"id":3592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3591,"mutability":"mutable","name":"operationState","nameLocation":"16180:14:4","nodeType":"VariableDeclaration","scope":3607,"src":"16165:29:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"},"typeName":{"id":3590,"nodeType":"UserDefinedTypeName","pathNode":{"id":3589,"name":"OperationState","nameLocations":["16165:14:4"],"nodeType":"IdentifierPath","referencedDeclaration":2637,"src":"16165:14:4"},"referencedDeclaration":2637,"src":"16165:14:4","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2637","typeString":"enum TimelockController.OperationState"}},"visibility":"internal"}],"src":"16164:31:4"},"returnParameters":{"id":3595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3594,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3607,"src":"16219:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3593,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16219:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16218:9:4"},"scope":3608,"src":"16137:150:4","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":3609,"src":"1084:15205:4","usedErrors":[305,308,2646,2653,2660,2665,2670,6731],"usedEvents":[317,326,335,2687,2700,2707,2712,2719]}],"src":"117:16173:4"},"id":4},"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol","exportedSymbols":{"Governor":[2134],"GovernorCountingSimple":[3840]},"id":3841,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3610,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"132:24:5"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":3612,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3841,"sourceUnit":2135,"src":"158:41:5","symbolAliases":[{"foreign":{"id":3611,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2134,"src":"166:8:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3614,"name":"Governor","nameLocations":["323:8:5"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"323:8:5"},"id":3615,"nodeType":"InheritanceSpecifier","src":"323:8:5"}],"canonicalName":"GovernorCountingSimple","contractDependencies":[],"contractKind":"contract","documentation":{"id":3613,"nodeType":"StructuredDocumentation","src":"201:77:5","text":" @dev Extension of {Governor} for simple, 3 options, vote counting."},"fullyImplemented":false,"id":3840,"linearizedBaseContracts":[3840,2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"GovernorCountingSimple","nameLocation":"297:22:5","nodeType":"ContractDefinition","nodes":[{"canonicalName":"GovernorCountingSimple.VoteType","documentation":{"id":3616,"nodeType":"StructuredDocumentation","src":"338:78:5","text":" @dev Supported vote types. Matches Governor Bravo ordering."},"id":3620,"members":[{"id":3617,"name":"Against","nameLocation":"445:7:5","nodeType":"EnumValue","src":"445:7:5"},{"id":3618,"name":"For","nameLocation":"462:3:5","nodeType":"EnumValue","src":"462:3:5"},{"id":3619,"name":"Abstain","nameLocation":"475:7:5","nodeType":"EnumValue","src":"475:7:5"}],"name":"VoteType","nameLocation":"426:8:5","nodeType":"EnumDefinition","src":"421:67:5"},{"canonicalName":"GovernorCountingSimple.ProposalVote","id":3631,"members":[{"constant":false,"id":3622,"mutability":"mutable","name":"againstVotes","nameLocation":"532:12:5","nodeType":"VariableDeclaration","scope":3631,"src":"524:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3621,"name":"uint256","nodeType":"ElementaryTypeName","src":"524:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3624,"mutability":"mutable","name":"forVotes","nameLocation":"562:8:5","nodeType":"VariableDeclaration","scope":3631,"src":"554:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3623,"name":"uint256","nodeType":"ElementaryTypeName","src":"554:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3626,"mutability":"mutable","name":"abstainVotes","nameLocation":"588:12:5","nodeType":"VariableDeclaration","scope":3631,"src":"580:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3625,"name":"uint256","nodeType":"ElementaryTypeName","src":"580:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3630,"mutability":"mutable","name":"hasVoted","nameLocation":"641:8:5","nodeType":"VariableDeclaration","scope":3631,"src":"610:39:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":3629,"keyName":"voter","keyNameLocation":"626:5:5","keyType":{"id":3627,"name":"address","nodeType":"ElementaryTypeName","src":"618:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"610:30:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":3628,"name":"bool","nodeType":"ElementaryTypeName","src":"635:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"}],"name":"ProposalVote","nameLocation":"501:12:5","nodeType":"StructDefinition","scope":3840,"src":"494:162:5","visibility":"public"},{"constant":false,"id":3636,"mutability":"mutable","name":"_proposalVotes","nameLocation":"714:14:5","nodeType":"VariableDeclaration","scope":3840,"src":"662:66:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote)"},"typeName":{"id":3635,"keyName":"proposalId","keyNameLocation":"678:10:5","keyType":{"id":3632,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"662:43:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":3634,"nodeType":"UserDefinedTypeName","pathNode":{"id":3633,"name":"ProposalVote","nameLocations":["692:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":3631,"src":"692:12:5"},"referencedDeclaration":3631,"src":"692:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}}},"visibility":"private"},{"baseFunctions":[2327],"body":{"id":3645,"nodeType":"Block","src":"925:58:5","statements":[{"expression":{"hexValue":"737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e","id":3643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"942:34:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_a3816e28b29b48b8e7bf93291116c21473ef28186248d173042d1986430466e1","typeString":"literal_string \"support=bravo&quorum=for,abstain\""},"value":"support=bravo&quorum=for,abstain"},"functionReturnParameters":3642,"id":3644,"nodeType":"Return","src":"935:41:5"}]},"documentation":{"id":3637,"nodeType":"StructuredDocumentation","src":"735:54:5","text":" @dev See {IGovernor-COUNTING_MODE}."},"functionSelector":"dd4e2ba5","id":3646,"implemented":true,"kind":"function","modifiers":[],"name":"COUNTING_MODE","nameLocation":"856:13:5","nodeType":"FunctionDefinition","overrides":{"id":3639,"nodeType":"OverrideSpecifier","overrides":[],"src":"892:8:5"},"parameters":{"id":3638,"nodeType":"ParameterList","parameters":[],"src":"869:2:5"},"returnParameters":{"id":3642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3641,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3646,"src":"910:13:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3640,"name":"string","nodeType":"ElementaryTypeName","src":"910:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"909:15:5"},"scope":3840,"src":"847:136:5","stateMutability":"pure","virtual":true,"visibility":"public"},{"baseFunctions":[2451],"body":{"id":3664,"nodeType":"Block","src":"1142:68:5","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":3657,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3636,"src":"1159:14:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3659,"indexExpression":{"id":3658,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3649,"src":"1174:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1159:26:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"id":3660,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1186:8:5","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":3630,"src":"1159:35:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":3662,"indexExpression":{"id":3661,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3651,"src":"1195:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1159:44:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3656,"id":3663,"nodeType":"Return","src":"1152:51:5"}]},"documentation":{"id":3647,"nodeType":"StructuredDocumentation","src":"989:49:5","text":" @dev See {IGovernor-hasVoted}."},"functionSelector":"43859632","id":3665,"implemented":true,"kind":"function","modifiers":[],"name":"hasVoted","nameLocation":"1052:8:5","nodeType":"FunctionDefinition","overrides":{"id":3653,"nodeType":"OverrideSpecifier","overrides":[],"src":"1118:8:5"},"parameters":{"id":3652,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3649,"mutability":"mutable","name":"proposalId","nameLocation":"1069:10:5","nodeType":"VariableDeclaration","scope":3665,"src":"1061:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3648,"name":"uint256","nodeType":"ElementaryTypeName","src":"1061:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3651,"mutability":"mutable","name":"account","nameLocation":"1089:7:5","nodeType":"VariableDeclaration","scope":3665,"src":"1081:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3650,"name":"address","nodeType":"ElementaryTypeName","src":"1081:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1060:37:5"},"returnParameters":{"id":3656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3655,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3665,"src":"1136:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3654,"name":"bool","nodeType":"ElementaryTypeName","src":"1136:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1135:6:5"},"scope":3840,"src":"1043:167:5","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3692,"nodeType":"Block","src":"1430:173:5","statements":[{"assignments":[3679],"declarations":[{"constant":false,"id":3679,"mutability":"mutable","name":"proposalVote","nameLocation":"1461:12:5","nodeType":"VariableDeclaration","scope":3692,"src":"1440:33:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3678,"nodeType":"UserDefinedTypeName","pathNode":{"id":3677,"name":"ProposalVote","nameLocations":["1440:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":3631,"src":"1440:12:5"},"referencedDeclaration":3631,"src":"1440:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3683,"initialValue":{"baseExpression":{"id":3680,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3636,"src":"1476:14:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3682,"indexExpression":{"id":3681,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3668,"src":"1491:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1476:26:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"1440:62:5"},{"expression":{"components":[{"expression":{"id":3684,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3679,"src":"1520:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3685,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1533:12:5","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":3622,"src":"1520:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3686,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3679,"src":"1547:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3687,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1560:8:5","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3624,"src":"1547:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3688,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3679,"src":"1570:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3689,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1583:12:5","memberName":"abstainVotes","nodeType":"MemberAccess","referencedDeclaration":3626,"src":"1570:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3690,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1519:77:5","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":3676,"id":3691,"nodeType":"Return","src":"1512:84:5"}]},"documentation":{"id":3666,"nodeType":"StructuredDocumentation","src":"1216:61:5","text":" @dev Accessor to the internal vote counts."},"functionSelector":"544ffc9c","id":3693,"implemented":true,"kind":"function","modifiers":[],"name":"proposalVotes","nameLocation":"1291:13:5","nodeType":"FunctionDefinition","parameters":{"id":3669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3668,"mutability":"mutable","name":"proposalId","nameLocation":"1322:10:5","nodeType":"VariableDeclaration","scope":3693,"src":"1314:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3667,"name":"uint256","nodeType":"ElementaryTypeName","src":"1314:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1304:34:5"},"returnParameters":{"id":3676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3671,"mutability":"mutable","name":"againstVotes","nameLocation":"1376:12:5","nodeType":"VariableDeclaration","scope":3693,"src":"1368:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3670,"name":"uint256","nodeType":"ElementaryTypeName","src":"1368:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3673,"mutability":"mutable","name":"forVotes","nameLocation":"1398:8:5","nodeType":"VariableDeclaration","scope":3693,"src":"1390:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3672,"name":"uint256","nodeType":"ElementaryTypeName","src":"1390:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3675,"mutability":"mutable","name":"abstainVotes","nameLocation":"1416:12:5","nodeType":"VariableDeclaration","scope":3693,"src":"1408:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3674,"name":"uint256","nodeType":"ElementaryTypeName","src":"1408:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1367:62:5"},"scope":3840,"src":"1282:321:5","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[837],"body":{"id":3721,"nodeType":"Block","src":"1758:186:5","statements":[{"assignments":[3704],"declarations":[{"constant":false,"id":3704,"mutability":"mutable","name":"proposalVote","nameLocation":"1789:12:5","nodeType":"VariableDeclaration","scope":3721,"src":"1768:33:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3703,"nodeType":"UserDefinedTypeName","pathNode":{"id":3702,"name":"ProposalVote","nameLocations":["1768:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":3631,"src":"1768:12:5"},"referencedDeclaration":3631,"src":"1768:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3708,"initialValue":{"baseExpression":{"id":3705,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3636,"src":"1804:14:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3707,"indexExpression":{"id":3706,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3696,"src":"1819:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1804:26:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"1768:62:5"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":3711,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3696,"src":"1872:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3710,"name":"proposalSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":731,"src":"1855:16:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":3712,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1855:28:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3709,"name":"quorum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2121,"src":"1848:6:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":3713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1848:36:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3714,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3704,"src":"1888:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3715,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1901:8:5","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3624,"src":"1888:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":3716,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3704,"src":"1912:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3717,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1925:12:5","memberName":"abstainVotes","nodeType":"MemberAccess","referencedDeclaration":3626,"src":"1912:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1888:49:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1848:89:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3701,"id":3720,"nodeType":"Return","src":"1841:96:5"}]},"documentation":{"id":3694,"nodeType":"StructuredDocumentation","src":"1609:54:5","text":" @dev See {Governor-_quorumReached}."},"id":3722,"implemented":true,"kind":"function","modifiers":[],"name":"_quorumReached","nameLocation":"1677:14:5","nodeType":"FunctionDefinition","overrides":{"id":3698,"nodeType":"OverrideSpecifier","overrides":[],"src":"1734:8:5"},"parameters":{"id":3697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3696,"mutability":"mutable","name":"proposalId","nameLocation":"1700:10:5","nodeType":"VariableDeclaration","scope":3722,"src":"1692:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3695,"name":"uint256","nodeType":"ElementaryTypeName","src":"1692:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1691:20:5"},"returnParameters":{"id":3701,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3700,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3722,"src":"1752:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3699,"name":"bool","nodeType":"ElementaryTypeName","src":"1752:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1751:6:5"},"scope":3840,"src":"1668:276:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[845],"body":{"id":3744,"nodeType":"Block","src":"2168:146:5","statements":[{"assignments":[3733],"declarations":[{"constant":false,"id":3733,"mutability":"mutable","name":"proposalVote","nameLocation":"2199:12:5","nodeType":"VariableDeclaration","scope":3744,"src":"2178:33:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3732,"nodeType":"UserDefinedTypeName","pathNode":{"id":3731,"name":"ProposalVote","nameLocations":["2178:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":3631,"src":"2178:12:5"},"referencedDeclaration":3631,"src":"2178:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3737,"initialValue":{"baseExpression":{"id":3734,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3636,"src":"2214:14:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3736,"indexExpression":{"id":3735,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3725,"src":"2229:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2214:26:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2178:62:5"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3738,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3733,"src":"2258:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3739,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2271:8:5","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3624,"src":"2258:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":3740,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3733,"src":"2282:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3741,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2295:12:5","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":3622,"src":"2282:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2258:49:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3730,"id":3743,"nodeType":"Return","src":"2251:56:5"}]},"documentation":{"id":3723,"nodeType":"StructuredDocumentation","src":"1950:123:5","text":" @dev See {Governor-_voteSucceeded}. In this module, the forVotes must be strictly over the againstVotes."},"id":3745,"implemented":true,"kind":"function","modifiers":[],"name":"_voteSucceeded","nameLocation":"2087:14:5","nodeType":"FunctionDefinition","overrides":{"id":3727,"nodeType":"OverrideSpecifier","overrides":[],"src":"2144:8:5"},"parameters":{"id":3726,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3725,"mutability":"mutable","name":"proposalId","nameLocation":"2110:10:5","nodeType":"VariableDeclaration","scope":3745,"src":"2102:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3724,"name":"uint256","nodeType":"ElementaryTypeName","src":"2102:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2101:20:5"},"returnParameters":{"id":3730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3729,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3745,"src":"2162:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3728,"name":"bool","nodeType":"ElementaryTypeName","src":"2162:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2161:6:5"},"scope":3840,"src":"2078:236:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[873],"body":{"id":3838,"nodeType":"Block","src":"2661:657:5","statements":[{"assignments":[3764],"declarations":[{"constant":false,"id":3764,"mutability":"mutable","name":"proposalVote","nameLocation":"2692:12:5","nodeType":"VariableDeclaration","scope":3838,"src":"2671:33:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3763,"nodeType":"UserDefinedTypeName","pathNode":{"id":3762,"name":"ProposalVote","nameLocations":["2671:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":3631,"src":"2671:12:5"},"referencedDeclaration":3631,"src":"2671:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3768,"initialValue":{"baseExpression":{"id":3765,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3636,"src":"2707:14:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3631_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3767,"indexExpression":{"id":3766,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3748,"src":"2722:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2707:26:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2671:62:5"},{"condition":{"baseExpression":{"expression":{"id":3769,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3764,"src":"2748:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3770,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2761:8:5","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":3630,"src":"2748:21:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":3772,"indexExpression":{"id":3771,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3750,"src":"2770:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2748:30:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3778,"nodeType":"IfStatement","src":"2744:100:5","trueBody":{"id":3777,"nodeType":"Block","src":"2780:64:5","statements":[{"errorCall":{"arguments":[{"id":3774,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3750,"src":"2825:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3773,"name":"GovernorAlreadyCastVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2168,"src":"2801:23:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":3775,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2801:32:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3776,"nodeType":"RevertStatement","src":"2794:39:5"}]}},{"expression":{"id":3785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":3779,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3764,"src":"2853:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3782,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2866:8:5","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":3630,"src":"2853:21:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":3783,"indexExpression":{"id":3781,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3750,"src":"2875:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2853:30:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":3784,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2886:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2853:37:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3786,"nodeType":"ExpressionStatement","src":"2853:37:5"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3787,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3752,"src":"2905:7:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"id":3790,"name":"VoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3620,"src":"2922:8:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_VoteType_$3620_$","typeString":"type(enum GovernorCountingSimple.VoteType)"}},"id":3791,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2931:7:5","memberName":"Against","nodeType":"MemberAccess","referencedDeclaration":3617,"src":"2922:16:5","typeDescriptions":{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}],"id":3789,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2916:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3788,"name":"uint8","nodeType":"ElementaryTypeName","src":"2916:5:5","typeDescriptions":{}}},"id":3792,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2916:23:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"2905:34:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3801,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3752,"src":"3016:7:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"id":3804,"name":"VoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3620,"src":"3033:8:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_VoteType_$3620_$","typeString":"type(enum GovernorCountingSimple.VoteType)"}},"id":3805,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3042:3:5","memberName":"For","nodeType":"MemberAccess","referencedDeclaration":3618,"src":"3033:12:5","typeDescriptions":{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}],"id":3803,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3027:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3802,"name":"uint8","nodeType":"ElementaryTypeName","src":"3027:5:5","typeDescriptions":{}}},"id":3806,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3027:19:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3016:30:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3815,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3752,"src":"3119:7:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"id":3818,"name":"VoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3620,"src":"3136:8:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_VoteType_$3620_$","typeString":"type(enum GovernorCountingSimple.VoteType)"}},"id":3819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3145:7:5","memberName":"Abstain","nodeType":"MemberAccess","referencedDeclaration":3619,"src":"3136:16:5","typeDescriptions":{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_VoteType_$3620","typeString":"enum GovernorCountingSimple.VoteType"}],"id":3817,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3130:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3816,"name":"uint8","nodeType":"ElementaryTypeName","src":"3130:5:5","typeDescriptions":{}}},"id":3820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3130:23:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3119:34:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3832,"nodeType":"Block","src":"3226:57:5","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":3829,"name":"GovernorInvalidVoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2218,"src":"3247:23:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":3830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3247:25:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3831,"nodeType":"RevertStatement","src":"3240:32:5"}]},"id":3833,"nodeType":"IfStatement","src":"3115:168:5","trueBody":{"id":3828,"nodeType":"Block","src":"3155:65:5","statements":[{"expression":{"id":3826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3822,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3764,"src":"3169:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3824,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3182:12:5","memberName":"abstainVotes","nodeType":"MemberAccess","referencedDeclaration":3626,"src":"3169:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3825,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"3198:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3169:40:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3827,"nodeType":"ExpressionStatement","src":"3169:40:5"}]}},"id":3834,"nodeType":"IfStatement","src":"3012:271:5","trueBody":{"id":3814,"nodeType":"Block","src":"3048:61:5","statements":[{"expression":{"id":3812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3808,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3764,"src":"3062:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3810,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3075:8:5","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3624,"src":"3062:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3811,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"3087:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3062:36:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3813,"nodeType":"ExpressionStatement","src":"3062:36:5"}]}},"id":3835,"nodeType":"IfStatement","src":"2901:382:5","trueBody":{"id":3800,"nodeType":"Block","src":"2941:65:5","statements":[{"expression":{"id":3798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3794,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3764,"src":"2955:12:5","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3631_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3796,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2968:12:5","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":3622,"src":"2955:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3797,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"2984:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2955:40:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3799,"nodeType":"ExpressionStatement","src":"2955:40:5"}]}},{"expression":{"id":3836,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"3300:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3761,"id":3837,"nodeType":"Return","src":"3293:18:5"}]},"documentation":{"id":3746,"nodeType":"StructuredDocumentation","src":"2320:129:5","text":" @dev See {Governor-_countVote}. In this module, the support follows the `VoteType` enum (from Governor Bravo)."},"id":3839,"implemented":true,"kind":"function","modifiers":[],"name":"_countVote","nameLocation":"2463:10:5","nodeType":"FunctionDefinition","overrides":{"id":3758,"nodeType":"OverrideSpecifier","overrides":[],"src":"2634:8:5"},"parameters":{"id":3757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3748,"mutability":"mutable","name":"proposalId","nameLocation":"2491:10:5","nodeType":"VariableDeclaration","scope":3839,"src":"2483:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3747,"name":"uint256","nodeType":"ElementaryTypeName","src":"2483:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3750,"mutability":"mutable","name":"account","nameLocation":"2519:7:5","nodeType":"VariableDeclaration","scope":3839,"src":"2511:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3749,"name":"address","nodeType":"ElementaryTypeName","src":"2511:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3752,"mutability":"mutable","name":"support","nameLocation":"2542:7:5","nodeType":"VariableDeclaration","scope":3839,"src":"2536:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3751,"name":"uint8","nodeType":"ElementaryTypeName","src":"2536:5:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":3754,"mutability":"mutable","name":"totalWeight","nameLocation":"2567:11:5","nodeType":"VariableDeclaration","scope":3839,"src":"2559:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3753,"name":"uint256","nodeType":"ElementaryTypeName","src":"2559:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3756,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3839,"src":"2588:12:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3755,"name":"bytes","nodeType":"ElementaryTypeName","src":"2588:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2473:143:5"},"returnParameters":{"id":3761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3760,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3839,"src":"2652:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3759,"name":"uint256","nodeType":"ElementaryTypeName","src":"2652:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2651:9:5"},"scope":3840,"src":"2454:864:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":3841,"src":"279:3041:5","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,6731,6750,6874,6876,10810],"usedEvents":[2264,2271,2276,2281,2294,2309,5326]}],"src":"132:3189:5"},"id":5},"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol","exportedSymbols":{"Governor":[2134],"GovernorSettings":[4021]},"id":4022,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3842,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"126:24:6"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":3844,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4022,"sourceUnit":2135,"src":"152:41:6","symbolAliases":[{"foreign":{"id":3843,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2134,"src":"160:8:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3846,"name":"Governor","nameLocations":["316:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"316:8:6"},"id":3847,"nodeType":"InheritanceSpecifier","src":"316:8:6"}],"canonicalName":"GovernorSettings","contractDependencies":[],"contractKind":"contract","documentation":{"id":3845,"nodeType":"StructuredDocumentation","src":"195:82:6","text":" @dev Extension of {Governor} for settings updatable through governance."},"fullyImplemented":false,"id":4021,"linearizedBaseContracts":[4021,2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"GovernorSettings","nameLocation":"296:16:6","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":3849,"mutability":"mutable","name":"_proposalThreshold","nameLocation":"370:18:6","nodeType":"VariableDeclaration","scope":4021,"src":"354:34:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3848,"name":"uint256","nodeType":"ElementaryTypeName","src":"354:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":3851,"mutability":"mutable","name":"_votingDelay","nameLocation":"476:12:6","nodeType":"VariableDeclaration","scope":4021,"src":"461:27:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3850,"name":"uint48","nodeType":"ElementaryTypeName","src":"461:6:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"private"},{"constant":false,"id":3853,"mutability":"mutable","name":"_votingPeriod","nameLocation":"552:13:6","nodeType":"VariableDeclaration","scope":4021,"src":"537:28:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3852,"name":"uint32","nodeType":"ElementaryTypeName","src":"537:6:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"private"},{"anonymous":false,"eventSelector":"c565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93","id":3859,"name":"VotingDelaySet","nameLocation":"578:14:6","nodeType":"EventDefinition","parameters":{"id":3858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3855,"indexed":false,"mutability":"mutable","name":"oldVotingDelay","nameLocation":"601:14:6","nodeType":"VariableDeclaration","scope":3859,"src":"593:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3854,"name":"uint256","nodeType":"ElementaryTypeName","src":"593:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3857,"indexed":false,"mutability":"mutable","name":"newVotingDelay","nameLocation":"625:14:6","nodeType":"VariableDeclaration","scope":3859,"src":"617:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3856,"name":"uint256","nodeType":"ElementaryTypeName","src":"617:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"592:48:6"},"src":"572:69:6"},{"anonymous":false,"eventSelector":"7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828","id":3865,"name":"VotingPeriodSet","nameLocation":"652:15:6","nodeType":"EventDefinition","parameters":{"id":3864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3861,"indexed":false,"mutability":"mutable","name":"oldVotingPeriod","nameLocation":"676:15:6","nodeType":"VariableDeclaration","scope":3865,"src":"668:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3860,"name":"uint256","nodeType":"ElementaryTypeName","src":"668:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3863,"indexed":false,"mutability":"mutable","name":"newVotingPeriod","nameLocation":"701:15:6","nodeType":"VariableDeclaration","scope":3865,"src":"693:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3862,"name":"uint256","nodeType":"ElementaryTypeName","src":"693:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"667:50:6"},"src":"646:72:6"},{"anonymous":false,"eventSelector":"ccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc05461","id":3871,"name":"ProposalThresholdSet","nameLocation":"729:20:6","nodeType":"EventDefinition","parameters":{"id":3870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3867,"indexed":false,"mutability":"mutable","name":"oldProposalThreshold","nameLocation":"758:20:6","nodeType":"VariableDeclaration","scope":3871,"src":"750:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3866,"name":"uint256","nodeType":"ElementaryTypeName","src":"750:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3869,"indexed":false,"mutability":"mutable","name":"newProposalThreshold","nameLocation":"788:20:6","nodeType":"VariableDeclaration","scope":3871,"src":"780:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3868,"name":"uint256","nodeType":"ElementaryTypeName","src":"780:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"749:60:6"},"src":"723:87:6"},{"body":{"id":3893,"nodeType":"Block","src":"983:156:6","statements":[{"expression":{"arguments":[{"id":3882,"name":"initialVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3874,"src":"1009:18:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":3881,"name":"_setVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3979,"src":"993:15:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint48_$returns$__$","typeString":"function (uint48)"}},"id":3883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"993:35:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3884,"nodeType":"ExpressionStatement","src":"993:35:6"},{"expression":{"arguments":[{"id":3886,"name":"initialVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3876,"src":"1055:19:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":3885,"name":"_setVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4004,"src":"1038:16:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint32_$returns$__$","typeString":"function (uint32)"}},"id":3887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1038:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3888,"nodeType":"ExpressionStatement","src":"1038:37:6"},{"expression":{"arguments":[{"id":3890,"name":"initialProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3878,"src":"1107:24:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3889,"name":"_setProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4020,"src":"1085:21:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":3891,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1085:47:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3892,"nodeType":"ExpressionStatement","src":"1085:47:6"}]},"documentation":{"id":3872,"nodeType":"StructuredDocumentation","src":"816:61:6","text":" @dev Initialize the governance parameters."},"id":3894,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":3879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3874,"mutability":"mutable","name":"initialVotingDelay","nameLocation":"901:18:6","nodeType":"VariableDeclaration","scope":3894,"src":"894:25:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3873,"name":"uint48","nodeType":"ElementaryTypeName","src":"894:6:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":3876,"mutability":"mutable","name":"initialVotingPeriod","nameLocation":"928:19:6","nodeType":"VariableDeclaration","scope":3894,"src":"921:26:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3875,"name":"uint32","nodeType":"ElementaryTypeName","src":"921:6:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":3878,"mutability":"mutable","name":"initialProposalThreshold","nameLocation":"957:24:6","nodeType":"VariableDeclaration","scope":3894,"src":"949:32:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3877,"name":"uint256","nodeType":"ElementaryTypeName","src":"949:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"893:89:6"},"returnParameters":{"id":3880,"nodeType":"ParameterList","parameters":[],"src":"983:0:6"},"scope":4021,"src":"882:257:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[2107],"body":{"id":3903,"nodeType":"Block","src":"1272:36:6","statements":[{"expression":{"id":3901,"name":"_votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3851,"src":"1289:12:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":3900,"id":3902,"nodeType":"Return","src":"1282:19:6"}]},"documentation":{"id":3895,"nodeType":"StructuredDocumentation","src":"1145:52:6","text":" @dev See {IGovernor-votingDelay}."},"functionSelector":"3932abb1","id":3904,"implemented":true,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"1211:11:6","nodeType":"FunctionDefinition","overrides":{"id":3897,"nodeType":"OverrideSpecifier","overrides":[],"src":"1245:8:6"},"parameters":{"id":3896,"nodeType":"ParameterList","parameters":[],"src":"1222:2:6"},"returnParameters":{"id":3900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3899,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3904,"src":"1263:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3898,"name":"uint256","nodeType":"ElementaryTypeName","src":"1263:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1262:9:6"},"scope":4021,"src":"1202:106:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2113],"body":{"id":3913,"nodeType":"Block","src":"1443:37:6","statements":[{"expression":{"id":3911,"name":"_votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3853,"src":"1460:13:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":3910,"id":3912,"nodeType":"Return","src":"1453:20:6"}]},"documentation":{"id":3905,"nodeType":"StructuredDocumentation","src":"1314:53:6","text":" @dev See {IGovernor-votingPeriod}."},"functionSelector":"02a251a3","id":3914,"implemented":true,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"1381:12:6","nodeType":"FunctionDefinition","overrides":{"id":3907,"nodeType":"OverrideSpecifier","overrides":[],"src":"1416:8:6"},"parameters":{"id":3906,"nodeType":"ParameterList","parameters":[],"src":"1393:2:6"},"returnParameters":{"id":3910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3909,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3914,"src":"1434:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3908,"name":"uint256","nodeType":"ElementaryTypeName","src":"1434:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1433:9:6"},"scope":4021,"src":"1372:108:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[717],"body":{"id":3923,"nodeType":"Block","src":"1624:42:6","statements":[{"expression":{"id":3921,"name":"_proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3849,"src":"1641:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3920,"id":3922,"nodeType":"Return","src":"1634:25:6"}]},"documentation":{"id":3915,"nodeType":"StructuredDocumentation","src":"1486:57:6","text":" @dev See {Governor-proposalThreshold}."},"functionSelector":"b58131b0","id":3924,"implemented":true,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"1557:17:6","nodeType":"FunctionDefinition","overrides":{"id":3917,"nodeType":"OverrideSpecifier","overrides":[],"src":"1597:8:6"},"parameters":{"id":3916,"nodeType":"ParameterList","parameters":[],"src":"1574:2:6"},"returnParameters":{"id":3920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3919,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3924,"src":"1615:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3918,"name":"uint256","nodeType":"ElementaryTypeName","src":"1615:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1614:9:6"},"scope":4021,"src":"1548:118:6","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3936,"nodeType":"Block","src":"1916:48:6","statements":[{"expression":{"arguments":[{"id":3933,"name":"newVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3927,"src":"1942:14:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":3932,"name":"_setVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3979,"src":"1926:15:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint48_$returns$__$","typeString":"function (uint48)"}},"id":3934,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1926:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3935,"nodeType":"ExpressionStatement","src":"1926:31:6"}]},"documentation":{"id":3925,"nodeType":"StructuredDocumentation","src":"1672:162:6","text":" @dev Update the voting delay. This operation can only be performed through a governance proposal.\n Emits a {VotingDelaySet} event."},"functionSelector":"79051887","id":3937,"implemented":true,"kind":"function","modifiers":[{"id":3930,"kind":"modifierInvocation","modifierName":{"id":3929,"name":"onlyGovernance","nameLocations":["1901:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"1901:14:6"},"nodeType":"ModifierInvocation","src":"1901:14:6"}],"name":"setVotingDelay","nameLocation":"1848:14:6","nodeType":"FunctionDefinition","parameters":{"id":3928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3927,"mutability":"mutable","name":"newVotingDelay","nameLocation":"1870:14:6","nodeType":"VariableDeclaration","scope":3937,"src":"1863:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3926,"name":"uint48","nodeType":"ElementaryTypeName","src":"1863:6:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"1862:23:6"},"returnParameters":{"id":3931,"nodeType":"ParameterList","parameters":[],"src":"1916:0:6"},"scope":4021,"src":"1839:125:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3949,"nodeType":"Block","src":"2218:50:6","statements":[{"expression":{"arguments":[{"id":3946,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3940,"src":"2245:15:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":3945,"name":"_setVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4004,"src":"2228:16:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint32_$returns$__$","typeString":"function (uint32)"}},"id":3947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2228:33:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3948,"nodeType":"ExpressionStatement","src":"2228:33:6"}]},"documentation":{"id":3938,"nodeType":"StructuredDocumentation","src":"1970:164:6","text":" @dev Update the voting period. This operation can only be performed through a governance proposal.\n Emits a {VotingPeriodSet} event."},"functionSelector":"e540d01d","id":3950,"implemented":true,"kind":"function","modifiers":[{"id":3943,"kind":"modifierInvocation","modifierName":{"id":3942,"name":"onlyGovernance","nameLocations":["2203:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"2203:14:6"},"nodeType":"ModifierInvocation","src":"2203:14:6"}],"name":"setVotingPeriod","nameLocation":"2148:15:6","nodeType":"FunctionDefinition","parameters":{"id":3941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3940,"mutability":"mutable","name":"newVotingPeriod","nameLocation":"2171:15:6","nodeType":"VariableDeclaration","scope":3950,"src":"2164:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3939,"name":"uint32","nodeType":"ElementaryTypeName","src":"2164:6:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2163:24:6"},"returnParameters":{"id":3944,"nodeType":"ParameterList","parameters":[],"src":"2218:0:6"},"scope":4021,"src":"2139:129:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3962,"nodeType":"Block","src":"2543:60:6","statements":[{"expression":{"arguments":[{"id":3959,"name":"newProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3953,"src":"2575:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3958,"name":"_setProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4020,"src":"2553:21:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":3960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2553:43:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3961,"nodeType":"ExpressionStatement","src":"2553:43:6"}]},"documentation":{"id":3951,"nodeType":"StructuredDocumentation","src":"2274:174:6","text":" @dev Update the proposal threshold. This operation can only be performed through a governance proposal.\n Emits a {ProposalThresholdSet} event."},"functionSelector":"ece40cc1","id":3963,"implemented":true,"kind":"function","modifiers":[{"id":3956,"kind":"modifierInvocation","modifierName":{"id":3955,"name":"onlyGovernance","nameLocations":["2528:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"2528:14:6"},"nodeType":"ModifierInvocation","src":"2528:14:6"}],"name":"setProposalThreshold","nameLocation":"2462:20:6","nodeType":"FunctionDefinition","parameters":{"id":3954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3953,"mutability":"mutable","name":"newProposalThreshold","nameLocation":"2491:20:6","nodeType":"VariableDeclaration","scope":3963,"src":"2483:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3952,"name":"uint256","nodeType":"ElementaryTypeName","src":"2483:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2482:30:6"},"returnParameters":{"id":3957,"nodeType":"ParameterList","parameters":[],"src":"2543:0:6"},"scope":4021,"src":"2453:150:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3978,"nodeType":"Block","src":"2786:105:6","statements":[{"eventCall":{"arguments":[{"id":3970,"name":"_votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3851,"src":"2816:12:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":3971,"name":"newVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3966,"src":"2830:14:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":3969,"name":"VotingDelaySet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3859,"src":"2801:14:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":3972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2801:44:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3973,"nodeType":"EmitStatement","src":"2796:49:6"},{"expression":{"id":3976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3974,"name":"_votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3851,"src":"2855:12:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3975,"name":"newVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3966,"src":"2870:14:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"2855:29:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":3977,"nodeType":"ExpressionStatement","src":"2855:29:6"}]},"documentation":{"id":3964,"nodeType":"StructuredDocumentation","src":"2609:107:6","text":" @dev Internal setter for the voting delay.\n Emits a {VotingDelaySet} event."},"id":3979,"implemented":true,"kind":"function","modifiers":[],"name":"_setVotingDelay","nameLocation":"2730:15:6","nodeType":"FunctionDefinition","parameters":{"id":3967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3966,"mutability":"mutable","name":"newVotingDelay","nameLocation":"2753:14:6","nodeType":"VariableDeclaration","scope":3979,"src":"2746:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3965,"name":"uint48","nodeType":"ElementaryTypeName","src":"2746:6:6","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2745:23:6"},"returnParameters":{"id":3968,"nodeType":"ParameterList","parameters":[],"src":"2786:0:6"},"scope":4021,"src":"2721:170:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4003,"nodeType":"Block","src":"3078:207:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":3987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3985,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3982,"src":"3092:15:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3111:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3092:20:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3993,"nodeType":"IfStatement","src":"3088:88:6","trueBody":{"id":3992,"nodeType":"Block","src":"3114:62:6","statements":[{"errorCall":{"arguments":[{"hexValue":"30","id":3989,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3163:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3988,"name":"GovernorInvalidVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2201,"src":"3135:27:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":3990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3135:30:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3991,"nodeType":"RevertStatement","src":"3128:37:6"}]}},{"eventCall":{"arguments":[{"id":3995,"name":"_votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3853,"src":"3206:13:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":3996,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3982,"src":"3221:15:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":3994,"name":"VotingPeriodSet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3865,"src":"3190:15:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":3997,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3190:47:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3998,"nodeType":"EmitStatement","src":"3185:52:6"},{"expression":{"id":4001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3999,"name":"_votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3853,"src":"3247:13:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4000,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3982,"src":"3263:15:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"3247:31:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":4002,"nodeType":"ExpressionStatement","src":"3247:31:6"}]},"documentation":{"id":3980,"nodeType":"StructuredDocumentation","src":"2897:109:6","text":" @dev Internal setter for the voting period.\n Emits a {VotingPeriodSet} event."},"id":4004,"implemented":true,"kind":"function","modifiers":[],"name":"_setVotingPeriod","nameLocation":"3020:16:6","nodeType":"FunctionDefinition","parameters":{"id":3983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3982,"mutability":"mutable","name":"newVotingPeriod","nameLocation":"3044:15:6","nodeType":"VariableDeclaration","scope":4004,"src":"3037:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3981,"name":"uint32","nodeType":"ElementaryTypeName","src":"3037:6:6","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3036:24:6"},"returnParameters":{"id":3984,"nodeType":"ParameterList","parameters":[],"src":"3078:0:6"},"scope":4021,"src":"3011:274:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4019,"nodeType":"Block","src":"3493:135:6","statements":[{"eventCall":{"arguments":[{"id":4011,"name":"_proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3849,"src":"3529:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4012,"name":"newProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4007,"src":"3549:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4010,"name":"ProposalThresholdSet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3871,"src":"3508:20:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":4013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3508:62:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4014,"nodeType":"EmitStatement","src":"3503:67:6"},{"expression":{"id":4017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4015,"name":"_proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3849,"src":"3580:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4016,"name":"newProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4007,"src":"3601:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3580:41:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4018,"nodeType":"ExpressionStatement","src":"3580:41:6"}]},"documentation":{"id":4005,"nodeType":"StructuredDocumentation","src":"3291:119:6","text":" @dev Internal setter for the proposal threshold.\n Emits a {ProposalThresholdSet} event."},"id":4020,"implemented":true,"kind":"function","modifiers":[],"name":"_setProposalThreshold","nameLocation":"3424:21:6","nodeType":"FunctionDefinition","parameters":{"id":4008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4007,"mutability":"mutable","name":"newProposalThreshold","nameLocation":"3454:20:6","nodeType":"VariableDeclaration","scope":4020,"src":"3446:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4006,"name":"uint256","nodeType":"ElementaryTypeName","src":"3446:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3445:30:6"},"returnParameters":{"id":4009,"nodeType":"ParameterList","parameters":[],"src":"3493:0:6"},"scope":4021,"src":"3415:213:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":4022,"src":"278:3352:6","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,6731,6750,6874,6876,10810],"usedEvents":[2264,2271,2276,2281,2294,2309,3859,3865,3871,5326]}],"src":"126:3505:6"},"id":6},"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol","exportedSymbols":{"Governor":[2134],"GovernorTimelockControl":[4366],"IERC165":[9194],"IGovernor":[2588],"SafeCast":[12565],"TimelockController":[3608]},"id":4367,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4023,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"133:24:7"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":4026,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4367,"sourceUnit":2135,"src":"159:52:7","symbolAliases":[{"foreign":{"id":4024,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2588,"src":"167:9:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":4025,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2134,"src":"178:8:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/TimelockController.sol","file":"../TimelockController.sol","id":4028,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4367,"sourceUnit":3609,"src":"212:61:7","symbolAliases":[{"foreign":{"id":4027,"name":"TimelockController","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3608,"src":"220:18:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"../../interfaces/IERC165.sol","id":4030,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4367,"sourceUnit":5322,"src":"274:53:7","symbolAliases":[{"foreign":{"id":4029,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"282:7:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4032,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4367,"sourceUnit":12566,"src":"328:55:7","symbolAliases":[{"foreign":{"id":4031,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"336:8:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4034,"name":"Governor","nameLocations":["1544:8:7"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"1544:8:7"},"id":4035,"nodeType":"InheritanceSpecifier","src":"1544:8:7"}],"canonicalName":"GovernorTimelockControl","contractDependencies":[],"contractKind":"contract","documentation":{"id":4033,"nodeType":"StructuredDocumentation","src":"385:1113:7","text":" @dev Extension of {Governor} that binds the execution process to an instance of {TimelockController}. This adds a\n delay, enforced by the {TimelockController} to all successful proposal (in addition to the voting duration). The\n {Governor} needs the proposer (and ideally the executor and canceller) roles for the {Governor} to work properly.\n Using this model means the proposal will be operated by the {TimelockController} and not by the {Governor}. Thus,\n the assets and permissions must be attached to the {TimelockController}. Any asset sent to the {Governor} will be\n inaccessible from a proposal, unless executed via {Governor-relay}.\n WARNING: Setting up the TimelockController to have additional proposers or cancellers besides the governor is very\n risky, as it grants them the ability to: 1) execute operations as the timelock, and thus possibly performing\n operations or accessing funds that are expected to only be accessible through a vote, and 2) block governance\n proposals that have been approved by the voters, effectively executing a Denial of Service attack."},"fullyImplemented":false,"id":4366,"linearizedBaseContracts":[4366,2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"GovernorTimelockControl","nameLocation":"1517:23:7","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":4038,"mutability":"mutable","name":"_timelock","nameLocation":"1586:9:7","nodeType":"VariableDeclaration","scope":4366,"src":"1559:36:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"},"typeName":{"id":4037,"nodeType":"UserDefinedTypeName","pathNode":{"id":4036,"name":"TimelockController","nameLocations":["1559:18:7"],"nodeType":"IdentifierPath","referencedDeclaration":3608,"src":"1559:18:7"},"referencedDeclaration":3608,"src":"1559:18:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"visibility":"private"},{"constant":false,"id":4042,"mutability":"mutable","name":"_timelockIds","nameLocation":"1648:12:7","nodeType":"VariableDeclaration","scope":4366,"src":"1601:59:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"typeName":{"id":4041,"keyName":"proposalId","keyNameLocation":"1617:10:7","keyType":{"id":4039,"name":"uint256","nodeType":"ElementaryTypeName","src":"1609:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1601:38:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4040,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1631:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},"visibility":"private"},{"anonymous":false,"documentation":{"id":4043,"nodeType":"StructuredDocumentation","src":"1667:101:7","text":" @dev Emitted when the timelock controller used for proposal execution is modified."},"eventSelector":"08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401","id":4049,"name":"TimelockChange","nameLocation":"1779:14:7","nodeType":"EventDefinition","parameters":{"id":4048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4045,"indexed":false,"mutability":"mutable","name":"oldTimelock","nameLocation":"1802:11:7","nodeType":"VariableDeclaration","scope":4049,"src":"1794:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4044,"name":"address","nodeType":"ElementaryTypeName","src":"1794:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4047,"indexed":false,"mutability":"mutable","name":"newTimelock","nameLocation":"1823:11:7","nodeType":"VariableDeclaration","scope":4049,"src":"1815:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4046,"name":"address","nodeType":"ElementaryTypeName","src":"1815:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1793:42:7"},"src":"1773:63:7"},{"body":{"id":4060,"nodeType":"Block","src":"1936:49:7","statements":[{"expression":{"arguments":[{"id":4057,"name":"timelockAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4053,"src":"1962:15:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4056,"name":"_updateTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4346,"src":"1946:15:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_TimelockController_$3608_$returns$__$","typeString":"function (contract TimelockController)"}},"id":4058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1946:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4059,"nodeType":"ExpressionStatement","src":"1946:32:7"}]},"documentation":{"id":4050,"nodeType":"StructuredDocumentation","src":"1842:41:7","text":" @dev Set the timelock."},"id":4061,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4054,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4053,"mutability":"mutable","name":"timelockAddress","nameLocation":"1919:15:7","nodeType":"VariableDeclaration","scope":4061,"src":"1900:34:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"},"typeName":{"id":4052,"nodeType":"UserDefinedTypeName","pathNode":{"id":4051,"name":"TimelockController","nameLocations":["1900:18:7"],"nodeType":"IdentifierPath","referencedDeclaration":3608,"src":"1900:18:7"},"referencedDeclaration":3608,"src":"1900:18:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"visibility":"internal"}],"src":"1899:36:7"},"returnParameters":{"id":4055,"nodeType":"ParameterList","parameters":[],"src":"1936:0:7"},"scope":4366,"src":"1888:97:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[708],"body":{"id":4115,"nodeType":"Block","src":"2211:652:7","statements":[{"assignments":[4073],"declarations":[{"constant":false,"id":4073,"mutability":"mutable","name":"currentState","nameLocation":"2235:12:7","nodeType":"VariableDeclaration","scope":4115,"src":"2221:26:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":4072,"nodeType":"UserDefinedTypeName","pathNode":{"id":4071,"name":"ProposalState","nameLocations":["2221:13:7"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"2221:13:7"},"referencedDeclaration":2154,"src":"2221:13:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"id":4078,"initialValue":{"arguments":[{"id":4076,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4064,"src":"2262:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4074,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2250:5:7","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorTimelockControl_$4366_$","typeString":"type(contract super GovernorTimelockControl)"}},"id":4075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2256:5:7","memberName":"state","nodeType":"MemberAccess","referencedDeclaration":708,"src":"2250:11:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":4077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2250:23:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"nodeType":"VariableDeclarationStatement","src":"2221:52:7"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"id":4082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4079,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4073,"src":"2288:12:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":4080,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"2304:13:7","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4081,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2318:6:7","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2151,"src":"2304:20:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"src":"2288:36:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4086,"nodeType":"IfStatement","src":"2284:86:7","trueBody":{"id":4085,"nodeType":"Block","src":"2326:44:7","statements":[{"expression":{"id":4083,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4073,"src":"2347:12:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4070,"id":4084,"nodeType":"Return","src":"2340:19:7"}]}},{"assignments":[4088],"declarations":[{"constant":false,"id":4088,"mutability":"mutable","name":"queueid","nameLocation":"2388:7:7","nodeType":"VariableDeclaration","scope":4115,"src":"2380:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4087,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2380:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4092,"initialValue":{"baseExpression":{"id":4089,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"2398:12:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4091,"indexExpression":{"id":4090,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4064,"src":"2411:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2398:24:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2380:42:7"},{"condition":{"arguments":[{"id":4095,"name":"queueid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4088,"src":"2465:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4093,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"2436:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2446:18:7","memberName":"isOperationPending","nodeType":"MemberAccess","referencedDeclaration":2898,"src":"2436:28:7","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view external returns (bool)"}},"id":4096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2436:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"arguments":[{"id":4103,"name":"queueid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4088,"src":"2563:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4101,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"2537:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2547:15:7","memberName":"isOperationDone","nodeType":"MemberAccess","referencedDeclaration":2930,"src":"2537:25:7","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view external returns (bool)"}},"id":4104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2537:34:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4112,"nodeType":"Block","src":"2718:139:7","statements":[{"expression":{"expression":{"id":4109,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"2824:13:7","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4110,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2838:8:7","memberName":"Canceled","nodeType":"MemberAccess","referencedDeclaration":2148,"src":"2824:22:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4070,"id":4111,"nodeType":"Return","src":"2817:29:7"}]},"id":4113,"nodeType":"IfStatement","src":"2533:324:7","trueBody":{"id":4108,"nodeType":"Block","src":"2573:139:7","statements":[{"expression":{"expression":{"id":4105,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"2679:13:7","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4106,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2693:8:7","memberName":"Executed","nodeType":"MemberAccess","referencedDeclaration":2153,"src":"2679:22:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4070,"id":4107,"nodeType":"Return","src":"2672:29:7"}]}},"id":4114,"nodeType":"IfStatement","src":"2432:425:7","trueBody":{"id":4100,"nodeType":"Block","src":"2475:52:7","statements":[{"expression":{"expression":{"id":4097,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"2496:13:7","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2154_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4098,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2510:6:7","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2151,"src":"2496:20:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4070,"id":4099,"nodeType":"Return","src":"2489:27:7"}]}}]},"documentation":{"id":4062,"nodeType":"StructuredDocumentation","src":"1991:127:7","text":" @dev Overridden version of the {Governor-state} function that considers the status reported by the timelock."},"functionSelector":"3e4f49e6","id":4116,"implemented":true,"kind":"function","modifiers":[],"name":"state","nameLocation":"2132:5:7","nodeType":"FunctionDefinition","overrides":{"id":4066,"nodeType":"OverrideSpecifier","overrides":[],"src":"2178:8:7"},"parameters":{"id":4065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4064,"mutability":"mutable","name":"proposalId","nameLocation":"2146:10:7","nodeType":"VariableDeclaration","scope":4116,"src":"2138:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4063,"name":"uint256","nodeType":"ElementaryTypeName","src":"2138:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2137:20:7"},"returnParameters":{"id":4070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4069,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4116,"src":"2196:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":4068,"nodeType":"UserDefinedTypeName","pathNode":{"id":4067,"name":"ProposalState","nameLocations":["2196:13:7"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"2196:13:7"},"referencedDeclaration":2154,"src":"2196:13:7","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"2195:15:7"},"scope":4366,"src":"2123:740:7","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4127,"nodeType":"Block","src":"3008:42:7","statements":[{"expression":{"arguments":[{"id":4124,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"3033:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4123,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3025:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4122,"name":"address","nodeType":"ElementaryTypeName","src":"3025:7:7","typeDescriptions":{}}},"id":4125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3025:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4121,"id":4126,"nodeType":"Return","src":"3018:25:7"}]},"documentation":{"id":4117,"nodeType":"StructuredDocumentation","src":"2869:76:7","text":" @dev Public accessor to check the address of the timelock"},"functionSelector":"d33219b4","id":4128,"implemented":true,"kind":"function","modifiers":[],"name":"timelock","nameLocation":"2959:8:7","nodeType":"FunctionDefinition","parameters":{"id":4118,"nodeType":"ParameterList","parameters":[],"src":"2967:2:7"},"returnParameters":{"id":4121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4120,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4128,"src":"2999:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4119,"name":"address","nodeType":"ElementaryTypeName","src":"2999:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2998:9:7"},"scope":4366,"src":"2950:100:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[789],"body":{"id":4139,"nodeType":"Block","src":"3205:28:7","statements":[{"expression":{"hexValue":"74727565","id":4137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3222:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":4136,"id":4138,"nodeType":"Return","src":"3215:11:7"}]},"documentation":{"id":4129,"nodeType":"StructuredDocumentation","src":"3056:61:7","text":" @dev See {IGovernor-proposalNeedsQueuing}."},"functionSelector":"a9a95294","id":4140,"implemented":true,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"3131:20:7","nodeType":"FunctionDefinition","overrides":{"id":4133,"nodeType":"OverrideSpecifier","overrides":[],"src":"3181:8:7"},"parameters":{"id":4132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4131,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4140,"src":"3152:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4130,"name":"uint256","nodeType":"ElementaryTypeName","src":"3152:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3151:9:7"},"returnParameters":{"id":4136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4135,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4140,"src":"3199:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4134,"name":"bool","nodeType":"ElementaryTypeName","src":"3199:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3198:6:7"},"scope":4366,"src":"3122:111:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1195],"body":{"id":4204,"nodeType":"Block","src":"3550:351:7","statements":[{"assignments":[4161],"declarations":[{"constant":false,"id":4161,"mutability":"mutable","name":"delay","nameLocation":"3568:5:7","nodeType":"VariableDeclaration","scope":4204,"src":"3560:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4160,"name":"uint256","nodeType":"ElementaryTypeName","src":"3560:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4165,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4162,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"3576:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3586:11:7","memberName":"getMinDelay","nodeType":"MemberAccess","referencedDeclaration":2997,"src":"3576:21:7","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":4164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3576:23:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3560:39:7"},{"assignments":[4167],"declarations":[{"constant":false,"id":4167,"mutability":"mutable","name":"salt","nameLocation":"3618:4:7","nodeType":"VariableDeclaration","scope":4204,"src":"3610:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4166,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3610:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4171,"initialValue":{"arguments":[{"id":4169,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4154,"src":"3639:15:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4168,"name":"_timelockSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4365,"src":"3625:13:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":4170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3625:30:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"3610:45:7"},{"expression":{"id":4183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4172,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"3665:12:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4174,"indexExpression":{"id":4173,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4143,"src":"3678:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3665:24:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4177,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4146,"src":"3721:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4178,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4149,"src":"3730:6:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4179,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4152,"src":"3738:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"30","id":4180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3749:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":4181,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4167,"src":"3752:4:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4175,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"3692:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3702:18:7","memberName":"hashOperationBatch","nodeType":"MemberAccess","referencedDeclaration":3056,"src":"3692:28:7","typeDescriptions":{"typeIdentifier":"t_function_external_pure$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32,bytes32) pure external returns (bytes32)"}},"id":4182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3692:65:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3665:92:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":4184,"nodeType":"ExpressionStatement","src":"3665:92:7"},{"expression":{"arguments":[{"id":4188,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4146,"src":"3791:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4189,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4149,"src":"3800:6:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4190,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4152,"src":"3808:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"30","id":4191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3819:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":4192,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4167,"src":"3822:4:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4193,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4161,"src":"3828:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4185,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"3767:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3777:13:7","memberName":"scheduleBatch","nodeType":"MemberAccess","referencedDeclaration":3216,"src":"3767:23:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32,bytes32,uint256) external"}},"id":4194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3767:67:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4195,"nodeType":"ExpressionStatement","src":"3767:67:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4198,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3870:5:7","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3876:9:7","memberName":"timestamp","nodeType":"MemberAccess","src":"3870:15:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4200,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4161,"src":"3888:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3870:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4196,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"3852:8:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":4197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3861:8:7","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"3852:17:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":4202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3852:42:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4159,"id":4203,"nodeType":"Return","src":"3845:49:7"}]},"documentation":{"id":4141,"nodeType":"StructuredDocumentation","src":"3239:69:7","text":" @dev Function to queue a proposal to the timelock."},"id":4205,"implemented":true,"kind":"function","modifiers":[],"name":"_queueOperations","nameLocation":"3322:16:7","nodeType":"FunctionDefinition","overrides":{"id":4156,"nodeType":"OverrideSpecifier","overrides":[],"src":"3524:8:7"},"parameters":{"id":4155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4143,"mutability":"mutable","name":"proposalId","nameLocation":"3356:10:7","nodeType":"VariableDeclaration","scope":4205,"src":"3348:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4142,"name":"uint256","nodeType":"ElementaryTypeName","src":"3348:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4146,"mutability":"mutable","name":"targets","nameLocation":"3393:7:7","nodeType":"VariableDeclaration","scope":4205,"src":"3376:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4144,"name":"address","nodeType":"ElementaryTypeName","src":"3376:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4145,"nodeType":"ArrayTypeName","src":"3376:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4149,"mutability":"mutable","name":"values","nameLocation":"3427:6:7","nodeType":"VariableDeclaration","scope":4205,"src":"3410:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4147,"name":"uint256","nodeType":"ElementaryTypeName","src":"3410:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4148,"nodeType":"ArrayTypeName","src":"3410:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4152,"mutability":"mutable","name":"calldatas","nameLocation":"3458:9:7","nodeType":"VariableDeclaration","scope":4205,"src":"3443:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4150,"name":"bytes","nodeType":"ElementaryTypeName","src":"3443:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4151,"nodeType":"ArrayTypeName","src":"3443:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":4154,"mutability":"mutable","name":"descriptionHash","nameLocation":"3485:15:7","nodeType":"VariableDeclaration","scope":4205,"src":"3477:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4153,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3477:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3338:168:7"},"returnParameters":{"id":4159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4158,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4205,"src":"3542:6:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4157,"name":"uint48","nodeType":"ElementaryTypeName","src":"3542:6:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3541:8:7"},"scope":4366,"src":"3313:588:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1372],"body":{"id":4243,"nodeType":"Block","src":"4289:210:7","statements":[{"expression":{"arguments":[{"id":4229,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4211,"src":"4359:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4230,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4214,"src":"4368:6:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4231,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4217,"src":"4376:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"30","id":4232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4387:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"arguments":[{"id":4234,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4219,"src":"4404:15:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4233,"name":"_timelockSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4365,"src":"4390:13:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":4235,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4390:30:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4223,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"4318:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4328:12:7","memberName":"executeBatch","nodeType":"MemberAccess","referencedDeclaration":3458,"src":"4318:22:7","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32,bytes32) payable external"}},"id":4228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":4226,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4348:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4352:5:7","memberName":"value","nodeType":"MemberAccess","src":"4348:9:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4318:40:7","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$_t_bytes32_$returns$__$value","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32,bytes32) payable external"}},"id":4236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4318:103:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4237,"nodeType":"ExpressionStatement","src":"4318:103:7"},{"expression":{"id":4241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"4461:31:7","subExpression":{"baseExpression":{"id":4238,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"4468:12:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4240,"indexExpression":{"id":4239,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4208,"src":"4481:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4468:24:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4242,"nodeType":"ExpressionStatement","src":"4461:31:7"}]},"documentation":{"id":4206,"nodeType":"StructuredDocumentation","src":"3907:155:7","text":" @dev Overridden version of the {Governor-_executeOperations} function that runs the already queued proposal\n through the timelock."},"id":4244,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperations","nameLocation":"4076:18:7","nodeType":"FunctionDefinition","overrides":{"id":4221,"nodeType":"OverrideSpecifier","overrides":[],"src":"4280:8:7"},"parameters":{"id":4220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4208,"mutability":"mutable","name":"proposalId","nameLocation":"4112:10:7","nodeType":"VariableDeclaration","scope":4244,"src":"4104:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4207,"name":"uint256","nodeType":"ElementaryTypeName","src":"4104:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4211,"mutability":"mutable","name":"targets","nameLocation":"4149:7:7","nodeType":"VariableDeclaration","scope":4244,"src":"4132:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4209,"name":"address","nodeType":"ElementaryTypeName","src":"4132:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4210,"nodeType":"ArrayTypeName","src":"4132:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4214,"mutability":"mutable","name":"values","nameLocation":"4183:6:7","nodeType":"VariableDeclaration","scope":4244,"src":"4166:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4212,"name":"uint256","nodeType":"ElementaryTypeName","src":"4166:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4213,"nodeType":"ArrayTypeName","src":"4166:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4217,"mutability":"mutable","name":"calldatas","nameLocation":"4214:9:7","nodeType":"VariableDeclaration","scope":4244,"src":"4199:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4215,"name":"bytes","nodeType":"ElementaryTypeName","src":"4199:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4216,"nodeType":"ArrayTypeName","src":"4199:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":4219,"mutability":"mutable","name":"descriptionHash","nameLocation":"4241:15:7","nodeType":"VariableDeclaration","scope":4244,"src":"4233:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4218,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4233:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4094:168:7"},"returnParameters":{"id":4222,"nodeType":"ParameterList","parameters":[],"src":"4289:0:7"},"scope":4366,"src":"4067:432:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1487],"body":{"id":4296,"nodeType":"Block","src":"5109:353:7","statements":[{"assignments":[4263],"declarations":[{"constant":false,"id":4263,"mutability":"mutable","name":"proposalId","nameLocation":"5127:10:7","nodeType":"VariableDeclaration","scope":4296,"src":"5119:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4262,"name":"uint256","nodeType":"ElementaryTypeName","src":"5119:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4271,"initialValue":{"arguments":[{"id":4266,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4248,"src":"5154:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4267,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4251,"src":"5163:6:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4268,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4254,"src":"5171:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":4269,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4256,"src":"5182:15:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4264,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5140:5:7","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorTimelockControl_$4366_$","typeString":"type(contract super GovernorTimelockControl)"}},"id":4265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5146:7:7","memberName":"_cancel","nodeType":"MemberAccess","referencedDeclaration":1487,"src":"5140:13:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) returns (uint256)"}},"id":4270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5140:58:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5119:79:7"},{"assignments":[4273],"declarations":[{"constant":false,"id":4273,"mutability":"mutable","name":"timelockId","nameLocation":"5217:10:7","nodeType":"VariableDeclaration","scope":4296,"src":"5209:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4272,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5209:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4277,"initialValue":{"baseExpression":{"id":4274,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"5230:12:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4276,"indexExpression":{"id":4275,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4263,"src":"5243:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5230:24:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"5209:45:7"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":4280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4278,"name":"timelockId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4273,"src":"5268:10:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5282:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5268:15:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4293,"nodeType":"IfStatement","src":"5264:164:7","trueBody":{"id":4292,"nodeType":"Block","src":"5285:143:7","statements":[{"expression":{"arguments":[{"id":4284,"name":"timelockId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4273,"src":"5338:10:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4281,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"5321:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5331:6:7","memberName":"cancel","nodeType":"MemberAccess","referencedDeclaration":3300,"src":"5321:16:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32) external"}},"id":4285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5321:28:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4286,"nodeType":"ExpressionStatement","src":"5321:28:7"},{"expression":{"id":4290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"5386:31:7","subExpression":{"baseExpression":{"id":4287,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"5393:12:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4289,"indexExpression":{"id":4288,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4263,"src":"5406:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5393:24:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4291,"nodeType":"ExpressionStatement","src":"5386:31:7"}]}},{"expression":{"id":4294,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4263,"src":"5445:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4261,"id":4295,"nodeType":"Return","src":"5438:17:7"}]},"documentation":{"id":4245,"nodeType":"StructuredDocumentation","src":"4505:149:7","text":" @dev Overridden version of the {Governor-_cancel} function to cancel the timelocked proposal if it has already\n been queued."},"id":4297,"implemented":true,"kind":"function","modifiers":[],"name":"_cancel","nameLocation":"4917:7:7","nodeType":"FunctionDefinition","overrides":{"id":4258,"nodeType":"OverrideSpecifier","overrides":[],"src":"5082:8:7"},"parameters":{"id":4257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4248,"mutability":"mutable","name":"targets","nameLocation":"4951:7:7","nodeType":"VariableDeclaration","scope":4297,"src":"4934:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4246,"name":"address","nodeType":"ElementaryTypeName","src":"4934:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4247,"nodeType":"ArrayTypeName","src":"4934:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4251,"mutability":"mutable","name":"values","nameLocation":"4985:6:7","nodeType":"VariableDeclaration","scope":4297,"src":"4968:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4249,"name":"uint256","nodeType":"ElementaryTypeName","src":"4968:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4250,"nodeType":"ArrayTypeName","src":"4968:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4254,"mutability":"mutable","name":"calldatas","nameLocation":"5016:9:7","nodeType":"VariableDeclaration","scope":4297,"src":"5001:24:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4252,"name":"bytes","nodeType":"ElementaryTypeName","src":"5001:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4253,"nodeType":"ArrayTypeName","src":"5001:7:7","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":4256,"mutability":"mutable","name":"descriptionHash","nameLocation":"5043:15:7","nodeType":"VariableDeclaration","scope":4297,"src":"5035:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4255,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5035:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4924:140:7"},"returnParameters":{"id":4261,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4260,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4297,"src":"5100:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4259,"name":"uint256","nodeType":"ElementaryTypeName","src":"5100:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5099:9:7"},"scope":4366,"src":"4908:554:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1860],"body":{"id":4309,"nodeType":"Block","src":"5646:42:7","statements":[{"expression":{"arguments":[{"id":4306,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"5671:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4305,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5663:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4304,"name":"address","nodeType":"ElementaryTypeName","src":"5663:7:7","typeDescriptions":{}}},"id":4307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5663:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4303,"id":4308,"nodeType":"Return","src":"5656:25:7"}]},"documentation":{"id":4298,"nodeType":"StructuredDocumentation","src":"5468:103:7","text":" @dev Address through which the governor executes action. In this case, the timelock."},"id":4310,"implemented":true,"kind":"function","modifiers":[],"name":"_executor","nameLocation":"5585:9:7","nodeType":"FunctionDefinition","overrides":{"id":4300,"nodeType":"OverrideSpecifier","overrides":[],"src":"5619:8:7"},"parameters":{"id":4299,"nodeType":"ParameterList","parameters":[],"src":"5594:2:7"},"returnParameters":{"id":4303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4302,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4310,"src":"5637:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4301,"name":"address","nodeType":"ElementaryTypeName","src":"5637:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5636:9:7"},"scope":4366,"src":"5576:112:7","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":4323,"nodeType":"Block","src":"6114:45:7","statements":[{"expression":{"arguments":[{"id":4320,"name":"newTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4314,"src":"6140:11:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4319,"name":"_updateTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4346,"src":"6124:15:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_TimelockController_$3608_$returns$__$","typeString":"function (contract TimelockController)"}},"id":4321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6124:28:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4322,"nodeType":"ExpressionStatement","src":"6124:28:7"}]},"documentation":{"id":4311,"nodeType":"StructuredDocumentation","src":"5694:327:7","text":" @dev Public endpoint to update the underlying timelock instance. Restricted to the timelock itself, so updates\n must be proposed, scheduled, and executed through governance proposals.\n CAUTION: It is not recommended to change the timelock while there are other queued governance proposals."},"functionSelector":"a890c910","id":4324,"implemented":true,"kind":"function","modifiers":[{"id":4317,"kind":"modifierInvocation","modifierName":{"id":4316,"name":"onlyGovernance","nameLocations":["6099:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"6099:14:7"},"nodeType":"ModifierInvocation","src":"6099:14:7"}],"name":"updateTimelock","nameLocation":"6035:14:7","nodeType":"FunctionDefinition","parameters":{"id":4315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4314,"mutability":"mutable","name":"newTimelock","nameLocation":"6069:11:7","nodeType":"VariableDeclaration","scope":4324,"src":"6050:30:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"},"typeName":{"id":4313,"nodeType":"UserDefinedTypeName","pathNode":{"id":4312,"name":"TimelockController","nameLocations":["6050:18:7"],"nodeType":"IdentifierPath","referencedDeclaration":3608,"src":"6050:18:7"},"referencedDeclaration":3608,"src":"6050:18:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"visibility":"internal"}],"src":"6049:32:7"},"returnParameters":{"id":4318,"nodeType":"ParameterList","parameters":[],"src":"6114:0:7"},"scope":4366,"src":"6026:133:7","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":4345,"nodeType":"Block","src":"6230:111:7","statements":[{"eventCall":{"arguments":[{"arguments":[{"id":4333,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"6268:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4332,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6260:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4331,"name":"address","nodeType":"ElementaryTypeName","src":"6260:7:7","typeDescriptions":{}}},"id":4334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6260:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4337,"name":"newTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4327,"src":"6288:11:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}],"id":4336,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6280:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4335,"name":"address","nodeType":"ElementaryTypeName","src":"6280:7:7","typeDescriptions":{}}},"id":4338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6280:20:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4330,"name":"TimelockChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4049,"src":"6245:14:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":4339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6245:56:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4340,"nodeType":"EmitStatement","src":"6240:61:7"},{"expression":{"id":4343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4341,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"6311:9:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4342,"name":"newTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4327,"src":"6323:11:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"src":"6311:23:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"id":4344,"nodeType":"ExpressionStatement","src":"6311:23:7"}]},"id":4346,"implemented":true,"kind":"function","modifiers":[],"name":"_updateTimelock","nameLocation":"6174:15:7","nodeType":"FunctionDefinition","parameters":{"id":4328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4327,"mutability":"mutable","name":"newTimelock","nameLocation":"6209:11:7","nodeType":"VariableDeclaration","scope":4346,"src":"6190:30:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"},"typeName":{"id":4326,"nodeType":"UserDefinedTypeName","pathNode":{"id":4325,"name":"TimelockController","nameLocations":["6190:18:7"],"nodeType":"IdentifierPath","referencedDeclaration":3608,"src":"6190:18:7"},"referencedDeclaration":3608,"src":"6190:18:7","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}},"visibility":"internal"}],"src":"6189:32:7"},"returnParameters":{"id":4329,"nodeType":"ParameterList","parameters":[],"src":"6230:0:7"},"scope":4366,"src":"6165:176:7","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":4364,"nodeType":"Block","src":"6644:64:7","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":4362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":4358,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6677:4:7","typeDescriptions":{"typeIdentifier":"t_contract$_GovernorTimelockControl_$4366","typeString":"contract GovernorTimelockControl"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_GovernorTimelockControl_$4366","typeString":"contract GovernorTimelockControl"}],"id":4357,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6669:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4356,"name":"address","nodeType":"ElementaryTypeName","src":"6669:7:7","typeDescriptions":{}}},"id":4359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6669:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6661:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":4354,"name":"bytes20","nodeType":"ElementaryTypeName","src":"6661:7:7","typeDescriptions":{}}},"id":4360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6661:22:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":4361,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4349,"src":"6686:15:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"6661:40:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":4353,"id":4363,"nodeType":"Return","src":"6654:47:7"}]},"documentation":{"id":4347,"nodeType":"StructuredDocumentation","src":"6347:213:7","text":" @dev Computes the {TimelockController} operation salt.\n It is computed with the governor address itself to avoid collisions across governor instances using the\n same timelock."},"id":4365,"implemented":true,"kind":"function","modifiers":[],"name":"_timelockSalt","nameLocation":"6574:13:7","nodeType":"FunctionDefinition","parameters":{"id":4350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4349,"mutability":"mutable","name":"descriptionHash","nameLocation":"6596:15:7","nodeType":"VariableDeclaration","scope":4365,"src":"6588:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4348,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6588:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6587:25:7"},"returnParameters":{"id":4353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4352,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4365,"src":"6635:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4351,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6635:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6634:9:7"},"scope":4366,"src":"6565:143:7","stateMutability":"view","virtual":false,"visibility":"private"}],"scope":4367,"src":"1499:5211:7","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,6731,6750,6874,6876,10810],"usedEvents":[2264,2271,2276,2281,2294,2309,4049,5326]}],"src":"133:6578:7"},"id":7},"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol","exportedSymbols":{"Governor":[2134],"GovernorVotes":[4482],"IERC5805":[5357],"IVotes":[4760],"SafeCast":[12565],"Time":[14919]},"id":4483,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4368,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:8"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":4370,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4483,"sourceUnit":2135,"src":"149:41:8","symbolAliases":[{"foreign":{"id":4369,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2134,"src":"157:8:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","file":"../utils/IVotes.sol","id":4372,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4483,"sourceUnit":4761,"src":"191:43:8","symbolAliases":[{"foreign":{"id":4371,"name":"IVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4760,"src":"199:6:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5805.sol","file":"../../interfaces/IERC5805.sol","id":4374,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4483,"sourceUnit":5358,"src":"235:55:8","symbolAliases":[{"foreign":{"id":4373,"name":"IERC5805","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"243:8:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4376,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4483,"sourceUnit":12566,"src":"291:55:8","symbolAliases":[{"foreign":{"id":4375,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"299:8:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":4378,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4483,"sourceUnit":14920,"src":"347:48:8","symbolAliases":[{"foreign":{"id":4377,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14919,"src":"355:4:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4380,"name":"Governor","nameLocations":["570:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"570:8:8"},"id":4381,"nodeType":"InheritanceSpecifier","src":"570:8:8"}],"canonicalName":"GovernorVotes","contractDependencies":[],"contractKind":"contract","documentation":{"id":4379,"nodeType":"StructuredDocumentation","src":"397:137:8","text":" @dev Extension of {Governor} for voting weight extraction from an {ERC20Votes} token, or since v4.5 an {ERC721Votes}\n token."},"fullyImplemented":false,"id":4482,"linearizedBaseContracts":[4482,2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"GovernorVotes","nameLocation":"553:13:8","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":4384,"mutability":"immutable","name":"_token","nameLocation":"612:6:8","nodeType":"VariableDeclaration","scope":4482,"src":"585:33:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"},"typeName":{"id":4383,"nodeType":"UserDefinedTypeName","pathNode":{"id":4382,"name":"IERC5805","nameLocations":["585:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":5357,"src":"585:8:8"},"referencedDeclaration":5357,"src":"585:8:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"visibility":"private"},{"body":{"id":4399,"nodeType":"Block","src":"658:57:8","statements":[{"expression":{"id":4397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4390,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4384,"src":"668:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":4394,"name":"tokenAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4387,"src":"694:12:8","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4760","typeString":"contract IVotes"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IVotes_$4760","typeString":"contract IVotes"}],"id":4393,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"686:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4392,"name":"address","nodeType":"ElementaryTypeName","src":"686:7:8","typeDescriptions":{}}},"id":4395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"686:21:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4391,"name":"IERC5805","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"677:8:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC5805_$5357_$","typeString":"type(contract IERC5805)"}},"id":4396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"677:31:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"src":"668:40:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"id":4398,"nodeType":"ExpressionStatement","src":"668:40:8"}]},"id":4400,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4387,"mutability":"mutable","name":"tokenAddress","nameLocation":"644:12:8","nodeType":"VariableDeclaration","scope":4400,"src":"637:19:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4760","typeString":"contract IVotes"},"typeName":{"id":4386,"nodeType":"UserDefinedTypeName","pathNode":{"id":4385,"name":"IVotes","nameLocations":["637:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":4760,"src":"637:6:8"},"referencedDeclaration":4760,"src":"637:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4760","typeString":"contract IVotes"}},"visibility":"internal"}],"src":"636:21:8"},"returnParameters":{"id":4389,"nodeType":"ParameterList","parameters":[],"src":"658:0:8"},"scope":4482,"src":"625:90:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4409,"nodeType":"Block","src":"850:30:8","statements":[{"expression":{"id":4407,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4384,"src":"867:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"functionReturnParameters":4406,"id":4408,"nodeType":"Return","src":"860:13:8"}]},"documentation":{"id":4401,"nodeType":"StructuredDocumentation","src":"721:68:8","text":" @dev The token that voting power is sourced from."},"functionSelector":"fc0c546a","id":4410,"implemented":true,"kind":"function","modifiers":[],"name":"token","nameLocation":"803:5:8","nodeType":"FunctionDefinition","parameters":{"id":4402,"nodeType":"ParameterList","parameters":[],"src":"808:2:8"},"returnParameters":{"id":4406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4405,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4410,"src":"840:8:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"},"typeName":{"id":4404,"nodeType":"UserDefinedTypeName","pathNode":{"id":4403,"name":"IERC5805","nameLocations":["840:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":5357,"src":"840:8:8"},"referencedDeclaration":5357,"src":"840:8:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"visibility":"internal"}],"src":"839:10:8"},"scope":4482,"src":"794:86:8","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2095],"body":{"id":4435,"nodeType":"Block","src":"1120:161:8","statements":[{"clauses":[{"block":{"id":4426,"nodeType":"Block","src":"1177:41:8","statements":[{"expression":{"id":4424,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4422,"src":"1198:9:8","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4416,"id":4425,"nodeType":"Return","src":"1191:16:8"}]},"errorName":"","id":4427,"nodeType":"TryCatchClause","parameters":{"id":4423,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4422,"mutability":"mutable","name":"timepoint","nameLocation":"1166:9:8","nodeType":"VariableDeclaration","scope":4427,"src":"1159:16:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4421,"name":"uint48","nodeType":"ElementaryTypeName","src":"1159:6:8","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"1158:18:8"},"src":"1150:68:8"},{"block":{"id":4432,"nodeType":"Block","src":"1225:50:8","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4428,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14919,"src":"1246:4:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$14919_$","typeString":"type(library Time)"}},"id":4429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1251:11:8","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":14680,"src":"1246:16:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1246:18:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4416,"id":4431,"nodeType":"Return","src":"1239:25:8"}]},"errorName":"","id":4433,"nodeType":"TryCatchClause","src":"1219:56:8"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4417,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4410,"src":"1134:5:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5357_$","typeString":"function () view returns (contract IERC5805)"}},"id":4418,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1134:7:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"id":4419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1142:5:8","memberName":"clock","nodeType":"MemberAccess","referencedDeclaration":5365,"src":"1134:13:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint48_$","typeString":"function () view external returns (uint48)"}},"id":4420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1134:15:8","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":4434,"nodeType":"TryStatement","src":"1130:145:8"}]},"documentation":{"id":4411,"nodeType":"StructuredDocumentation","src":"886:166:8","text":" @dev Clock (as specified in ERC-6372) is set to match the token's clock. Fallback to block numbers if the token\n does not implement ERC-6372."},"functionSelector":"91ddadf4","id":4436,"implemented":true,"kind":"function","modifiers":[],"name":"clock","nameLocation":"1066:5:8","nodeType":"FunctionDefinition","overrides":{"id":4413,"nodeType":"OverrideSpecifier","overrides":[],"src":"1094:8:8"},"parameters":{"id":4412,"nodeType":"ParameterList","parameters":[],"src":"1071:2:8"},"returnParameters":{"id":4416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4415,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4436,"src":"1112:6:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4414,"name":"uint48","nodeType":"ElementaryTypeName","src":"1112:6:8","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"1111:8:8"},"scope":4482,"src":"1057:224:8","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2101],"body":{"id":4459,"nodeType":"Block","src":"1511:186:8","statements":[{"clauses":[{"block":{"id":4452,"nodeType":"Block","src":"1580:41:8","statements":[{"expression":{"id":4450,"name":"clockmode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4448,"src":"1601:9:8","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":4442,"id":4451,"nodeType":"Return","src":"1594:16:8"}]},"errorName":"","id":4453,"nodeType":"TryCatchClause","parameters":{"id":4449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4448,"mutability":"mutable","name":"clockmode","nameLocation":"1569:9:8","nodeType":"VariableDeclaration","scope":4453,"src":"1555:23:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4447,"name":"string","nodeType":"ElementaryTypeName","src":"1555:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1554:25:8"},"src":"1546:75:8"},{"block":{"id":4456,"nodeType":"Block","src":"1628:63:8","statements":[{"expression":{"hexValue":"6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74","id":4454,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1649:31:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f79d44e499ce83a99049e0b7ebf2d6f56e249303be3c14798235137af5ea536","typeString":"literal_string \"mode=blocknumber&from=default\""},"value":"mode=blocknumber&from=default"},"functionReturnParameters":4442,"id":4455,"nodeType":"Return","src":"1642:38:8"}]},"errorName":"","id":4457,"nodeType":"TryCatchClause","src":"1622:69:8"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4443,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4410,"src":"1525:5:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5357_$","typeString":"function () view returns (contract IERC5805)"}},"id":4444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1525:7:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"id":4445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1533:10:8","memberName":"CLOCK_MODE","nodeType":"MemberAccess","referencedDeclaration":5371,"src":"1525:18:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view external returns (string memory)"}},"id":4446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1525:20:8","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":4458,"nodeType":"TryStatement","src":"1521:170:8"}]},"documentation":{"id":4437,"nodeType":"StructuredDocumentation","src":"1287:91:8","text":" @dev Machine-readable description of the clock as specified in ERC-6372."},"functionSelector":"4bf5d7e9","id":4460,"implemented":true,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"1445:10:8","nodeType":"FunctionDefinition","overrides":{"id":4439,"nodeType":"OverrideSpecifier","overrides":[],"src":"1478:8:8"},"parameters":{"id":4438,"nodeType":"ParameterList","parameters":[],"src":"1455:2:8"},"returnParameters":{"id":4442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4441,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4460,"src":"1496:13:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4440,"name":"string","nodeType":"ElementaryTypeName","src":"1496:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1495:15:8"},"scope":4482,"src":"1436:261:8","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[857],"body":{"id":4480,"nodeType":"Block","src":"1981:64:8","statements":[{"expression":{"arguments":[{"id":4476,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4463,"src":"2019:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4477,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4465,"src":"2028:9:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4473,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4410,"src":"1998:5:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5357_$","typeString":"function () view returns (contract IERC5805)"}},"id":4474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1998:7:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"id":4475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2006:12:8","memberName":"getPastVotes","nodeType":"MemberAccess","referencedDeclaration":4721,"src":"1998:20:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) view external returns (uint256)"}},"id":4478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1998:40:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4472,"id":4479,"nodeType":"Return","src":"1991:47:8"}]},"documentation":{"id":4461,"nodeType":"StructuredDocumentation","src":"1703:114:8","text":" Read the voting weight from the token's built in snapshot mechanism (see {Governor-_getVotes})."},"id":4481,"implemented":true,"kind":"function","modifiers":[],"name":"_getVotes","nameLocation":"1831:9:8","nodeType":"FunctionDefinition","overrides":{"id":4469,"nodeType":"OverrideSpecifier","overrides":[],"src":"1954:8:8"},"parameters":{"id":4468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4463,"mutability":"mutable","name":"account","nameLocation":"1858:7:8","nodeType":"VariableDeclaration","scope":4481,"src":"1850:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4462,"name":"address","nodeType":"ElementaryTypeName","src":"1850:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4465,"mutability":"mutable","name":"timepoint","nameLocation":"1883:9:8","nodeType":"VariableDeclaration","scope":4481,"src":"1875:17:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4464,"name":"uint256","nodeType":"ElementaryTypeName","src":"1875:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4467,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4481,"src":"1902:12:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4466,"name":"bytes","nodeType":"ElementaryTypeName","src":"1902:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1840:91:8"},"returnParameters":{"id":4472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4471,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4481,"src":"1972:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4470,"name":"uint256","nodeType":"ElementaryTypeName","src":"1972:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1971:9:8"},"scope":4482,"src":"1822:223:8","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":4483,"src":"535:1512:8","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,6731,6750,6874,6876,10810],"usedEvents":[2264,2271,2276,2281,2294,2309,5326]}],"src":"123:1925:8"},"id":8},"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol","exportedSymbols":{"Checkpoints":[14290],"GovernorVotes":[4482],"GovernorVotesQuorumFraction":[4677],"SafeCast":[12565]},"id":4678,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4484,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"137:24:9"},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol","file":"./GovernorVotes.sol","id":4486,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4678,"sourceUnit":4483,"src":"163:50:9","symbolAliases":[{"foreign":{"id":4485,"name":"GovernorVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4482,"src":"171:13:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4488,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4678,"sourceUnit":12566,"src":"214:55:9","symbolAliases":[{"foreign":{"id":4487,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"222:8:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","file":"../../utils/structs/Checkpoints.sol","id":4490,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4678,"sourceUnit":14291,"src":"270:64:9","symbolAliases":[{"foreign":{"id":4489,"name":"Checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14290,"src":"278:11:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4492,"name":"GovernorVotes","nameLocations":["542:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":4482,"src":"542:13:9"},"id":4493,"nodeType":"InheritanceSpecifier","src":"542:13:9"}],"canonicalName":"GovernorVotesQuorumFraction","contractDependencies":[],"contractKind":"contract","documentation":{"id":4491,"nodeType":"StructuredDocumentation","src":"336:156:9","text":" @dev Extension of {Governor} for voting weight extraction from an {ERC20Votes} token and a quorum expressed as a\n fraction of the total supply."},"fullyImplemented":false,"id":4677,"linearizedBaseContracts":[4677,4482,2134,5551,6401,2588,5372,6808,8976,5346,9182,9194,6718],"name":"GovernorVotesQuorumFraction","nameLocation":"511:27:9","nodeType":"ContractDefinition","nodes":[{"global":false,"id":4497,"libraryName":{"id":4494,"name":"Checkpoints","nameLocations":["568:11:9"],"nodeType":"IdentifierPath","referencedDeclaration":14290,"src":"568:11:9"},"nodeType":"UsingForDirective","src":"562:43:9","typeName":{"id":4496,"nodeType":"UserDefinedTypeName","pathNode":{"id":4495,"name":"Checkpoints.Trace208","nameLocations":["584:11:9","596:8:9"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"584:20:9"},"referencedDeclaration":13246,"src":"584:20:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}}},{"constant":false,"id":4500,"mutability":"mutable","name":"_quorumNumeratorHistory","nameLocation":"640:23:9","nodeType":"VariableDeclaration","scope":4677,"src":"611:52:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":4499,"nodeType":"UserDefinedTypeName","pathNode":{"id":4498,"name":"Checkpoints.Trace208","nameLocations":["611:11:9","623:8:9"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"611:20:9"},"referencedDeclaration":13246,"src":"611:20:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"private"},{"anonymous":false,"eventSelector":"0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997","id":4506,"name":"QuorumNumeratorUpdated","nameLocation":"676:22:9","nodeType":"EventDefinition","parameters":{"id":4505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4502,"indexed":false,"mutability":"mutable","name":"oldQuorumNumerator","nameLocation":"707:18:9","nodeType":"VariableDeclaration","scope":4506,"src":"699:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4501,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4504,"indexed":false,"mutability":"mutable","name":"newQuorumNumerator","nameLocation":"735:18:9","nodeType":"VariableDeclaration","scope":4506,"src":"727:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4503,"name":"uint256","nodeType":"ElementaryTypeName","src":"727:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"698:56:9"},"src":"670:85:9"},{"documentation":{"id":4507,"nodeType":"StructuredDocumentation","src":"761:63:9","text":" @dev The quorum set is not a valid fraction."},"errorSelector":"243e5445","id":4513,"name":"GovernorInvalidQuorumFraction","nameLocation":"835:29:9","nodeType":"ErrorDefinition","parameters":{"id":4512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4509,"mutability":"mutable","name":"quorumNumerator","nameLocation":"873:15:9","nodeType":"VariableDeclaration","scope":4513,"src":"865:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4508,"name":"uint256","nodeType":"ElementaryTypeName","src":"865:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4511,"mutability":"mutable","name":"quorumDenominator","nameLocation":"898:17:9","nodeType":"VariableDeclaration","scope":4513,"src":"890:25:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4510,"name":"uint256","nodeType":"ElementaryTypeName","src":"890:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"864:52:9"},"src":"829:88:9"},{"body":{"id":4523,"nodeType":"Block","src":"1346:61:9","statements":[{"expression":{"arguments":[{"id":4520,"name":"quorumNumeratorValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4516,"src":"1379:20:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4519,"name":"_updateQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4676,"src":"1356:22:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":4521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1356:44:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4522,"nodeType":"ExpressionStatement","src":"1356:44:9"}]},"documentation":{"id":4514,"nodeType":"StructuredDocumentation","src":"923:376:9","text":" @dev Initialize quorum as a fraction of the token's total supply.\n The fraction is specified as `numerator / denominator`. By default the denominator is 100, so quorum is\n specified as a percent: a numerator of 10 corresponds to quorum being 10% of total supply. The denominator can be\n customized by overriding {quorumDenominator}."},"id":4524,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4516,"mutability":"mutable","name":"quorumNumeratorValue","nameLocation":"1324:20:9","nodeType":"VariableDeclaration","scope":4524,"src":"1316:28:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4515,"name":"uint256","nodeType":"ElementaryTypeName","src":"1316:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1315:30:9"},"returnParameters":{"id":4518,"nodeType":"ParameterList","parameters":[],"src":"1346:0:9"},"scope":4677,"src":"1304:103:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4534,"nodeType":"Block","src":"1569:56:9","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4530,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"1586:23:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4531,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1610:6:9","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"1586:30:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":4532,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1586:32:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4529,"id":4533,"nodeType":"Return","src":"1579:39:9"}]},"documentation":{"id":4525,"nodeType":"StructuredDocumentation","src":"1413:86:9","text":" @dev Returns the current quorum numerator. See {quorumDenominator}."},"functionSelector":"a7713a70","id":4535,"implemented":true,"kind":"function","modifiers":[],"name":"quorumNumerator","nameLocation":"1513:15:9","nodeType":"FunctionDefinition","parameters":{"id":4526,"nodeType":"ParameterList","parameters":[],"src":"1528:2:9"},"returnParameters":{"id":4529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4528,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4535,"src":"1560:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4527,"name":"uint256","nodeType":"ElementaryTypeName","src":"1560:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1559:9:9"},"scope":4677,"src":"1504:121:9","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4586,"nodeType":"Block","src":"1820:534:9","statements":[{"assignments":[4544],"declarations":[{"constant":false,"id":4544,"mutability":"mutable","name":"length","nameLocation":"1838:6:9","nodeType":"VariableDeclaration","scope":4586,"src":"1830:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4543,"name":"uint256","nodeType":"ElementaryTypeName","src":"1830:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4548,"initialValue":{"expression":{"expression":{"id":4545,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"1847:23:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4546,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1871:12:9","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"1847:36:9","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":4547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1884:6:9","memberName":"length","nodeType":"MemberAccess","src":"1847:43:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1830:60:9"},{"assignments":[4553],"declarations":[{"constant":false,"id":4553,"mutability":"mutable","name":"latest","nameLocation":"1993:6:9","nodeType":"VariableDeclaration","scope":4586,"src":"1959:40:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":4552,"nodeType":"UserDefinedTypeName","pathNode":{"id":4551,"name":"Checkpoints.Checkpoint208","nameLocations":["1959:11:9","1971:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"1959:25:9"},"referencedDeclaration":13251,"src":"1959:25:9","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"id":4560,"initialValue":{"baseExpression":{"expression":{"id":4554,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"2002:23:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4555,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2026:12:9","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"2002:36:9","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":4559,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4556,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4544,"src":"2039:6:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":4557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2048:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2039:10:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2002:48:9","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref"}},"nodeType":"VariableDeclarationStatement","src":"1959:91:9"},{"assignments":[4562],"declarations":[{"constant":false,"id":4562,"mutability":"mutable","name":"latestKey","nameLocation":"2067:9:9","nodeType":"VariableDeclaration","scope":4586,"src":"2060:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4561,"name":"uint48","nodeType":"ElementaryTypeName","src":"2060:6:9","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":4565,"initialValue":{"expression":{"id":4563,"name":"latest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4553,"src":"2079:6:9","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":4564,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2086:4:9","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"2079:11:9","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"2060:30:9"},{"assignments":[4567],"declarations":[{"constant":false,"id":4567,"mutability":"mutable","name":"latestValue","nameLocation":"2108:11:9","nodeType":"VariableDeclaration","scope":4586,"src":"2100:19:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":4566,"name":"uint208","nodeType":"ElementaryTypeName","src":"2100:7:9","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"id":4570,"initialValue":{"expression":{"id":4568,"name":"latest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4553,"src":"2122:6:9","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":4569,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2129:6:9","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"2122:13:9","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"VariableDeclarationStatement","src":"2100:35:9"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4571,"name":"latestKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4562,"src":"2149:9:9","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":4572,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4538,"src":"2162:9:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2149:22:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4577,"nodeType":"IfStatement","src":"2145:71:9","trueBody":{"id":4576,"nodeType":"Block","src":"2173:43:9","statements":[{"expression":{"id":4574,"name":"latestValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4567,"src":"2194:11:9","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4542,"id":4575,"nodeType":"Return","src":"2187:18:9"}]}},{"expression":{"arguments":[{"arguments":[{"id":4582,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4538,"src":"2336:9:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4580,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"2318:8:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":4581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2327:8:9","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"2318:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":4583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2318:28:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"id":4578,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"2276:23:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4579,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2300:17:9","memberName":"upperLookupRecent","nodeType":"MemberAccess","referencedDeclaration":13441,"src":"2276:41:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint48_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48) view returns (uint208)"}},"id":4584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2276:71:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4542,"id":4585,"nodeType":"Return","src":"2269:78:9"}]},"documentation":{"id":4536,"nodeType":"StructuredDocumentation","src":"1631:102:9","text":" @dev Returns the quorum numerator at a specific timepoint. See {quorumDenominator}."},"functionSelector":"60c4247f","id":4587,"implemented":true,"kind":"function","modifiers":[],"name":"quorumNumerator","nameLocation":"1747:15:9","nodeType":"FunctionDefinition","parameters":{"id":4539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4538,"mutability":"mutable","name":"timepoint","nameLocation":"1771:9:9","nodeType":"VariableDeclaration","scope":4587,"src":"1763:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4537,"name":"uint256","nodeType":"ElementaryTypeName","src":"1763:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1762:19:9"},"returnParameters":{"id":4542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4541,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4587,"src":"1811:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4540,"name":"uint256","nodeType":"ElementaryTypeName","src":"1811:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1810:9:9"},"scope":4677,"src":"1738:616:9","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4595,"nodeType":"Block","src":"2527:27:9","statements":[{"expression":{"hexValue":"313030","id":4593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2544:3:9","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"functionReturnParameters":4592,"id":4594,"nodeType":"Return","src":"2537:10:9"}]},"documentation":{"id":4588,"nodeType":"StructuredDocumentation","src":"2360:95:9","text":" @dev Returns the quorum denominator. Defaults to 100, but may be overridden."},"functionSelector":"97c3d334","id":4596,"implemented":true,"kind":"function","modifiers":[],"name":"quorumDenominator","nameLocation":"2469:17:9","nodeType":"FunctionDefinition","parameters":{"id":4589,"nodeType":"ParameterList","parameters":[],"src":"2486:2:9"},"returnParameters":{"id":4592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4591,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4596,"src":"2518:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4590,"name":"uint256","nodeType":"ElementaryTypeName","src":"2518:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2517:9:9"},"scope":4677,"src":"2460:94:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2121],"body":{"id":4619,"nodeType":"Block","src":"2771:114:9","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4608,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4599,"src":"2816:9:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4605,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4410,"src":"2789:5:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5357_$","typeString":"function () view returns (contract IERC5805)"}},"id":4606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2789:7:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5357","typeString":"contract IERC5805"}},"id":4607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2797:18:9","memberName":"getPastTotalSupply","nodeType":"MemberAccess","referencedDeclaration":4729,"src":"2789:26:9","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":4609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2789:37:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":4611,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4599,"src":"2845:9:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4610,"name":"quorumNumerator","nodeType":"Identifier","overloadedDeclarations":[4535,4587],"referencedDeclaration":4587,"src":"2829:15:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":4612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2829:26:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2789:66:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4614,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2788:68:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":4615,"name":"quorumDenominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4596,"src":"2859:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2859:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2788:90:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4604,"id":4618,"nodeType":"Return","src":"2781:97:9"}]},"documentation":{"id":4597,"nodeType":"StructuredDocumentation","src":"2560:124:9","text":" @dev Returns the quorum for a timepoint, in terms of number of votes: `supply * numerator / denominator`."},"functionSelector":"f8ce560a","id":4620,"implemented":true,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"2698:6:9","nodeType":"FunctionDefinition","overrides":{"id":4601,"nodeType":"OverrideSpecifier","overrides":[],"src":"2744:8:9"},"parameters":{"id":4600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4599,"mutability":"mutable","name":"timepoint","nameLocation":"2713:9:9","nodeType":"VariableDeclaration","scope":4620,"src":"2705:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4598,"name":"uint256","nodeType":"ElementaryTypeName","src":"2705:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2704:19:9"},"returnParameters":{"id":4604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4603,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4620,"src":"2762:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4602,"name":"uint256","nodeType":"ElementaryTypeName","src":"2762:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2761:9:9"},"scope":4677,"src":"2689:196:9","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4632,"nodeType":"Block","src":"3252:59:9","statements":[{"expression":{"arguments":[{"id":4629,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4623,"src":"3285:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4628,"name":"_updateQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4676,"src":"3262:22:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":4630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3262:42:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4631,"nodeType":"ExpressionStatement","src":"3262:42:9"}]},"documentation":{"id":4621,"nodeType":"StructuredDocumentation","src":"2891:265:9","text":" @dev Changes the quorum numerator.\n Emits a {QuorumNumeratorUpdated} event.\n Requirements:\n - Must be called through a governance proposal.\n - New numerator must be smaller or equal to the denominator."},"functionSelector":"06f3f9e6","id":4633,"implemented":true,"kind":"function","modifiers":[{"id":4626,"kind":"modifierInvocation","modifierName":{"id":4625,"name":"onlyGovernance","nameLocations":["3237:14:9"],"nodeType":"IdentifierPath","referencedDeclaration":486,"src":"3237:14:9"},"nodeType":"ModifierInvocation","src":"3237:14:9"}],"name":"updateQuorumNumerator","nameLocation":"3170:21:9","nodeType":"FunctionDefinition","parameters":{"id":4624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4623,"mutability":"mutable","name":"newQuorumNumerator","nameLocation":"3200:18:9","nodeType":"VariableDeclaration","scope":4633,"src":"3192:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4622,"name":"uint256","nodeType":"ElementaryTypeName","src":"3192:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3191:28:9"},"returnParameters":{"id":4627,"nodeType":"ParameterList","parameters":[],"src":"3252:0:9"},"scope":4677,"src":"3161:150:9","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":4675,"nodeType":"Block","src":"3609:421:9","statements":[{"assignments":[4640],"declarations":[{"constant":false,"id":4640,"mutability":"mutable","name":"denominator","nameLocation":"3627:11:9","nodeType":"VariableDeclaration","scope":4675,"src":"3619:19:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4639,"name":"uint256","nodeType":"ElementaryTypeName","src":"3619:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4643,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4641,"name":"quorumDenominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4596,"src":"3641:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3641:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3619:41:9"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4644,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4636,"src":"3674:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4645,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4640,"src":"3695:11:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3674:32:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4653,"nodeType":"IfStatement","src":"3670:132:9","trueBody":{"id":4652,"nodeType":"Block","src":"3708:94:9","statements":[{"errorCall":{"arguments":[{"id":4648,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4636,"src":"3759:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4649,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4640,"src":"3779:11:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4647,"name":"GovernorInvalidQuorumFraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4513,"src":"3729:29:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":4650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3729:62:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4651,"nodeType":"RevertStatement","src":"3722:69:9"}]}},{"assignments":[4655],"declarations":[{"constant":false,"id":4655,"mutability":"mutable","name":"oldQuorumNumerator","nameLocation":"3820:18:9","nodeType":"VariableDeclaration","scope":4675,"src":"3812:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4654,"name":"uint256","nodeType":"ElementaryTypeName","src":"3812:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4658,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4656,"name":"quorumNumerator","nodeType":"Identifier","overloadedDeclarations":[4535,4587],"referencedDeclaration":4535,"src":"3841:15:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3841:17:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3812:46:9"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":4662,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[4436],"referencedDeclaration":4436,"src":"3897:5:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3897:7:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"arguments":[{"id":4666,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4636,"src":"3925:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4664,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"3906:8:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":4665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3915:9:9","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":10995,"src":"3906:18:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":4667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3906:38:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"expression":{"id":4659,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4500,"src":"3868:23:9","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4661,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3892:4:9","memberName":"push","nodeType":"MemberAccess","referencedDeclaration":13274,"src":"3868:28:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint48_$_t_uint208_$returns$_t_uint208_$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48,uint208) returns (uint208,uint208)"}},"id":4668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3868:77:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"id":4669,"nodeType":"ExpressionStatement","src":"3868:77:9"},{"eventCall":{"arguments":[{"id":4671,"name":"oldQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4655,"src":"3984:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4672,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4636,"src":"4004:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4670,"name":"QuorumNumeratorUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4506,"src":"3961:22:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":4673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3961:62:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4674,"nodeType":"EmitStatement","src":"3956:67:9"}]},"documentation":{"id":4634,"nodeType":"StructuredDocumentation","src":"3317:210:9","text":" @dev Changes the quorum numerator.\n Emits a {QuorumNumeratorUpdated} event.\n Requirements:\n - New numerator must be smaller or equal to the denominator."},"id":4676,"implemented":true,"kind":"function","modifiers":[],"name":"_updateQuorumNumerator","nameLocation":"3541:22:9","nodeType":"FunctionDefinition","parameters":{"id":4637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4636,"mutability":"mutable","name":"newQuorumNumerator","nameLocation":"3572:18:9","nodeType":"VariableDeclaration","scope":4676,"src":"3564:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4635,"name":"uint256","nodeType":"ElementaryTypeName","src":"3564:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3563:28:9"},"returnParameters":{"id":4638,"nodeType":"ParameterList","parameters":[],"src":"3609:0:9"},"scope":4677,"src":"3532:498:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":4678,"src":"493:3539:9","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,4513,6731,6750,6874,6876,10810,12717],"usedEvents":[2264,2271,2276,2281,2294,2309,4506,5326]}],"src":"137:3896:9"},"id":9},"@openzeppelin/contracts/governance/utils/IVotes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","exportedSymbols":{"IVotes":[4760]},"id":4761,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4679,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"110:24:10"},{"abstract":false,"baseContracts":[],"canonicalName":"IVotes","contractDependencies":[],"contractKind":"interface","documentation":{"id":4680,"nodeType":"StructuredDocumentation","src":"136:102:10","text":" @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts."},"fullyImplemented":false,"id":4760,"linearizedBaseContracts":[4760],"name":"IVotes","nameLocation":"249:6:10","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":4681,"nodeType":"StructuredDocumentation","src":"262:55:10","text":" @dev The signature used has expired."},"errorSelector":"4683af0e","id":4685,"name":"VotesExpiredSignature","nameLocation":"328:21:10","nodeType":"ErrorDefinition","parameters":{"id":4684,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4683,"mutability":"mutable","name":"expiry","nameLocation":"358:6:10","nodeType":"VariableDeclaration","scope":4685,"src":"350:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4682,"name":"uint256","nodeType":"ElementaryTypeName","src":"350:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"349:16:10"},"src":"322:44:10"},{"anonymous":false,"documentation":{"id":4686,"nodeType":"StructuredDocumentation","src":"372:71:10","text":" @dev Emitted when an account changes their delegate."},"eventSelector":"3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f","id":4694,"name":"DelegateChanged","nameLocation":"454:15:10","nodeType":"EventDefinition","parameters":{"id":4693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4688,"indexed":true,"mutability":"mutable","name":"delegator","nameLocation":"486:9:10","nodeType":"VariableDeclaration","scope":4694,"src":"470:25:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4687,"name":"address","nodeType":"ElementaryTypeName","src":"470:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4690,"indexed":true,"mutability":"mutable","name":"fromDelegate","nameLocation":"513:12:10","nodeType":"VariableDeclaration","scope":4694,"src":"497:28:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4689,"name":"address","nodeType":"ElementaryTypeName","src":"497:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4692,"indexed":true,"mutability":"mutable","name":"toDelegate","nameLocation":"543:10:10","nodeType":"VariableDeclaration","scope":4694,"src":"527:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4691,"name":"address","nodeType":"ElementaryTypeName","src":"527:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"469:85:10"},"src":"448:107:10"},{"anonymous":false,"documentation":{"id":4695,"nodeType":"StructuredDocumentation","src":"561:131:10","text":" @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units."},"eventSelector":"dec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724","id":4703,"name":"DelegateVotesChanged","nameLocation":"703:20:10","nodeType":"EventDefinition","parameters":{"id":4702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4697,"indexed":true,"mutability":"mutable","name":"delegate","nameLocation":"740:8:10","nodeType":"VariableDeclaration","scope":4703,"src":"724:24:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4696,"name":"address","nodeType":"ElementaryTypeName","src":"724:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4699,"indexed":false,"mutability":"mutable","name":"previousVotes","nameLocation":"758:13:10","nodeType":"VariableDeclaration","scope":4703,"src":"750:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4698,"name":"uint256","nodeType":"ElementaryTypeName","src":"750:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4701,"indexed":false,"mutability":"mutable","name":"newVotes","nameLocation":"781:8:10","nodeType":"VariableDeclaration","scope":4703,"src":"773:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4700,"name":"uint256","nodeType":"ElementaryTypeName","src":"773:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"723:67:10"},"src":"697:94:10"},{"documentation":{"id":4704,"nodeType":"StructuredDocumentation","src":"797:79:10","text":" @dev Returns the current amount of votes that `account` has."},"functionSelector":"9ab24eb0","id":4711,"implemented":false,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"890:8:10","nodeType":"FunctionDefinition","parameters":{"id":4707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4706,"mutability":"mutable","name":"account","nameLocation":"907:7:10","nodeType":"VariableDeclaration","scope":4711,"src":"899:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4705,"name":"address","nodeType":"ElementaryTypeName","src":"899:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"898:17:10"},"returnParameters":{"id":4710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4709,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4711,"src":"939:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4708,"name":"uint256","nodeType":"ElementaryTypeName","src":"939:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"938:9:10"},"scope":4760,"src":"881:67:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4712,"nodeType":"StructuredDocumentation","src":"954:230:10","text":" @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is\n configured to use block numbers, this will return the value at the end of the corresponding block."},"functionSelector":"3a46b1a8","id":4721,"implemented":false,"kind":"function","modifiers":[],"name":"getPastVotes","nameLocation":"1198:12:10","nodeType":"FunctionDefinition","parameters":{"id":4717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4714,"mutability":"mutable","name":"account","nameLocation":"1219:7:10","nodeType":"VariableDeclaration","scope":4721,"src":"1211:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4713,"name":"address","nodeType":"ElementaryTypeName","src":"1211:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4716,"mutability":"mutable","name":"timepoint","nameLocation":"1236:9:10","nodeType":"VariableDeclaration","scope":4721,"src":"1228:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4715,"name":"uint256","nodeType":"ElementaryTypeName","src":"1228:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1210:36:10"},"returnParameters":{"id":4720,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4719,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4721,"src":"1270:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4718,"name":"uint256","nodeType":"ElementaryTypeName","src":"1270:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1269:9:10"},"scope":4760,"src":"1189:90:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4722,"nodeType":"StructuredDocumentation","src":"1285:481:10","text":" @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is\n configured to use block numbers, this will return the value at the end of the corresponding block.\n NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n Votes that have not been delegated are still part of total supply, even though they would not participate in a\n vote."},"functionSelector":"8e539e8c","id":4729,"implemented":false,"kind":"function","modifiers":[],"name":"getPastTotalSupply","nameLocation":"1780:18:10","nodeType":"FunctionDefinition","parameters":{"id":4725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4724,"mutability":"mutable","name":"timepoint","nameLocation":"1807:9:10","nodeType":"VariableDeclaration","scope":4729,"src":"1799:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4723,"name":"uint256","nodeType":"ElementaryTypeName","src":"1799:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1798:19:10"},"returnParameters":{"id":4728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4727,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4729,"src":"1841:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4726,"name":"uint256","nodeType":"ElementaryTypeName","src":"1841:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1840:9:10"},"scope":4760,"src":"1771:79:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4730,"nodeType":"StructuredDocumentation","src":"1856:71:10","text":" @dev Returns the delegate that `account` has chosen."},"functionSelector":"587cde1e","id":4737,"implemented":false,"kind":"function","modifiers":[],"name":"delegates","nameLocation":"1941:9:10","nodeType":"FunctionDefinition","parameters":{"id":4733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4732,"mutability":"mutable","name":"account","nameLocation":"1959:7:10","nodeType":"VariableDeclaration","scope":4737,"src":"1951:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4731,"name":"address","nodeType":"ElementaryTypeName","src":"1951:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1950:17:10"},"returnParameters":{"id":4736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4735,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4737,"src":"1991:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4734,"name":"address","nodeType":"ElementaryTypeName","src":"1991:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1990:9:10"},"scope":4760,"src":"1932:68:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4738,"nodeType":"StructuredDocumentation","src":"2006:71:10","text":" @dev Delegates votes from the sender to `delegatee`."},"functionSelector":"5c19a95c","id":4743,"implemented":false,"kind":"function","modifiers":[],"name":"delegate","nameLocation":"2091:8:10","nodeType":"FunctionDefinition","parameters":{"id":4741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4740,"mutability":"mutable","name":"delegatee","nameLocation":"2108:9:10","nodeType":"VariableDeclaration","scope":4743,"src":"2100:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4739,"name":"address","nodeType":"ElementaryTypeName","src":"2100:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2099:19:10"},"returnParameters":{"id":4742,"nodeType":"ParameterList","parameters":[],"src":"2127:0:10"},"scope":4760,"src":"2082:46:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":4744,"nodeType":"StructuredDocumentation","src":"2134:67:10","text":" @dev Delegates votes from signer to `delegatee`."},"functionSelector":"c3cda520","id":4759,"implemented":false,"kind":"function","modifiers":[],"name":"delegateBySig","nameLocation":"2215:13:10","nodeType":"FunctionDefinition","parameters":{"id":4757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4746,"mutability":"mutable","name":"delegatee","nameLocation":"2237:9:10","nodeType":"VariableDeclaration","scope":4759,"src":"2229:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4745,"name":"address","nodeType":"ElementaryTypeName","src":"2229:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4748,"mutability":"mutable","name":"nonce","nameLocation":"2256:5:10","nodeType":"VariableDeclaration","scope":4759,"src":"2248:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4747,"name":"uint256","nodeType":"ElementaryTypeName","src":"2248:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4750,"mutability":"mutable","name":"expiry","nameLocation":"2271:6:10","nodeType":"VariableDeclaration","scope":4759,"src":"2263:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4749,"name":"uint256","nodeType":"ElementaryTypeName","src":"2263:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4752,"mutability":"mutable","name":"v","nameLocation":"2285:1:10","nodeType":"VariableDeclaration","scope":4759,"src":"2279:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4751,"name":"uint8","nodeType":"ElementaryTypeName","src":"2279:5:10","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4754,"mutability":"mutable","name":"r","nameLocation":"2296:1:10","nodeType":"VariableDeclaration","scope":4759,"src":"2288:9:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4753,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2288:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4756,"mutability":"mutable","name":"s","nameLocation":"2307:1:10","nodeType":"VariableDeclaration","scope":4759,"src":"2299:9:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4755,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2299:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2228:81:10"},"returnParameters":{"id":4758,"nodeType":"ParameterList","parameters":[],"src":"2318:0:10"},"scope":4760,"src":"2206:113:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":4761,"src":"239:2082:10","usedErrors":[4685],"usedEvents":[4694,4703]}],"src":"110:2212:10"},"id":10},"@openzeppelin/contracts/governance/utils/Votes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/utils/Votes.sol","exportedSymbols":{"Checkpoints":[14290],"Context":[6718],"ECDSA":[8749],"EIP712":[8976],"IERC5805":[5357],"Nonces":[6808],"SafeCast":[12565],"Time":[14919],"Votes":[5303]},"id":5304,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4762,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:11"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5805.sol","file":"../../interfaces/IERC5805.sol","id":4764,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":5358,"src":"135:55:11","symbolAliases":[{"foreign":{"id":4763,"name":"IERC5805","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"143:8:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":4766,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":6719,"src":"191:48:11","symbolAliases":[{"foreign":{"id":4765,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6718,"src":"199:7:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"../../utils/Nonces.sol","id":4768,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":6809,"src":"240:46:11","symbolAliases":[{"foreign":{"id":4767,"name":"Nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6808,"src":"248:6:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","file":"../../utils/cryptography/EIP712.sol","id":4770,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":8977,"src":"287:59:11","symbolAliases":[{"foreign":{"id":4769,"name":"EIP712","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8976,"src":"295:6:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","file":"../../utils/structs/Checkpoints.sol","id":4772,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":14291,"src":"347:64:11","symbolAliases":[{"foreign":{"id":4771,"name":"Checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14290,"src":"355:11:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4774,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":12566,"src":"412:55:11","symbolAliases":[{"foreign":{"id":4773,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"420:8:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"../../utils/cryptography/ECDSA.sol","id":4776,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":8750,"src":"468:57:11","symbolAliases":[{"foreign":{"id":4775,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"476:5:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":4778,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5304,"sourceUnit":14920,"src":"526:48:11","symbolAliases":[{"foreign":{"id":4777,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14919,"src":"534:4:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4780,"name":"Context","nameLocations":["1919:7:11"],"nodeType":"IdentifierPath","referencedDeclaration":6718,"src":"1919:7:11"},"id":4781,"nodeType":"InheritanceSpecifier","src":"1919:7:11"},{"baseName":{"id":4782,"name":"EIP712","nameLocations":["1928:6:11"],"nodeType":"IdentifierPath","referencedDeclaration":8976,"src":"1928:6:11"},"id":4783,"nodeType":"InheritanceSpecifier","src":"1928:6:11"},{"baseName":{"id":4784,"name":"Nonces","nameLocations":["1936:6:11"],"nodeType":"IdentifierPath","referencedDeclaration":6808,"src":"1936:6:11"},"id":4785,"nodeType":"InheritanceSpecifier","src":"1936:6:11"},{"baseName":{"id":4786,"name":"IERC5805","nameLocations":["1944:8:11"],"nodeType":"IdentifierPath","referencedDeclaration":5357,"src":"1944:8:11"},"id":4787,"nodeType":"InheritanceSpecifier","src":"1944:8:11"}],"canonicalName":"Votes","contractDependencies":[],"contractKind":"contract","documentation":{"id":4779,"nodeType":"StructuredDocumentation","src":"576:1315:11","text":" @dev This is a base abstract contract that tracks voting units, which are a measure of voting power that can be\n transferred, and provides a system of vote delegation, where an account can delegate its voting units to a sort of\n \"representative\" that will pool delegated voting units from different accounts and can then use it to vote in\n decisions. In fact, voting units _must_ be delegated in order to count as actual votes, and an account has to\n delegate those votes to itself if it wishes to participate in decisions and does not have a trusted representative.\n This contract is often combined with a token contract such that voting units correspond to token units. For an\n example, see {ERC721Votes}.\n The full history of delegate votes is tracked on-chain so that governance protocols can consider votes as distributed\n at a particular block number to protect against flash loans and double voting. The opt-in delegate system makes the\n cost of this history tracking optional.\n When using this module the derived contract must implement {_getVotingUnits} (for example, make it return\n {ERC721-balanceOf}), and can use {_transferVotingUnits} to track a change in the distribution of those units (in the\n previous example, it would be included in {ERC721-_update})."},"fullyImplemented":false,"id":5303,"internalFunctionIDs":{"5280":1,"5294":2},"linearizedBaseContracts":[5303,5357,4760,5372,6808,8976,5346,6718],"name":"Votes","nameLocation":"1910:5:11","nodeType":"ContractDefinition","nodes":[{"global":false,"id":4791,"libraryName":{"id":4788,"name":"Checkpoints","nameLocations":["1965:11:11"],"nodeType":"IdentifierPath","referencedDeclaration":14290,"src":"1965:11:11"},"nodeType":"UsingForDirective","src":"1959:43:11","typeName":{"id":4790,"nodeType":"UserDefinedTypeName","pathNode":{"id":4789,"name":"Checkpoints.Trace208","nameLocations":["1981:11:11","1993:8:11"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"1981:20:11"},"referencedDeclaration":13246,"src":"1981:20:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}}},{"constant":true,"id":4796,"mutability":"constant","name":"DELEGATION_TYPEHASH","nameLocation":"2033:19:11","nodeType":"VariableDeclaration","scope":5303,"src":"2008:126:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4792,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2008:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"44656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929","id":4794,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2073:60:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_e48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf","typeString":"literal_string \"Delegation(address delegatee,uint256 nonce,uint256 expiry)\""},"value":"Delegation(address delegatee,uint256 nonce,uint256 expiry)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_e48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf","typeString":"literal_string \"Delegation(address delegatee,uint256 nonce,uint256 expiry)\""}],"id":4793,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2063:9:11","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2063:71:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":4800,"mutability":"mutable","name":"_delegatee","nameLocation":"2185:10:11","nodeType":"VariableDeclaration","scope":5303,"src":"2141:54:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":4799,"keyName":"account","keyNameLocation":"2157:7:11","keyType":{"id":4797,"name":"address","nodeType":"ElementaryTypeName","src":"2149:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2141:35:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4798,"name":"address","nodeType":"ElementaryTypeName","src":"2168:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"private"},{"constant":false,"id":4805,"mutability":"mutable","name":"_delegateCheckpoints","nameLocation":"2261:20:11","nodeType":"VariableDeclaration","scope":5303,"src":"2202:79:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208)"},"typeName":{"id":4804,"keyName":"delegatee","keyNameLocation":"2218:9:11","keyType":{"id":4801,"name":"address","nodeType":"ElementaryTypeName","src":"2210:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2202:50:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4803,"nodeType":"UserDefinedTypeName","pathNode":{"id":4802,"name":"Checkpoints.Trace208","nameLocations":["2231:11:11","2243:8:11"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"2231:20:11"},"referencedDeclaration":13246,"src":"2231:20:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}}},"visibility":"private"},{"constant":false,"id":4808,"mutability":"mutable","name":"_totalCheckpoints","nameLocation":"2317:17:11","nodeType":"VariableDeclaration","scope":5303,"src":"2288:46:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":4807,"nodeType":"UserDefinedTypeName","pathNode":{"id":4806,"name":"Checkpoints.Trace208","nameLocations":["2288:11:11","2300:8:11"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"2288:20:11"},"referencedDeclaration":13246,"src":"2288:20:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"private"},{"documentation":{"id":4809,"nodeType":"StructuredDocumentation","src":"2341:59:11","text":" @dev The clock was incorrectly modified."},"errorSelector":"6ff07140","id":4811,"name":"ERC6372InconsistentClock","nameLocation":"2411:24:11","nodeType":"ErrorDefinition","parameters":{"id":4810,"nodeType":"ParameterList","parameters":[],"src":"2435:2:11"},"src":"2405:33:11"},{"documentation":{"id":4812,"nodeType":"StructuredDocumentation","src":"2444:64:11","text":" @dev Lookup to future votes is not available."},"errorSelector":"ecd3f81e","id":4818,"name":"ERC5805FutureLookup","nameLocation":"2519:19:11","nodeType":"ErrorDefinition","parameters":{"id":4817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4814,"mutability":"mutable","name":"timepoint","nameLocation":"2547:9:11","nodeType":"VariableDeclaration","scope":4818,"src":"2539:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4813,"name":"uint256","nodeType":"ElementaryTypeName","src":"2539:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4816,"mutability":"mutable","name":"clock","nameLocation":"2565:5:11","nodeType":"VariableDeclaration","scope":4818,"src":"2558:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4815,"name":"uint48","nodeType":"ElementaryTypeName","src":"2558:6:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2538:33:11"},"src":"2513:59:11"},{"baseFunctions":[5365],"body":{"id":4828,"nodeType":"Block","src":"2843:42:11","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4824,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14919,"src":"2860:4:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$14919_$","typeString":"type(library Time)"}},"id":4825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2865:11:11","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":14680,"src":"2860:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4826,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2860:18:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4823,"id":4827,"nodeType":"Return","src":"2853:25:11"}]},"documentation":{"id":4819,"nodeType":"StructuredDocumentation","src":"2578:206:11","text":" @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based\n checkpoints (and voting), in which case {CLOCK_MODE} should be overridden as well to match."},"functionSelector":"91ddadf4","id":4829,"implemented":true,"kind":"function","modifiers":[],"name":"clock","nameLocation":"2798:5:11","nodeType":"FunctionDefinition","parameters":{"id":4820,"nodeType":"ParameterList","parameters":[],"src":"2803:2:11"},"returnParameters":{"id":4823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4822,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4829,"src":"2835:6:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4821,"name":"uint48","nodeType":"ElementaryTypeName","src":"2835:6:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2834:8:11"},"scope":5303,"src":"2789:96:11","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5371],"body":{"id":4848,"nodeType":"Block","src":"3106:206:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":4835,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4829,"src":"3169:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3169:7:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4837,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14919,"src":"3180:4:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$14919_$","typeString":"type(library Time)"}},"id":4838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3185:11:11","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":14680,"src":"3180:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3180:18:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3169:29:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4845,"nodeType":"IfStatement","src":"3165:93:11","trueBody":{"id":4844,"nodeType":"Block","src":"3200:58:11","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":4841,"name":"ERC6372InconsistentClock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4811,"src":"3221:24:11","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":4842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3221:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4843,"nodeType":"RevertStatement","src":"3214:33:11"}]}},{"expression":{"hexValue":"6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74","id":4846,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3274:31:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f79d44e499ce83a99049e0b7ebf2d6f56e249303be3c14798235137af5ea536","typeString":"literal_string \"mode=blocknumber&from=default\""},"value":"mode=blocknumber&from=default"},"functionReturnParameters":4834,"id":4847,"nodeType":"Return","src":"3267:38:11"}]},"documentation":{"id":4830,"nodeType":"StructuredDocumentation","src":"2891:91:11","text":" @dev Machine-readable description of the clock as specified in ERC-6372."},"functionSelector":"4bf5d7e9","id":4849,"implemented":true,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"3049:10:11","nodeType":"FunctionDefinition","parameters":{"id":4831,"nodeType":"ParameterList","parameters":[],"src":"3059:2:11"},"returnParameters":{"id":4834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4833,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4849,"src":"3091:13:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4832,"name":"string","nodeType":"ElementaryTypeName","src":"3091:6:11","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3090:15:11"},"scope":5303,"src":"3040:272:11","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4876,"nodeType":"Block","src":"3493:195:11","statements":[{"assignments":[4858],"declarations":[{"constant":false,"id":4858,"mutability":"mutable","name":"currentTimepoint","nameLocation":"3510:16:11","nodeType":"VariableDeclaration","scope":4876,"src":"3503:23:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4857,"name":"uint48","nodeType":"ElementaryTypeName","src":"3503:6:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":4861,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4859,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4829,"src":"3529:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3529:7:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"3503:33:11"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4862,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"3550:9:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":4863,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4858,"src":"3563:16:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3550:29:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4870,"nodeType":"IfStatement","src":"3546:90:11","trueBody":{"errorCall":{"arguments":[{"id":4866,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"3608:9:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4867,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4858,"src":"3619:16:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":4865,"name":"ERC5805FutureLookup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4818,"src":"3588:19:11","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint48_$returns$__$","typeString":"function (uint256,uint48) pure"}},"id":4868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3588:48:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4869,"nodeType":"RevertStatement","src":"3581:55:11"}},{"expression":{"arguments":[{"id":4873,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"3671:9:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4871,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"3653:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":4872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3662:8:11","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"3653:17:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":4874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3653:28:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4856,"id":4875,"nodeType":"Return","src":"3646:35:11"}]},"documentation":{"id":4850,"nodeType":"StructuredDocumentation","src":"3318:92:11","text":" @dev Validate that a timepoint is in the past, and return it as a uint48."},"id":4877,"implemented":true,"kind":"function","modifiers":[],"name":"_validateTimepoint","nameLocation":"3424:18:11","nodeType":"FunctionDefinition","parameters":{"id":4853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4852,"mutability":"mutable","name":"timepoint","nameLocation":"3451:9:11","nodeType":"VariableDeclaration","scope":4877,"src":"3443:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4851,"name":"uint256","nodeType":"ElementaryTypeName","src":"3443:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3442:19:11"},"returnParameters":{"id":4856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4855,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4877,"src":"3485:6:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4854,"name":"uint48","nodeType":"ElementaryTypeName","src":"3485:6:11","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3484:8:11"},"scope":5303,"src":"3415:273:11","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[4711],"body":{"id":4891,"nodeType":"Block","src":"3851:62:11","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":4885,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"3868:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":4887,"indexExpression":{"id":4886,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4880,"src":"3889:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3868:29:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4888,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3898:6:11","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"3868:36:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":4889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3868:38:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4884,"id":4890,"nodeType":"Return","src":"3861:45:11"}]},"documentation":{"id":4878,"nodeType":"StructuredDocumentation","src":"3694:79:11","text":" @dev Returns the current amount of votes that `account` has."},"functionSelector":"9ab24eb0","id":4892,"implemented":true,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"3787:8:11","nodeType":"FunctionDefinition","parameters":{"id":4881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4880,"mutability":"mutable","name":"account","nameLocation":"3804:7:11","nodeType":"VariableDeclaration","scope":4892,"src":"3796:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4879,"name":"address","nodeType":"ElementaryTypeName","src":"3796:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3795:17:11"},"returnParameters":{"id":4884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4883,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4892,"src":"3842:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4882,"name":"uint256","nodeType":"ElementaryTypeName","src":"3842:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3841:9:11"},"scope":5303,"src":"3778:135:11","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[4721],"body":{"id":4911,"nodeType":"Block","src":"4394:102:11","statements":[{"expression":{"arguments":[{"arguments":[{"id":4907,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4897,"src":"4478:9:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4906,"name":"_validateTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4877,"src":"4459:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) view returns (uint48)"}},"id":4908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4459:29:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"baseExpression":{"id":4902,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"4411:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":4904,"indexExpression":{"id":4903,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4895,"src":"4432:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4411:29:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4905,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4441:17:11","memberName":"upperLookupRecent","nodeType":"MemberAccess","referencedDeclaration":13441,"src":"4411:47:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint48_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48) view returns (uint208)"}},"id":4909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4411:78:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4901,"id":4910,"nodeType":"Return","src":"4404:85:11"}]},"documentation":{"id":4893,"nodeType":"StructuredDocumentation","src":"3919:374:11","text":" @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is\n configured to use block numbers, this will return the value at the end of the corresponding block.\n Requirements:\n - `timepoint` must be in the past. If operating using block numbers, the block must be already mined."},"functionSelector":"3a46b1a8","id":4912,"implemented":true,"kind":"function","modifiers":[],"name":"getPastVotes","nameLocation":"4307:12:11","nodeType":"FunctionDefinition","parameters":{"id":4898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4895,"mutability":"mutable","name":"account","nameLocation":"4328:7:11","nodeType":"VariableDeclaration","scope":4912,"src":"4320:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4894,"name":"address","nodeType":"ElementaryTypeName","src":"4320:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4897,"mutability":"mutable","name":"timepoint","nameLocation":"4345:9:11","nodeType":"VariableDeclaration","scope":4912,"src":"4337:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4896,"name":"uint256","nodeType":"ElementaryTypeName","src":"4337:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4319:36:11"},"returnParameters":{"id":4901,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4900,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4912,"src":"4385:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4899,"name":"uint256","nodeType":"ElementaryTypeName","src":"4385:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4384:9:11"},"scope":5303,"src":"4298:198:11","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[4729],"body":{"id":4927,"nodeType":"Block","src":"5217:90:11","statements":[{"expression":{"arguments":[{"arguments":[{"id":4923,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4915,"src":"5289:9:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4922,"name":"_validateTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4877,"src":"5270:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) view returns (uint48)"}},"id":4924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5270:29:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"id":4920,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"5234:17:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4921,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5252:17:11","memberName":"upperLookupRecent","nodeType":"MemberAccess","referencedDeclaration":13441,"src":"5234:35:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint48_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48) view returns (uint208)"}},"id":4925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5234:66:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4919,"id":4926,"nodeType":"Return","src":"5227:73:11"}]},"documentation":{"id":4913,"nodeType":"StructuredDocumentation","src":"4502:625:11","text":" @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is\n configured to use block numbers, this will return the value at the end of the corresponding block.\n NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n Votes that have not been delegated are still part of total supply, even though they would not participate in a\n vote.\n Requirements:\n - `timepoint` must be in the past. If operating using block numbers, the block must be already mined."},"functionSelector":"8e539e8c","id":4928,"implemented":true,"kind":"function","modifiers":[],"name":"getPastTotalSupply","nameLocation":"5141:18:11","nodeType":"FunctionDefinition","parameters":{"id":4916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4915,"mutability":"mutable","name":"timepoint","nameLocation":"5168:9:11","nodeType":"VariableDeclaration","scope":4928,"src":"5160:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4914,"name":"uint256","nodeType":"ElementaryTypeName","src":"5160:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5159:19:11"},"returnParameters":{"id":4919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4918,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4928,"src":"5208:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4917,"name":"uint256","nodeType":"ElementaryTypeName","src":"5208:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5207:9:11"},"scope":5303,"src":"5132:175:11","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4938,"nodeType":"Block","src":"5451:50:11","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4934,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"5468:17:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4935,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5486:6:11","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"5468:24:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":4936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5468:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4933,"id":4937,"nodeType":"Return","src":"5461:33:11"}]},"documentation":{"id":4929,"nodeType":"StructuredDocumentation","src":"5313:66:11","text":" @dev Returns the current total supply of votes."},"id":4939,"implemented":true,"kind":"function","modifiers":[],"name":"_getTotalSupply","nameLocation":"5393:15:11","nodeType":"FunctionDefinition","parameters":{"id":4930,"nodeType":"ParameterList","parameters":[],"src":"5408:2:11"},"returnParameters":{"id":4933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4932,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4939,"src":"5442:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4931,"name":"uint256","nodeType":"ElementaryTypeName","src":"5442:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5441:9:11"},"scope":5303,"src":"5384:117:11","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[4737],"body":{"id":4951,"nodeType":"Block","src":"5657:43:11","statements":[{"expression":{"baseExpression":{"id":4947,"name":"_delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4800,"src":"5674:10:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":4949,"indexExpression":{"id":4948,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4942,"src":"5685:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5674:19:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4946,"id":4950,"nodeType":"Return","src":"5667:26:11"}]},"documentation":{"id":4940,"nodeType":"StructuredDocumentation","src":"5507:71:11","text":" @dev Returns the delegate that `account` has chosen."},"functionSelector":"587cde1e","id":4952,"implemented":true,"kind":"function","modifiers":[],"name":"delegates","nameLocation":"5592:9:11","nodeType":"FunctionDefinition","parameters":{"id":4943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4942,"mutability":"mutable","name":"account","nameLocation":"5610:7:11","nodeType":"VariableDeclaration","scope":4952,"src":"5602:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4941,"name":"address","nodeType":"ElementaryTypeName","src":"5602:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5601:17:11"},"returnParameters":{"id":4946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4945,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4952,"src":"5648:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4944,"name":"address","nodeType":"ElementaryTypeName","src":"5648:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5647:9:11"},"scope":5303,"src":"5583:117:11","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[4743],"body":{"id":4968,"nodeType":"Block","src":"5834:86:11","statements":[{"assignments":[4959],"declarations":[{"constant":false,"id":4959,"mutability":"mutable","name":"account","nameLocation":"5852:7:11","nodeType":"VariableDeclaration","scope":4968,"src":"5844:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4958,"name":"address","nodeType":"ElementaryTypeName","src":"5844:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4962,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4960,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"5862:10:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4961,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5862:12:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5844:30:11"},{"expression":{"arguments":[{"id":4964,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4959,"src":"5894:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4965,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4955,"src":"5903:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4963,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5061,"src":"5884:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":4966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5884:29:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4967,"nodeType":"ExpressionStatement","src":"5884:29:11"}]},"documentation":{"id":4953,"nodeType":"StructuredDocumentation","src":"5706:71:11","text":" @dev Delegates votes from the sender to `delegatee`."},"functionSelector":"5c19a95c","id":4969,"implemented":true,"kind":"function","modifiers":[],"name":"delegate","nameLocation":"5791:8:11","nodeType":"FunctionDefinition","parameters":{"id":4956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4955,"mutability":"mutable","name":"delegatee","nameLocation":"5808:9:11","nodeType":"VariableDeclaration","scope":4969,"src":"5800:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4954,"name":"address","nodeType":"ElementaryTypeName","src":"5800:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5799:19:11"},"returnParameters":{"id":4957,"nodeType":"ParameterList","parameters":[],"src":"5834:0:11"},"scope":5303,"src":"5782:138:11","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[4759],"body":{"id":5025,"nodeType":"Block","src":"6171:381:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4985,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"6185:5:11","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6191:9:11","memberName":"timestamp","nodeType":"MemberAccess","src":"6185:15:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4987,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4976,"src":"6203:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6185:24:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4994,"nodeType":"IfStatement","src":"6181:91:11","trueBody":{"id":4993,"nodeType":"Block","src":"6211:61:11","statements":[{"errorCall":{"arguments":[{"id":4990,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4976,"src":"6254:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4989,"name":"VotesExpiredSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4685,"src":"6232:21:11","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":4991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6232:29:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4992,"nodeType":"RevertStatement","src":"6225:36:11"}]}},{"assignments":[4996],"declarations":[{"constant":false,"id":4996,"mutability":"mutable","name":"signer","nameLocation":"6289:6:11","nodeType":"VariableDeclaration","scope":5025,"src":"6281:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4995,"name":"address","nodeType":"ElementaryTypeName","src":"6281:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5014,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"id":5003,"name":"DELEGATION_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4796,"src":"6363:19:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5004,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4972,"src":"6384:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5005,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4974,"src":"6395:5:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5006,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4976,"src":"6402:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5001,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6352:3:11","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":5002,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6356:6:11","memberName":"encode","nodeType":"MemberAccess","src":"6352:10:11","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":5007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6352:57:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5000,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"6342:9:11","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":5008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6342:68:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4999,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8909,"src":"6325:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":5009,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6325:86:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5010,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4978,"src":"6425:1:11","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":5011,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4980,"src":"6440:1:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5012,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4982,"src":"6455:1:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4997,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"6298:5:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$8749_$","typeString":"type(library ECDSA)"}},"id":4998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6304:7:11","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":8699,"src":"6298:13:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address)"}},"id":5013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:168:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6281:185:11"},{"expression":{"arguments":[{"id":5016,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4996,"src":"6493:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5017,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4974,"src":"6501:5:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5015,"name":"_useCheckedNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6807,"src":"6476:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6476:31:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5019,"nodeType":"ExpressionStatement","src":"6476:31:11"},{"expression":{"arguments":[{"id":5021,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4996,"src":"6527:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5022,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4972,"src":"6535:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5020,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5061,"src":"6517:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":5023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6517:28:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5024,"nodeType":"ExpressionStatement","src":"6517:28:11"}]},"documentation":{"id":4970,"nodeType":"StructuredDocumentation","src":"5926:67:11","text":" @dev Delegates votes from signer to `delegatee`."},"functionSelector":"c3cda520","id":5026,"implemented":true,"kind":"function","modifiers":[],"name":"delegateBySig","nameLocation":"6007:13:11","nodeType":"FunctionDefinition","parameters":{"id":4983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4972,"mutability":"mutable","name":"delegatee","nameLocation":"6038:9:11","nodeType":"VariableDeclaration","scope":5026,"src":"6030:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4971,"name":"address","nodeType":"ElementaryTypeName","src":"6030:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4974,"mutability":"mutable","name":"nonce","nameLocation":"6065:5:11","nodeType":"VariableDeclaration","scope":5026,"src":"6057:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4973,"name":"uint256","nodeType":"ElementaryTypeName","src":"6057:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4976,"mutability":"mutable","name":"expiry","nameLocation":"6088:6:11","nodeType":"VariableDeclaration","scope":5026,"src":"6080:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4975,"name":"uint256","nodeType":"ElementaryTypeName","src":"6080:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4978,"mutability":"mutable","name":"v","nameLocation":"6110:1:11","nodeType":"VariableDeclaration","scope":5026,"src":"6104:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4977,"name":"uint8","nodeType":"ElementaryTypeName","src":"6104:5:11","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4980,"mutability":"mutable","name":"r","nameLocation":"6129:1:11","nodeType":"VariableDeclaration","scope":5026,"src":"6121:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4979,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6121:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4982,"mutability":"mutable","name":"s","nameLocation":"6148:1:11","nodeType":"VariableDeclaration","scope":5026,"src":"6140:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4981,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6140:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6020:135:11"},"returnParameters":{"id":4984,"nodeType":"ParameterList","parameters":[],"src":"6171:0:11"},"scope":5303,"src":"5998:554:11","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":5060,"nodeType":"Block","src":"6802:240:11","statements":[{"assignments":[5035],"declarations":[{"constant":false,"id":5035,"mutability":"mutable","name":"oldDelegate","nameLocation":"6820:11:11","nodeType":"VariableDeclaration","scope":5060,"src":"6812:19:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5034,"name":"address","nodeType":"ElementaryTypeName","src":"6812:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5039,"initialValue":{"arguments":[{"id":5037,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5029,"src":"6844:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5036,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4952,"src":"6834:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_address_$","typeString":"function (address) view returns (address)"}},"id":5038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6834:18:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6812:40:11"},{"expression":{"id":5044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5040,"name":"_delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4800,"src":"6862:10:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":5042,"indexExpression":{"id":5041,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5029,"src":"6873:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6862:19:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5043,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5031,"src":"6884:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6862:31:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5045,"nodeType":"ExpressionStatement","src":"6862:31:11"},{"eventCall":{"arguments":[{"id":5047,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5029,"src":"6925:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5048,"name":"oldDelegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5035,"src":"6934:11:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5049,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5031,"src":"6947:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5046,"name":"DelegateChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4694,"src":"6909:15:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$returns$__$","typeString":"function (address,address,address)"}},"id":5050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6909:48:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5051,"nodeType":"EmitStatement","src":"6904:53:11"},{"expression":{"arguments":[{"id":5053,"name":"oldDelegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5035,"src":"6986:11:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5054,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5031,"src":"6999:9:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5056,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5029,"src":"7026:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5055,"name":"_getVotingUnits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5302,"src":"7010:15:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":5057,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7010:24:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5052,"name":"_moveDelegateVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5194,"src":"6967:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6967:68:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5059,"nodeType":"ExpressionStatement","src":"6967:68:11"}]},"documentation":{"id":5027,"nodeType":"StructuredDocumentation","src":"6558:167:11","text":" @dev Delegate all of `account`'s voting units to `delegatee`.\n Emits events {IVotes-DelegateChanged} and {IVotes-DelegateVotesChanged}."},"id":5061,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"6739:9:11","nodeType":"FunctionDefinition","parameters":{"id":5032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5029,"mutability":"mutable","name":"account","nameLocation":"6757:7:11","nodeType":"VariableDeclaration","scope":5061,"src":"6749:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5028,"name":"address","nodeType":"ElementaryTypeName","src":"6749:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5031,"mutability":"mutable","name":"delegatee","nameLocation":"6774:9:11","nodeType":"VariableDeclaration","scope":5061,"src":"6766:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5030,"name":"address","nodeType":"ElementaryTypeName","src":"6766:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6748:36:11"},"returnParameters":{"id":5033,"nodeType":"ParameterList","parameters":[],"src":"6802:0:11"},"scope":5303,"src":"6730:312:11","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5115,"nodeType":"Block","src":"7365:310:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5071,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5064,"src":"7379:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7395:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5073,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7387:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5072,"name":"address","nodeType":"ElementaryTypeName","src":"7387:7:11","typeDescriptions":{}}},"id":5075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7387:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7379:18:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5087,"nodeType":"IfStatement","src":"7375:107:11","trueBody":{"id":5086,"nodeType":"Block","src":"7399:83:11","statements":[{"expression":{"arguments":[{"id":5078,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"7419:17:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5079,"name":"_add","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5280,"src":"7438:4:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5082,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5068,"src":"7463:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5080,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"7444:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":5081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7453:9:11","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":10995,"src":"7444:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7444:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"},{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5077,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5266,"src":"7413:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_storage_ptr_$_t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$_$_t_uint208_$returns$_t_uint208_$_t_uint208_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,function (uint208,uint208) view returns (uint208),uint208) returns (uint208,uint208)"}},"id":5084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7413:58:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"id":5085,"nodeType":"ExpressionStatement","src":"7413:58:11"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5088,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5066,"src":"7495:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5091,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7509:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5090,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7501:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5089,"name":"address","nodeType":"ElementaryTypeName","src":"7501:7:11","typeDescriptions":{}}},"id":5092,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7501:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7495:16:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5104,"nodeType":"IfStatement","src":"7491:110:11","trueBody":{"id":5103,"nodeType":"Block","src":"7513:88:11","statements":[{"expression":{"arguments":[{"id":5095,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"7533:17:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5096,"name":"_subtract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5294,"src":"7552:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5099,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5068,"src":"7582:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5097,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"7563:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":5098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7572:9:11","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":10995,"src":"7563:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7563:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"},{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5094,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5266,"src":"7527:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_storage_ptr_$_t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$_$_t_uint208_$returns$_t_uint208_$_t_uint208_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,function (uint208,uint208) view returns (uint208),uint208) returns (uint208,uint208)"}},"id":5101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7527:63:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"id":5102,"nodeType":"ExpressionStatement","src":"7527:63:11"}]}},{"expression":{"arguments":[{"arguments":[{"id":5107,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5064,"src":"7639:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5106,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4952,"src":"7629:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_address_$","typeString":"function (address) view returns (address)"}},"id":5108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7629:15:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5110,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5066,"src":"7656:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5109,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4952,"src":"7646:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_address_$","typeString":"function (address) view returns (address)"}},"id":5111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7646:13:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5112,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5068,"src":"7661:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5105,"name":"_moveDelegateVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5194,"src":"7610:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7610:58:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5114,"nodeType":"ExpressionStatement","src":"7610:58:11"}]},"documentation":{"id":5062,"nodeType":"StructuredDocumentation","src":"7048:223:11","text":" @dev Transfers, mints, or burns voting units. To register a mint, `from` should be zero. To register a burn, `to`\n should be zero. Total supply of voting units will be adjusted with mints and burns."},"id":5116,"implemented":true,"kind":"function","modifiers":[],"name":"_transferVotingUnits","nameLocation":"7285:20:11","nodeType":"FunctionDefinition","parameters":{"id":5069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5064,"mutability":"mutable","name":"from","nameLocation":"7314:4:11","nodeType":"VariableDeclaration","scope":5116,"src":"7306:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5063,"name":"address","nodeType":"ElementaryTypeName","src":"7306:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5066,"mutability":"mutable","name":"to","nameLocation":"7328:2:11","nodeType":"VariableDeclaration","scope":5116,"src":"7320:10:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5065,"name":"address","nodeType":"ElementaryTypeName","src":"7320:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5068,"mutability":"mutable","name":"amount","nameLocation":"7340:6:11","nodeType":"VariableDeclaration","scope":5116,"src":"7332:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5067,"name":"uint256","nodeType":"ElementaryTypeName","src":"7332:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7305:42:11"},"returnParameters":{"id":5070,"nodeType":"ParameterList","parameters":[],"src":"7365:0:11"},"scope":5303,"src":"7276:399:11","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5193,"nodeType":"Block","src":"7848:702:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5126,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"7862:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":5127,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5121,"src":"7870:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7862:10:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5129,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5123,"src":"7876:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7885:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7876:10:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7862:24:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5192,"nodeType":"IfStatement","src":"7858:686:11","trueBody":{"id":5191,"nodeType":"Block","src":"7888:656:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5133,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"7906:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":5136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7922:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7914:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5134,"name":"address","nodeType":"ElementaryTypeName","src":"7914:7:11","typeDescriptions":{}}},"id":5137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7914:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7906:18:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5161,"nodeType":"IfStatement","src":"7902:315:11","trueBody":{"id":5160,"nodeType":"Block","src":"7926:291:11","statements":[{"assignments":[5140,5142],"declarations":[{"constant":false,"id":5140,"mutability":"mutable","name":"oldValue","nameLocation":"7953:8:11","nodeType":"VariableDeclaration","scope":5160,"src":"7945:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5139,"name":"uint256","nodeType":"ElementaryTypeName","src":"7945:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5142,"mutability":"mutable","name":"newValue","nameLocation":"7971:8:11","nodeType":"VariableDeclaration","scope":5160,"src":"7963:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5141,"name":"uint256","nodeType":"ElementaryTypeName","src":"7963:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5153,"initialValue":{"arguments":[{"baseExpression":{"id":5144,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"8010:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5146,"indexExpression":{"id":5145,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"8031:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8010:26:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5147,"name":"_subtract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5294,"src":"8058:9:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5150,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5123,"src":"8108:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5148,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"8089:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":5149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8098:9:11","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":10995,"src":"8089:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8089:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"},{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5143,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5266,"src":"7983:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_storage_ptr_$_t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$_$_t_uint208_$returns$_t_uint208_$_t_uint208_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,function (uint208,uint208) view returns (uint208),uint208) returns (uint208,uint208)"}},"id":5152,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7983:150:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"nodeType":"VariableDeclarationStatement","src":"7944:189:11"},{"eventCall":{"arguments":[{"id":5155,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"8177:4:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5156,"name":"oldValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5140,"src":"8183:8:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5157,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5142,"src":"8193:8:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5154,"name":"DelegateVotesChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"8156:20:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":5158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8156:46:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5159,"nodeType":"EmitStatement","src":"8151:51:11"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5162,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5121,"src":"8234:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":5165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8248:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5164,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8240:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5163,"name":"address","nodeType":"ElementaryTypeName","src":"8240:7:11","typeDescriptions":{}}},"id":5166,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8240:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8234:16:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5190,"nodeType":"IfStatement","src":"8230:304:11","trueBody":{"id":5189,"nodeType":"Block","src":"8252:282:11","statements":[{"assignments":[5169,5171],"declarations":[{"constant":false,"id":5169,"mutability":"mutable","name":"oldValue","nameLocation":"8279:8:11","nodeType":"VariableDeclaration","scope":5189,"src":"8271:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5168,"name":"uint256","nodeType":"ElementaryTypeName","src":"8271:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5171,"mutability":"mutable","name":"newValue","nameLocation":"8297:8:11","nodeType":"VariableDeclaration","scope":5189,"src":"8289:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5170,"name":"uint256","nodeType":"ElementaryTypeName","src":"8289:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5182,"initialValue":{"arguments":[{"baseExpression":{"id":5173,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"8336:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5175,"indexExpression":{"id":5174,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5121,"src":"8357:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8336:24:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5176,"name":"_add","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5280,"src":"8382:4:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5179,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5123,"src":"8427:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5177,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"8408:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":5178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8417:9:11","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":10995,"src":"8408:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8408:26:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"},{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5172,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5266,"src":"8309:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_storage_ptr_$_t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$_$_t_uint208_$returns$_t_uint208_$_t_uint208_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,function (uint208,uint208) view returns (uint208),uint208) returns (uint208,uint208)"}},"id":5181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8309:143:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"nodeType":"VariableDeclarationStatement","src":"8270:182:11"},{"eventCall":{"arguments":[{"id":5184,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5121,"src":"8496:2:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5185,"name":"oldValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5169,"src":"8500:8:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5186,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"8510:8:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5183,"name":"DelegateVotesChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"8475:20:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":5187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8475:44:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5188,"nodeType":"EmitStatement","src":"8470:49:11"}]}}]}}]},"documentation":{"id":5117,"nodeType":"StructuredDocumentation","src":"7681:75:11","text":" @dev Moves delegated votes from one delegate to another."},"id":5194,"implemented":true,"kind":"function","modifiers":[],"name":"_moveDelegateVotes","nameLocation":"7770:18:11","nodeType":"FunctionDefinition","parameters":{"id":5124,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5119,"mutability":"mutable","name":"from","nameLocation":"7797:4:11","nodeType":"VariableDeclaration","scope":5194,"src":"7789:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5118,"name":"address","nodeType":"ElementaryTypeName","src":"7789:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5121,"mutability":"mutable","name":"to","nameLocation":"7811:2:11","nodeType":"VariableDeclaration","scope":5194,"src":"7803:10:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5120,"name":"address","nodeType":"ElementaryTypeName","src":"7803:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5123,"mutability":"mutable","name":"amount","nameLocation":"7823:6:11","nodeType":"VariableDeclaration","scope":5194,"src":"7815:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5122,"name":"uint256","nodeType":"ElementaryTypeName","src":"7815:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7788:42:11"},"returnParameters":{"id":5125,"nodeType":"ParameterList","parameters":[],"src":"7848:0:11"},"scope":5303,"src":"7761:789:11","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5211,"nodeType":"Block","src":"8706:81:11","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":5204,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"8741:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5206,"indexExpression":{"id":5205,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5197,"src":"8762:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8741:29:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":5207,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8771:6:11","memberName":"length","nodeType":"MemberAccess","referencedDeclaration":13534,"src":"8741:36:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint256)"}},"id":5208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8741:38:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5202,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"8723:8:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":5203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8732:8:11","memberName":"toUint32","nodeType":"MemberAccess","referencedDeclaration":11611,"src":"8723:17:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) pure returns (uint32)"}},"id":5209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8723:57:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":5201,"id":5210,"nodeType":"Return","src":"8716:64:11"}]},"documentation":{"id":5195,"nodeType":"StructuredDocumentation","src":"8556:64:11","text":" @dev Get number of checkpoints for `account`."},"id":5212,"implemented":true,"kind":"function","modifiers":[],"name":"_numCheckpoints","nameLocation":"8634:15:11","nodeType":"FunctionDefinition","parameters":{"id":5198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5197,"mutability":"mutable","name":"account","nameLocation":"8658:7:11","nodeType":"VariableDeclaration","scope":5212,"src":"8650:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5196,"name":"address","nodeType":"ElementaryTypeName","src":"8650:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8649:17:11"},"returnParameters":{"id":5201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5200,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5212,"src":"8698:6:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5199,"name":"uint32","nodeType":"ElementaryTypeName","src":"8698:6:11","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8697:8:11"},"scope":5303,"src":"8625:162:11","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":5230,"nodeType":"Block","src":"9002:61:11","statements":[{"expression":{"arguments":[{"id":5227,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5217,"src":"9052:3:11","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"baseExpression":{"id":5223,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"9019:20:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13246_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5225,"indexExpression":{"id":5224,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5215,"src":"9040:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9019:29:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":5226,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9049:2:11","memberName":"at","nodeType":"MemberAccess","referencedDeclaration":13552,"src":"9019:32:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint32_$returns$_t_struct$_Checkpoint208_$13251_memory_ptr_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint32) view returns (struct Checkpoints.Checkpoint208 memory)"}},"id":5228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9019:37:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}},"functionReturnParameters":5222,"id":5229,"nodeType":"Return","src":"9012:44:11"}]},"documentation":{"id":5213,"nodeType":"StructuredDocumentation","src":"8793:66:11","text":" @dev Get the `pos`-th checkpoint for `account`."},"id":5231,"implemented":true,"kind":"function","modifiers":[],"name":"_checkpoints","nameLocation":"8873:12:11","nodeType":"FunctionDefinition","parameters":{"id":5218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5215,"mutability":"mutable","name":"account","nameLocation":"8903:7:11","nodeType":"VariableDeclaration","scope":5231,"src":"8895:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5214,"name":"address","nodeType":"ElementaryTypeName","src":"8895:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5217,"mutability":"mutable","name":"pos","nameLocation":"8927:3:11","nodeType":"VariableDeclaration","scope":5231,"src":"8920:10:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5216,"name":"uint32","nodeType":"ElementaryTypeName","src":"8920:6:11","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8885:51:11"},"returnParameters":{"id":5222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5221,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5231,"src":"8968:32:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":5220,"nodeType":"UserDefinedTypeName","pathNode":{"id":5219,"name":"Checkpoints.Checkpoint208","nameLocations":["8968:11:11","8980:13:11"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"8968:25:11"},"referencedDeclaration":13251,"src":"8968:25:11","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"8967:34:11"},"scope":5303,"src":"8864:199:11","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":5265,"nodeType":"Block","src":"9272:70:11","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":5255,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4829,"src":"9300:5:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":5256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9300:7:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5258,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5234,"src":"9312:5:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":5259,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9318:6:11","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"9312:12:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13246_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":5260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9312:14:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},{"id":5261,"name":"delta","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5246,"src":"9328:5:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint208","typeString":"uint208"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5257,"name":"op","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5244,"src":"9309:2:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) view returns (uint208)"}},"id":5262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9309:25:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"expression":{"id":5253,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5234,"src":"9289:5:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":5254,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9295:4:11","memberName":"push","nodeType":"MemberAccess","referencedDeclaration":13274,"src":"9289:10:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13246_storage_ptr_$_t_uint48_$_t_uint208_$returns$_t_uint208_$_t_uint208_$attached_to$_t_struct$_Trace208_$13246_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48,uint208) returns (uint208,uint208)"}},"id":5263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9289:46:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"functionReturnParameters":5252,"id":5264,"nodeType":"Return","src":"9282:53:11"}]},"id":5266,"implemented":true,"kind":"function","modifiers":[],"name":"_push","nameLocation":"9078:5:11","nodeType":"FunctionDefinition","parameters":{"id":5247,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5234,"mutability":"mutable","name":"store","nameLocation":"9122:5:11","nodeType":"VariableDeclaration","scope":5266,"src":"9093:34:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":5233,"nodeType":"UserDefinedTypeName","pathNode":{"id":5232,"name":"Checkpoints.Trace208","nameLocations":["9093:11:11","9105:8:11"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"9093:20:11"},"referencedDeclaration":13246,"src":"9093:20:11","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":5244,"mutability":"mutable","name":"op","nameLocation":"9187:2:11","nodeType":"VariableDeclaration","scope":5266,"src":"9137:52:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) view returns (uint208)"},"typeName":{"id":5243,"nodeType":"FunctionTypeName","parameterTypes":{"id":5239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5236,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5243,"src":"9146:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5235,"name":"uint208","nodeType":"ElementaryTypeName","src":"9146:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5238,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5243,"src":"9155:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5237,"name":"uint208","nodeType":"ElementaryTypeName","src":"9155:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9145:18:11"},"returnParameterTypes":{"id":5242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5241,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5243,"src":"9178:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5240,"name":"uint208","nodeType":"ElementaryTypeName","src":"9178:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9177:9:11"},"src":"9137:52:11","stateMutability":"view","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) view returns (uint208)"},"visibility":"internal"},"visibility":"internal"},{"constant":false,"id":5246,"mutability":"mutable","name":"delta","nameLocation":"9207:5:11","nodeType":"VariableDeclaration","scope":5266,"src":"9199:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5245,"name":"uint208","nodeType":"ElementaryTypeName","src":"9199:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9083:135:11"},"returnParameters":{"id":5252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5249,"mutability":"mutable","name":"oldValue","nameLocation":"9244:8:11","nodeType":"VariableDeclaration","scope":5266,"src":"9236:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5248,"name":"uint208","nodeType":"ElementaryTypeName","src":"9236:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5251,"mutability":"mutable","name":"newValue","nameLocation":"9262:8:11","nodeType":"VariableDeclaration","scope":5266,"src":"9254:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5250,"name":"uint208","nodeType":"ElementaryTypeName","src":"9254:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9235:36:11"},"scope":5303,"src":"9069:273:11","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":5279,"nodeType":"Block","src":"9415:29:11","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint208","typeString":"uint208"},"id":5277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5275,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5268,"src":"9432:1:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5276,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5270,"src":"9436:1:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"9432:5:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":5274,"id":5278,"nodeType":"Return","src":"9425:12:11"}]},"id":5280,"implemented":true,"kind":"function","modifiers":[],"name":"_add","nameLocation":"9357:4:11","nodeType":"FunctionDefinition","parameters":{"id":5271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5268,"mutability":"mutable","name":"a","nameLocation":"9370:1:11","nodeType":"VariableDeclaration","scope":5280,"src":"9362:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5267,"name":"uint208","nodeType":"ElementaryTypeName","src":"9362:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5270,"mutability":"mutable","name":"b","nameLocation":"9381:1:11","nodeType":"VariableDeclaration","scope":5280,"src":"9373:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5269,"name":"uint208","nodeType":"ElementaryTypeName","src":"9373:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9361:22:11"},"returnParameters":{"id":5274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5273,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5280,"src":"9406:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5272,"name":"uint208","nodeType":"ElementaryTypeName","src":"9406:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9405:9:11"},"scope":5303,"src":"9348:96:11","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":5293,"nodeType":"Block","src":"9522:29:11","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint208","typeString":"uint208"},"id":5291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5289,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5282,"src":"9539:1:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5290,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5284,"src":"9543:1:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"9539:5:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":5288,"id":5292,"nodeType":"Return","src":"9532:12:11"}]},"id":5294,"implemented":true,"kind":"function","modifiers":[],"name":"_subtract","nameLocation":"9459:9:11","nodeType":"FunctionDefinition","parameters":{"id":5285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5282,"mutability":"mutable","name":"a","nameLocation":"9477:1:11","nodeType":"VariableDeclaration","scope":5294,"src":"9469:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5281,"name":"uint208","nodeType":"ElementaryTypeName","src":"9469:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5284,"mutability":"mutable","name":"b","nameLocation":"9488:1:11","nodeType":"VariableDeclaration","scope":5294,"src":"9480:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5283,"name":"uint208","nodeType":"ElementaryTypeName","src":"9480:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9468:22:11"},"returnParameters":{"id":5288,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5287,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5294,"src":"9513:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5286,"name":"uint208","nodeType":"ElementaryTypeName","src":"9513:7:11","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9512:9:11"},"scope":5303,"src":"9450:101:11","stateMutability":"pure","virtual":false,"visibility":"private"},{"documentation":{"id":5295,"nodeType":"StructuredDocumentation","src":"9557:72:11","text":" @dev Must return the voting units held by an account."},"id":5302,"implemented":false,"kind":"function","modifiers":[],"name":"_getVotingUnits","nameLocation":"9643:15:11","nodeType":"FunctionDefinition","parameters":{"id":5298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5297,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5302,"src":"9659:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5296,"name":"address","nodeType":"ElementaryTypeName","src":"9659:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9658:9:11"},"returnParameters":{"id":5301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5302,"src":"9699:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5299,"name":"uint256","nodeType":"ElementaryTypeName","src":"9699:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9698:9:11"},"scope":5303,"src":"9634:74:11","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":5304,"src":"1892:7818:11","usedErrors":[4685,4811,4818,6750,6874,6876,8412,8417,8422,10810,12717],"usedEvents":[4694,4703,5326]}],"src":"109:9602:11"},"id":11},"@openzeppelin/contracts/interfaces/IERC1271.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1271.sol","exportedSymbols":{"IERC1271":[5317]},"id":5318,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5305,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:12"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1271","contractDependencies":[],"contractKind":"interface","documentation":{"id":5306,"nodeType":"StructuredDocumentation","src":"133:160:12","text":" @dev Interface of the ERC-1271 standard signature validation method for\n contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271]."},"fullyImplemented":false,"id":5317,"linearizedBaseContracts":[5317],"name":"IERC1271","nameLocation":"304:8:12","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5307,"nodeType":"StructuredDocumentation","src":"319:220:12","text":" @dev Should return whether the signature provided is valid for the provided data\n @param hash Hash of the data to be signed\n @param signature Signature byte array associated with _data"},"functionSelector":"1626ba7e","id":5316,"implemented":false,"kind":"function","modifiers":[],"name":"isValidSignature","nameLocation":"553:16:12","nodeType":"FunctionDefinition","parameters":{"id":5312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5309,"mutability":"mutable","name":"hash","nameLocation":"578:4:12","nodeType":"VariableDeclaration","scope":5316,"src":"570:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5308,"name":"bytes32","nodeType":"ElementaryTypeName","src":"570:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5311,"mutability":"mutable","name":"signature","nameLocation":"597:9:12","nodeType":"VariableDeclaration","scope":5316,"src":"584:22:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5310,"name":"bytes","nodeType":"ElementaryTypeName","src":"584:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"569:38:12"},"returnParameters":{"id":5315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5314,"mutability":"mutable","name":"magicValue","nameLocation":"638:10:12","nodeType":"VariableDeclaration","scope":5316,"src":"631:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5313,"name":"bytes4","nodeType":"ElementaryTypeName","src":"631:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"630:19:12"},"scope":5317,"src":"544:106:12","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5318,"src":"294:358:12","usedErrors":[],"usedEvents":[]}],"src":"107:546:12"},"id":12},"@openzeppelin/contracts/interfaces/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","exportedSymbols":{"IERC165":[9194]},"id":5322,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5319,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:13"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../utils/introspection/IERC165.sol","id":5321,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5322,"sourceUnit":9195,"src":"132:59:13","symbolAliases":[{"foreign":{"id":5320,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"140:7:13","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"106:86:13"},"id":13},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","exportedSymbols":{"IERC5267":[5346]},"id":5347,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5323,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:14"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC5267","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":5346,"linearizedBaseContracts":[5346],"name":"IERC5267","nameLocation":"143:8:14","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":5324,"nodeType":"StructuredDocumentation","src":"158:84:14","text":" @dev MAY be emitted to signal that the domain could have changed."},"eventSelector":"0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31","id":5326,"name":"EIP712DomainChanged","nameLocation":"253:19:14","nodeType":"EventDefinition","parameters":{"id":5325,"nodeType":"ParameterList","parameters":[],"src":"272:2:14"},"src":"247:28:14"},{"documentation":{"id":5327,"nodeType":"StructuredDocumentation","src":"281:140:14","text":" @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n signature."},"functionSelector":"84b0196e","id":5345,"implemented":false,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"435:12:14","nodeType":"FunctionDefinition","parameters":{"id":5328,"nodeType":"ParameterList","parameters":[],"src":"447:2:14"},"returnParameters":{"id":5344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5330,"mutability":"mutable","name":"fields","nameLocation":"517:6:14","nodeType":"VariableDeclaration","scope":5345,"src":"510:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":5329,"name":"bytes1","nodeType":"ElementaryTypeName","src":"510:6:14","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":5332,"mutability":"mutable","name":"name","nameLocation":"551:4:14","nodeType":"VariableDeclaration","scope":5345,"src":"537:18:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5331,"name":"string","nodeType":"ElementaryTypeName","src":"537:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5334,"mutability":"mutable","name":"version","nameLocation":"583:7:14","nodeType":"VariableDeclaration","scope":5345,"src":"569:21:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5333,"name":"string","nodeType":"ElementaryTypeName","src":"569:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5336,"mutability":"mutable","name":"chainId","nameLocation":"612:7:14","nodeType":"VariableDeclaration","scope":5345,"src":"604:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5335,"name":"uint256","nodeType":"ElementaryTypeName","src":"604:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5338,"mutability":"mutable","name":"verifyingContract","nameLocation":"641:17:14","nodeType":"VariableDeclaration","scope":5345,"src":"633:25:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5337,"name":"address","nodeType":"ElementaryTypeName","src":"633:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5340,"mutability":"mutable","name":"salt","nameLocation":"680:4:14","nodeType":"VariableDeclaration","scope":5345,"src":"672:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5339,"name":"bytes32","nodeType":"ElementaryTypeName","src":"672:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5343,"mutability":"mutable","name":"extensions","nameLocation":"715:10:14","nodeType":"VariableDeclaration","scope":5345,"src":"698:27:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5341,"name":"uint256","nodeType":"ElementaryTypeName","src":"698:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5342,"nodeType":"ArrayTypeName","src":"698:9:14","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"496:239:14"},"scope":5346,"src":"426:310:14","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5347,"src":"133:605:14","usedErrors":[],"usedEvents":[5326]}],"src":"107:632:14"},"id":14},"@openzeppelin/contracts/interfaces/IERC5805.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5805.sol","exportedSymbols":{"IERC5805":[5357],"IERC6372":[5372],"IVotes":[4760]},"id":5358,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5348,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:15"},{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","file":"../governance/utils/IVotes.sol","id":5350,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5358,"sourceUnit":4761,"src":"133:54:15","symbolAliases":[{"foreign":{"id":5349,"name":"IVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4760,"src":"141:6:15","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC6372.sol","file":"./IERC6372.sol","id":5352,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5358,"sourceUnit":5373,"src":"188:40:15","symbolAliases":[{"foreign":{"id":5351,"name":"IERC6372","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5372,"src":"196:8:15","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5353,"name":"IERC6372","nameLocations":["252:8:15"],"nodeType":"IdentifierPath","referencedDeclaration":5372,"src":"252:8:15"},"id":5354,"nodeType":"InheritanceSpecifier","src":"252:8:15"},{"baseName":{"id":5355,"name":"IVotes","nameLocations":["262:6:15"],"nodeType":"IdentifierPath","referencedDeclaration":4760,"src":"262:6:15"},"id":5356,"nodeType":"InheritanceSpecifier","src":"262:6:15"}],"canonicalName":"IERC5805","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":5357,"linearizedBaseContracts":[5357,4760,5372],"name":"IERC5805","nameLocation":"240:8:15","nodeType":"ContractDefinition","nodes":[],"scope":5358,"src":"230:41:15","usedErrors":[4685],"usedEvents":[4694,4703]}],"src":"107:165:15"},"id":15},"@openzeppelin/contracts/interfaces/IERC6372.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC6372.sol","exportedSymbols":{"IERC6372":[5372]},"id":5373,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5359,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:16"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC6372","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":5372,"linearizedBaseContracts":[5372],"name":"IERC6372","nameLocation":"143:8:16","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5360,"nodeType":"StructuredDocumentation","src":"158:133:16","text":" @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting)."},"functionSelector":"91ddadf4","id":5365,"implemented":false,"kind":"function","modifiers":[],"name":"clock","nameLocation":"305:5:16","nodeType":"FunctionDefinition","parameters":{"id":5361,"nodeType":"ParameterList","parameters":[],"src":"310:2:16"},"returnParameters":{"id":5364,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5363,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5365,"src":"336:6:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5362,"name":"uint48","nodeType":"ElementaryTypeName","src":"336:6:16","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"335:8:16"},"scope":5372,"src":"296:48:16","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5366,"nodeType":"StructuredDocumentation","src":"350:48:16","text":" @dev Description of the clock"},"functionSelector":"4bf5d7e9","id":5371,"implemented":false,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"465:10:16","nodeType":"FunctionDefinition","parameters":{"id":5367,"nodeType":"ParameterList","parameters":[],"src":"475:2:16"},"returnParameters":{"id":5370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5369,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5371,"src":"501:13:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5368,"name":"string","nodeType":"ElementaryTypeName","src":"501:6:16","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"500:15:16"},"scope":5372,"src":"456:60:16","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5373,"src":"133:385:16","usedErrors":[],"usedEvents":[]}],"src":"107:412:16"},"id":16},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[5509],"IERC20Errors":[5414],"IERC721Errors":[5462]},"id":5510,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5374,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:17"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":5375,"nodeType":"StructuredDocumentation","src":"138:141:17","text":" @dev Standard ERC-20 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens."},"fullyImplemented":true,"id":5414,"linearizedBaseContracts":[5414],"name":"IERC20Errors","nameLocation":"290:12:17","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5376,"nodeType":"StructuredDocumentation","src":"309:309:17","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"e450d38c","id":5384,"name":"ERC20InsufficientBalance","nameLocation":"629:24:17","nodeType":"ErrorDefinition","parameters":{"id":5383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5378,"mutability":"mutable","name":"sender","nameLocation":"662:6:17","nodeType":"VariableDeclaration","scope":5384,"src":"654:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5377,"name":"address","nodeType":"ElementaryTypeName","src":"654:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5380,"mutability":"mutable","name":"balance","nameLocation":"678:7:17","nodeType":"VariableDeclaration","scope":5384,"src":"670:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5379,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5382,"mutability":"mutable","name":"needed","nameLocation":"695:6:17","nodeType":"VariableDeclaration","scope":5384,"src":"687:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5381,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"653:49:17"},"src":"623:80:17"},{"documentation":{"id":5385,"nodeType":"StructuredDocumentation","src":"709:152:17","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":5389,"name":"ERC20InvalidSender","nameLocation":"872:18:17","nodeType":"ErrorDefinition","parameters":{"id":5388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5387,"mutability":"mutable","name":"sender","nameLocation":"899:6:17","nodeType":"VariableDeclaration","scope":5389,"src":"891:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5386,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:16:17"},"src":"866:41:17"},{"documentation":{"id":5390,"nodeType":"StructuredDocumentation","src":"913:159:17","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"ec442f05","id":5394,"name":"ERC20InvalidReceiver","nameLocation":"1083:20:17","nodeType":"ErrorDefinition","parameters":{"id":5393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5392,"mutability":"mutable","name":"receiver","nameLocation":"1112:8:17","nodeType":"VariableDeclaration","scope":5394,"src":"1104:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5391,"name":"address","nodeType":"ElementaryTypeName","src":"1104:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1103:18:17"},"src":"1077:45:17"},{"documentation":{"id":5395,"nodeType":"StructuredDocumentation","src":"1128:345:17","text":" @dev Indicates a failure with the `spender`s `allowance`. Used in transfers.\n @param spender Address that may be allowed to operate on tokens without being their owner.\n @param allowance Amount of tokens a `spender` is allowed to operate with.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"fb8f41b2","id":5403,"name":"ERC20InsufficientAllowance","nameLocation":"1484:26:17","nodeType":"ErrorDefinition","parameters":{"id":5402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5397,"mutability":"mutable","name":"spender","nameLocation":"1519:7:17","nodeType":"VariableDeclaration","scope":5403,"src":"1511:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5396,"name":"address","nodeType":"ElementaryTypeName","src":"1511:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5399,"mutability":"mutable","name":"allowance","nameLocation":"1536:9:17","nodeType":"VariableDeclaration","scope":5403,"src":"1528:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5398,"name":"uint256","nodeType":"ElementaryTypeName","src":"1528:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5401,"mutability":"mutable","name":"needed","nameLocation":"1555:6:17","nodeType":"VariableDeclaration","scope":5403,"src":"1547:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5400,"name":"uint256","nodeType":"ElementaryTypeName","src":"1547:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1510:52:17"},"src":"1478:85:17"},{"documentation":{"id":5404,"nodeType":"StructuredDocumentation","src":"1569:174:17","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"e602df05","id":5408,"name":"ERC20InvalidApprover","nameLocation":"1754:20:17","nodeType":"ErrorDefinition","parameters":{"id":5407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5406,"mutability":"mutable","name":"approver","nameLocation":"1783:8:17","nodeType":"VariableDeclaration","scope":5408,"src":"1775:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5405,"name":"address","nodeType":"ElementaryTypeName","src":"1775:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1774:18:17"},"src":"1748:45:17"},{"documentation":{"id":5409,"nodeType":"StructuredDocumentation","src":"1799:195:17","text":" @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n @param spender Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"94280d62","id":5413,"name":"ERC20InvalidSpender","nameLocation":"2005:19:17","nodeType":"ErrorDefinition","parameters":{"id":5412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5411,"mutability":"mutable","name":"spender","nameLocation":"2033:7:17","nodeType":"VariableDeclaration","scope":5413,"src":"2025:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5410,"name":"address","nodeType":"ElementaryTypeName","src":"2025:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2024:17:17"},"src":"1999:43:17"}],"scope":5510,"src":"280:1764:17","usedErrors":[5384,5389,5394,5403,5408,5413],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":5415,"nodeType":"StructuredDocumentation","src":"2046:143:17","text":" @dev Standard ERC-721 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens."},"fullyImplemented":true,"id":5462,"linearizedBaseContracts":[5462],"name":"IERC721Errors","nameLocation":"2200:13:17","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5416,"nodeType":"StructuredDocumentation","src":"2220:219:17","text":" @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n Used in balance queries.\n @param owner Address of the current owner of a token."},"errorSelector":"89c62b64","id":5420,"name":"ERC721InvalidOwner","nameLocation":"2450:18:17","nodeType":"ErrorDefinition","parameters":{"id":5419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5418,"mutability":"mutable","name":"owner","nameLocation":"2477:5:17","nodeType":"VariableDeclaration","scope":5420,"src":"2469:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5417,"name":"address","nodeType":"ElementaryTypeName","src":"2469:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2468:15:17"},"src":"2444:40:17"},{"documentation":{"id":5421,"nodeType":"StructuredDocumentation","src":"2490:132:17","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":5425,"name":"ERC721NonexistentToken","nameLocation":"2633:22:17","nodeType":"ErrorDefinition","parameters":{"id":5424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5423,"mutability":"mutable","name":"tokenId","nameLocation":"2664:7:17","nodeType":"VariableDeclaration","scope":5425,"src":"2656:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5422,"name":"uint256","nodeType":"ElementaryTypeName","src":"2656:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:17:17"},"src":"2627:46:17"},{"documentation":{"id":5426,"nodeType":"StructuredDocumentation","src":"2679:289:17","text":" @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param tokenId Identifier number of a token.\n @param owner Address of the current owner of a token."},"errorSelector":"64283d7b","id":5434,"name":"ERC721IncorrectOwner","nameLocation":"2979:20:17","nodeType":"ErrorDefinition","parameters":{"id":5433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5428,"mutability":"mutable","name":"sender","nameLocation":"3008:6:17","nodeType":"VariableDeclaration","scope":5434,"src":"3000:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5427,"name":"address","nodeType":"ElementaryTypeName","src":"3000:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5430,"mutability":"mutable","name":"tokenId","nameLocation":"3024:7:17","nodeType":"VariableDeclaration","scope":5434,"src":"3016:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5429,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5432,"mutability":"mutable","name":"owner","nameLocation":"3041:5:17","nodeType":"VariableDeclaration","scope":5434,"src":"3033:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5431,"name":"address","nodeType":"ElementaryTypeName","src":"3033:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2999:48:17"},"src":"2973:75:17"},{"documentation":{"id":5435,"nodeType":"StructuredDocumentation","src":"3054:152:17","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":5439,"name":"ERC721InvalidSender","nameLocation":"3217:19:17","nodeType":"ErrorDefinition","parameters":{"id":5438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5437,"mutability":"mutable","name":"sender","nameLocation":"3245:6:17","nodeType":"VariableDeclaration","scope":5439,"src":"3237:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5436,"name":"address","nodeType":"ElementaryTypeName","src":"3237:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3236:16:17"},"src":"3211:42:17"},{"documentation":{"id":5440,"nodeType":"StructuredDocumentation","src":"3259:159:17","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"64a0ae92","id":5444,"name":"ERC721InvalidReceiver","nameLocation":"3429:21:17","nodeType":"ErrorDefinition","parameters":{"id":5443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5442,"mutability":"mutable","name":"receiver","nameLocation":"3459:8:17","nodeType":"VariableDeclaration","scope":5444,"src":"3451:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5441,"name":"address","nodeType":"ElementaryTypeName","src":"3451:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3450:18:17"},"src":"3423:46:17"},{"documentation":{"id":5445,"nodeType":"StructuredDocumentation","src":"3475:247:17","text":" @dev Indicates a failure with the `operator`s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param tokenId Identifier number of a token."},"errorSelector":"177e802f","id":5451,"name":"ERC721InsufficientApproval","nameLocation":"3733:26:17","nodeType":"ErrorDefinition","parameters":{"id":5450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5447,"mutability":"mutable","name":"operator","nameLocation":"3768:8:17","nodeType":"VariableDeclaration","scope":5451,"src":"3760:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5446,"name":"address","nodeType":"ElementaryTypeName","src":"3760:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5449,"mutability":"mutable","name":"tokenId","nameLocation":"3786:7:17","nodeType":"VariableDeclaration","scope":5451,"src":"3778:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5448,"name":"uint256","nodeType":"ElementaryTypeName","src":"3778:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:35:17"},"src":"3727:68:17"},{"documentation":{"id":5452,"nodeType":"StructuredDocumentation","src":"3801:174:17","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"a9fbf51f","id":5456,"name":"ERC721InvalidApprover","nameLocation":"3986:21:17","nodeType":"ErrorDefinition","parameters":{"id":5455,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5454,"mutability":"mutable","name":"approver","nameLocation":"4016:8:17","nodeType":"VariableDeclaration","scope":5456,"src":"4008:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5453,"name":"address","nodeType":"ElementaryTypeName","src":"4008:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4007:18:17"},"src":"3980:46:17"},{"documentation":{"id":5457,"nodeType":"StructuredDocumentation","src":"4032:197:17","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"5b08ba18","id":5461,"name":"ERC721InvalidOperator","nameLocation":"4240:21:17","nodeType":"ErrorDefinition","parameters":{"id":5460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5459,"mutability":"mutable","name":"operator","nameLocation":"4270:8:17","nodeType":"VariableDeclaration","scope":5461,"src":"4262:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5458,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4261:18:17"},"src":"4234:46:17"}],"scope":5510,"src":"2190:2092:17","usedErrors":[5420,5425,5434,5439,5444,5451,5456,5461],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":5463,"nodeType":"StructuredDocumentation","src":"4284:145:17","text":" @dev Standard ERC-1155 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens."},"fullyImplemented":true,"id":5509,"linearizedBaseContracts":[5509],"name":"IERC1155Errors","nameLocation":"4440:14:17","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5464,"nodeType":"StructuredDocumentation","src":"4461:361:17","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer.\n @param tokenId Identifier number of a token."},"errorSelector":"03dee4c5","id":5474,"name":"ERC1155InsufficientBalance","nameLocation":"4833:26:17","nodeType":"ErrorDefinition","parameters":{"id":5473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5466,"mutability":"mutable","name":"sender","nameLocation":"4868:6:17","nodeType":"VariableDeclaration","scope":5474,"src":"4860:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5465,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5468,"mutability":"mutable","name":"balance","nameLocation":"4884:7:17","nodeType":"VariableDeclaration","scope":5474,"src":"4876:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5467,"name":"uint256","nodeType":"ElementaryTypeName","src":"4876:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5470,"mutability":"mutable","name":"needed","nameLocation":"4901:6:17","nodeType":"VariableDeclaration","scope":5474,"src":"4893:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5469,"name":"uint256","nodeType":"ElementaryTypeName","src":"4893:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5472,"mutability":"mutable","name":"tokenId","nameLocation":"4917:7:17","nodeType":"VariableDeclaration","scope":5474,"src":"4909:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5471,"name":"uint256","nodeType":"ElementaryTypeName","src":"4909:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4859:66:17"},"src":"4827:99:17"},{"documentation":{"id":5475,"nodeType":"StructuredDocumentation","src":"4932:152:17","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":5479,"name":"ERC1155InvalidSender","nameLocation":"5095:20:17","nodeType":"ErrorDefinition","parameters":{"id":5478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5477,"mutability":"mutable","name":"sender","nameLocation":"5124:6:17","nodeType":"VariableDeclaration","scope":5479,"src":"5116:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5476,"name":"address","nodeType":"ElementaryTypeName","src":"5116:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5115:16:17"},"src":"5089:43:17"},{"documentation":{"id":5480,"nodeType":"StructuredDocumentation","src":"5138:159:17","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"57f447ce","id":5484,"name":"ERC1155InvalidReceiver","nameLocation":"5308:22:17","nodeType":"ErrorDefinition","parameters":{"id":5483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5482,"mutability":"mutable","name":"receiver","nameLocation":"5339:8:17","nodeType":"VariableDeclaration","scope":5484,"src":"5331:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5481,"name":"address","nodeType":"ElementaryTypeName","src":"5331:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5330:18:17"},"src":"5302:47:17"},{"documentation":{"id":5485,"nodeType":"StructuredDocumentation","src":"5355:256:17","text":" @dev Indicates a failure with the `operator`s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param owner Address of the current owner of a token."},"errorSelector":"e237d922","id":5491,"name":"ERC1155MissingApprovalForAll","nameLocation":"5622:28:17","nodeType":"ErrorDefinition","parameters":{"id":5490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5487,"mutability":"mutable","name":"operator","nameLocation":"5659:8:17","nodeType":"VariableDeclaration","scope":5491,"src":"5651:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5486,"name":"address","nodeType":"ElementaryTypeName","src":"5651:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5489,"mutability":"mutable","name":"owner","nameLocation":"5677:5:17","nodeType":"VariableDeclaration","scope":5491,"src":"5669:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5488,"name":"address","nodeType":"ElementaryTypeName","src":"5669:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5650:33:17"},"src":"5616:68:17"},{"documentation":{"id":5492,"nodeType":"StructuredDocumentation","src":"5690:174:17","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"3e31884e","id":5496,"name":"ERC1155InvalidApprover","nameLocation":"5875:22:17","nodeType":"ErrorDefinition","parameters":{"id":5495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5494,"mutability":"mutable","name":"approver","nameLocation":"5906:8:17","nodeType":"VariableDeclaration","scope":5496,"src":"5898:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5493,"name":"address","nodeType":"ElementaryTypeName","src":"5898:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5897:18:17"},"src":"5869:47:17"},{"documentation":{"id":5497,"nodeType":"StructuredDocumentation","src":"5922:197:17","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"ced3e100","id":5501,"name":"ERC1155InvalidOperator","nameLocation":"6130:22:17","nodeType":"ErrorDefinition","parameters":{"id":5500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5499,"mutability":"mutable","name":"operator","nameLocation":"6161:8:17","nodeType":"VariableDeclaration","scope":5501,"src":"6153:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5498,"name":"address","nodeType":"ElementaryTypeName","src":"6153:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6152:18:17"},"src":"6124:47:17"},{"documentation":{"id":5502,"nodeType":"StructuredDocumentation","src":"6177:280:17","text":" @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n Used in batch transfers.\n @param idsLength Length of the array of token identifiers\n @param valuesLength Length of the array of token amounts"},"errorSelector":"5b059991","id":5508,"name":"ERC1155InvalidArrayLength","nameLocation":"6468:25:17","nodeType":"ErrorDefinition","parameters":{"id":5507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5504,"mutability":"mutable","name":"idsLength","nameLocation":"6502:9:17","nodeType":"VariableDeclaration","scope":5508,"src":"6494:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5503,"name":"uint256","nodeType":"ElementaryTypeName","src":"6494:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5506,"mutability":"mutable","name":"valuesLength","nameLocation":"6521:12:17","nodeType":"VariableDeclaration","scope":5508,"src":"6513:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5505,"name":"uint256","nodeType":"ElementaryTypeName","src":"6513:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6493:41:17"},"src":"6462:73:17"}],"scope":5510,"src":"4430:2107:17","usedErrors":[5474,5479,5484,5491,5496,5501,5508],"usedEvents":[]}],"src":"112:6426:17"},"id":17},"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","exportedSymbols":{"IERC1155Receiver":[5551],"IERC165":[9194]},"id":5552,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5511,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"118:24:18"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../../utils/introspection/IERC165.sol","id":5513,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5552,"sourceUnit":9195,"src":"144:62:18","symbolAliases":[{"foreign":{"id":5512,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"152:7:18","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5515,"name":"IERC165","nameLocations":["357:7:18"],"nodeType":"IdentifierPath","referencedDeclaration":9194,"src":"357:7:18"},"id":5516,"nodeType":"InheritanceSpecifier","src":"357:7:18"}],"canonicalName":"IERC1155Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":5514,"nodeType":"StructuredDocumentation","src":"208:118:18","text":" @dev Interface that must be implemented by smart contracts in order to receive\n ERC-1155 token transfers."},"fullyImplemented":false,"id":5551,"linearizedBaseContracts":[5551,9194],"name":"IERC1155Receiver","nameLocation":"337:16:18","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5517,"nodeType":"StructuredDocumentation","src":"371:827:18","text":" @dev Handles the receipt of a single ERC-1155 token type. This function is\n called at the end of a `safeTransferFrom` after the balance has been updated.\n NOTE: To accept the transfer, this must return\n `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))`\n (i.e. 0xf23a6e61, or its own function selector).\n @param operator The address which initiated the transfer (i.e. msg.sender)\n @param from The address which previously owned the token\n @param id The ID of the token being transferred\n @param value The amount of tokens being transferred\n @param data Additional data with no specified format\n @return `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))` if transfer is allowed"},"functionSelector":"f23a6e61","id":5532,"implemented":false,"kind":"function","modifiers":[],"name":"onERC1155Received","nameLocation":"1212:17:18","nodeType":"FunctionDefinition","parameters":{"id":5528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5519,"mutability":"mutable","name":"operator","nameLocation":"1247:8:18","nodeType":"VariableDeclaration","scope":5532,"src":"1239:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5518,"name":"address","nodeType":"ElementaryTypeName","src":"1239:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5521,"mutability":"mutable","name":"from","nameLocation":"1273:4:18","nodeType":"VariableDeclaration","scope":5532,"src":"1265:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5520,"name":"address","nodeType":"ElementaryTypeName","src":"1265:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5523,"mutability":"mutable","name":"id","nameLocation":"1295:2:18","nodeType":"VariableDeclaration","scope":5532,"src":"1287:10:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5522,"name":"uint256","nodeType":"ElementaryTypeName","src":"1287:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5525,"mutability":"mutable","name":"value","nameLocation":"1315:5:18","nodeType":"VariableDeclaration","scope":5532,"src":"1307:13:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5524,"name":"uint256","nodeType":"ElementaryTypeName","src":"1307:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5527,"mutability":"mutable","name":"data","nameLocation":"1345:4:18","nodeType":"VariableDeclaration","scope":5532,"src":"1330:19:18","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5526,"name":"bytes","nodeType":"ElementaryTypeName","src":"1330:5:18","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1229:126:18"},"returnParameters":{"id":5531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5530,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5532,"src":"1374:6:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5529,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1374:6:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1373:8:18"},"scope":5551,"src":"1203:179:18","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":5533,"nodeType":"StructuredDocumentation","src":"1388:995:18","text":" @dev Handles the receipt of a multiple ERC-1155 token types. This function\n is called at the end of a `safeBatchTransferFrom` after the balances have\n been updated.\n NOTE: To accept the transfer(s), this must return\n `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))`\n (i.e. 0xbc197c81, or its own function selector).\n @param operator The address which initiated the batch transfer (i.e. msg.sender)\n @param from The address which previously owned the token\n @param ids An array containing ids of each token being transferred (order and length must match values array)\n @param values An array containing amounts of each token being transferred (order and length must match ids array)\n @param data Additional data with no specified format\n @return `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))` if transfer is allowed"},"functionSelector":"bc197c81","id":5550,"implemented":false,"kind":"function","modifiers":[],"name":"onERC1155BatchReceived","nameLocation":"2397:22:18","nodeType":"FunctionDefinition","parameters":{"id":5546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5535,"mutability":"mutable","name":"operator","nameLocation":"2437:8:18","nodeType":"VariableDeclaration","scope":5550,"src":"2429:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5534,"name":"address","nodeType":"ElementaryTypeName","src":"2429:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5537,"mutability":"mutable","name":"from","nameLocation":"2463:4:18","nodeType":"VariableDeclaration","scope":5550,"src":"2455:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5536,"name":"address","nodeType":"ElementaryTypeName","src":"2455:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5540,"mutability":"mutable","name":"ids","nameLocation":"2496:3:18","nodeType":"VariableDeclaration","scope":5550,"src":"2477:22:18","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5538,"name":"uint256","nodeType":"ElementaryTypeName","src":"2477:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5539,"nodeType":"ArrayTypeName","src":"2477:9:18","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5543,"mutability":"mutable","name":"values","nameLocation":"2528:6:18","nodeType":"VariableDeclaration","scope":5550,"src":"2509:25:18","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5541,"name":"uint256","nodeType":"ElementaryTypeName","src":"2509:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5542,"nodeType":"ArrayTypeName","src":"2509:9:18","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5545,"mutability":"mutable","name":"data","nameLocation":"2559:4:18","nodeType":"VariableDeclaration","scope":5550,"src":"2544:19:18","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5544,"name":"bytes","nodeType":"ElementaryTypeName","src":"2544:5:18","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2419:150:18"},"returnParameters":{"id":5549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5548,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5550,"src":"2588:6:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5547,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2588:6:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2587:8:18"},"scope":5551,"src":"2388:208:18","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":5552,"src":"327:2271:18","usedErrors":[],"usedEvents":[]}],"src":"118:2481:18"},"id":18},"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol","exportedSymbols":{"ERC1155Holder":[5632],"ERC165":[9182],"IERC1155Receiver":[5551],"IERC165":[9194]},"id":5633,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5553,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"121:24:19"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../../../utils/introspection/ERC165.sol","id":5556,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5633,"sourceUnit":9183,"src":"147:72:19","symbolAliases":[{"foreign":{"id":5554,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"155:7:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":5555,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9182,"src":"164:6:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","file":"../IERC1155Receiver.sol","id":5558,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5633,"sourceUnit":5552,"src":"220:57:19","symbolAliases":[{"foreign":{"id":5557,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5551,"src":"228:16:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":5560,"name":"ERC165","nameLocations":["558:6:19"],"nodeType":"IdentifierPath","referencedDeclaration":9182,"src":"558:6:19"},"id":5561,"nodeType":"InheritanceSpecifier","src":"558:6:19"},{"baseName":{"id":5562,"name":"IERC1155Receiver","nameLocations":["566:16:19"],"nodeType":"IdentifierPath","referencedDeclaration":5551,"src":"566:16:19"},"id":5563,"nodeType":"InheritanceSpecifier","src":"566:16:19"}],"canonicalName":"ERC1155Holder","contractDependencies":[],"contractKind":"contract","documentation":{"id":5559,"nodeType":"StructuredDocumentation","src":"279:243:19","text":" @dev Simple implementation of `IERC1155Receiver` that will allow a contract to hold ERC-1155 tokens.\n IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be\n stuck."},"fullyImplemented":true,"id":5632,"linearizedBaseContracts":[5632,5551,9182,9194],"name":"ERC1155Holder","nameLocation":"541:13:19","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[9181,9193],"body":{"id":5586,"nodeType":"Block","src":"758:113:19","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5574,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5566,"src":"775:11:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":5576,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5551,"src":"795:16:19","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5551_$","typeString":"type(contract IERC1155Receiver)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5551_$","typeString":"type(contract IERC1155Receiver)"}],"id":5575,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"790:4:19","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5577,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"790:22:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC1155Receiver_$5551","typeString":"type(contract IERC1155Receiver)"}},"id":5578,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"813:11:19","memberName":"interfaceId","nodeType":"MemberAccess","src":"790:34:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"775:49:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":5582,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5566,"src":"852:11:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":5580,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"828:5:19","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC1155Holder_$5632_$","typeString":"type(contract super ERC1155Holder)"}},"id":5581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"834:17:19","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":9181,"src":"828:23:19","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":5583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"828:36:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"775:89:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":5573,"id":5585,"nodeType":"Return","src":"768:96:19"}]},"documentation":{"id":5564,"nodeType":"StructuredDocumentation","src":"589:56:19","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":5587,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"659:17:19","nodeType":"FunctionDefinition","overrides":{"id":5570,"nodeType":"OverrideSpecifier","overrides":[{"id":5568,"name":"ERC165","nameLocations":["726:6:19"],"nodeType":"IdentifierPath","referencedDeclaration":9182,"src":"726:6:19"},{"id":5569,"name":"IERC165","nameLocations":["734:7:19"],"nodeType":"IdentifierPath","referencedDeclaration":9194,"src":"734:7:19"}],"src":"717:25:19"},"parameters":{"id":5567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5566,"mutability":"mutable","name":"interfaceId","nameLocation":"684:11:19","nodeType":"VariableDeclaration","scope":5587,"src":"677:18:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5565,"name":"bytes4","nodeType":"ElementaryTypeName","src":"677:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"676:20:19"},"returnParameters":{"id":5573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5572,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5587,"src":"752:4:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5571,"name":"bool","nodeType":"ElementaryTypeName","src":"752:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"751:6:19"},"scope":5632,"src":"650:221:19","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5532],"body":{"id":5607,"nodeType":"Block","src":"1041:55:19","statements":[{"expression":{"expression":{"expression":{"id":5603,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1058:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_ERC1155Holder_$5632","typeString":"contract ERC1155Holder"}},"id":5604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1063:17:19","memberName":"onERC1155Received","nodeType":"MemberAccess","referencedDeclaration":5608,"src":"1058:22:19","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256,bytes memory) external returns (bytes4)"}},"id":5605,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1081:8:19","memberName":"selector","nodeType":"MemberAccess","src":"1058:31:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":5602,"id":5606,"nodeType":"Return","src":"1051:38:19"}]},"functionSelector":"f23a6e61","id":5608,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155Received","nameLocation":"886:17:19","nodeType":"FunctionDefinition","overrides":{"id":5599,"nodeType":"OverrideSpecifier","overrides":[],"src":"1015:8:19"},"parameters":{"id":5598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5589,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"913:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5588,"name":"address","nodeType":"ElementaryTypeName","src":"913:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5591,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"930:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5590,"name":"address","nodeType":"ElementaryTypeName","src":"930:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5593,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"947:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5592,"name":"uint256","nodeType":"ElementaryTypeName","src":"947:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5595,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"964:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5594,"name":"uint256","nodeType":"ElementaryTypeName","src":"964:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5597,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"981:12:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5596,"name":"bytes","nodeType":"ElementaryTypeName","src":"981:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"903:96:19"},"returnParameters":{"id":5602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5601,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5608,"src":"1033:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5600,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1033:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1032:8:19"},"scope":5632,"src":"877:219:19","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5550],"body":{"id":5630,"nodeType":"Block","src":"1289:60:19","statements":[{"expression":{"expression":{"expression":{"id":5626,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1306:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_ERC1155Holder_$5632","typeString":"contract ERC1155Holder"}},"id":5627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1311:22:19","memberName":"onERC1155BatchReceived","nodeType":"MemberAccess","referencedDeclaration":5631,"src":"1306:27:19","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256[] memory,uint256[] memory,bytes memory) external returns (bytes4)"}},"id":5628,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1334:8:19","memberName":"selector","nodeType":"MemberAccess","src":"1306:36:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":5625,"id":5629,"nodeType":"Return","src":"1299:43:19"}]},"functionSelector":"bc197c81","id":5631,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155BatchReceived","nameLocation":"1111:22:19","nodeType":"FunctionDefinition","overrides":{"id":5622,"nodeType":"OverrideSpecifier","overrides":[],"src":"1263:8:19"},"parameters":{"id":5621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5610,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1143:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5609,"name":"address","nodeType":"ElementaryTypeName","src":"1143:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5612,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1160:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5611,"name":"address","nodeType":"ElementaryTypeName","src":"1160:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5615,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1177:16:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5613,"name":"uint256","nodeType":"ElementaryTypeName","src":"1177:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5614,"nodeType":"ArrayTypeName","src":"1177:9:19","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5618,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1203:16:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5616,"name":"uint256","nodeType":"ElementaryTypeName","src":"1203:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5617,"nodeType":"ArrayTypeName","src":"1203:9:19","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5620,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1229:12:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5619,"name":"bytes","nodeType":"ElementaryTypeName","src":"1229:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1133:114:19"},"returnParameters":{"id":5625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5624,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5631,"src":"1281:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5623,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1281:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1280:8:19"},"scope":5632,"src":"1102:247:19","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":5633,"src":"523:828:19","usedErrors":[],"usedEvents":[]}],"src":"121:1231:19"},"id":19},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[6718],"ERC20":[6147],"IERC20":[6225],"IERC20Errors":[5414],"IERC20Metadata":[6383]},"id":6148,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5634,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:20"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":5636,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6148,"sourceUnit":6226,"src":"131:36:20","symbolAliases":[{"foreign":{"id":5635,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6225,"src":"139:6:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":5638,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6148,"sourceUnit":6384,"src":"168:63:20","symbolAliases":[{"foreign":{"id":5637,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6383,"src":"176:14:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":5640,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6148,"sourceUnit":6719,"src":"232:48:20","symbolAliases":[{"foreign":{"id":5639,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6718,"src":"240:7:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":5642,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6148,"sourceUnit":5510,"src":"281:65:20","symbolAliases":[{"foreign":{"id":5641,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"289:12:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":5644,"name":"Context","nameLocations":["1133:7:20"],"nodeType":"IdentifierPath","referencedDeclaration":6718,"src":"1133:7:20"},"id":5645,"nodeType":"InheritanceSpecifier","src":"1133:7:20"},{"baseName":{"id":5646,"name":"IERC20","nameLocations":["1142:6:20"],"nodeType":"IdentifierPath","referencedDeclaration":6225,"src":"1142:6:20"},"id":5647,"nodeType":"InheritanceSpecifier","src":"1142:6:20"},{"baseName":{"id":5648,"name":"IERC20Metadata","nameLocations":["1150:14:20"],"nodeType":"IdentifierPath","referencedDeclaration":6383,"src":"1150:14:20"},"id":5649,"nodeType":"InheritanceSpecifier","src":"1150:14:20"},{"baseName":{"id":5650,"name":"IERC20Errors","nameLocations":["1166:12:20"],"nodeType":"IdentifierPath","referencedDeclaration":5414,"src":"1166:12:20"},"id":5651,"nodeType":"InheritanceSpecifier","src":"1166:12:20"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":5643,"nodeType":"StructuredDocumentation","src":"348:757:20","text":" @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n TIP: For a detailed writeup see our guide\n https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n The default value of {decimals} is 18. To change this, you should override\n this function so it returns a different value.\n We have followed general OpenZeppelin Contracts guidelines: functions revert\n instead returning `false` on failure. This behavior is nonetheless\n conventional and does not conflict with the expectations of ERC-20\n applications."},"fullyImplemented":true,"id":6147,"linearizedBaseContracts":[6147,5414,6383,6225,6718],"name":"ERC20","nameLocation":"1124:5:20","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":5655,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:20","nodeType":"VariableDeclaration","scope":6147,"src":"1185:53:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":5654,"keyName":"account","keyNameLocation":"1201:7:20","keyType":{"id":5652,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5653,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":5661,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:20","nodeType":"VariableDeclaration","scope":6147,"src":"1245:83:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":5660,"keyName":"account","keyNameLocation":"1261:7:20","keyType":{"id":5656,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5659,"keyName":"spender","keyNameLocation":"1288:7:20","keyType":{"id":5657,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5658,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":5663,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:20","nodeType":"VariableDeclaration","scope":6147,"src":"1335:28:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5662,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":5665,"mutability":"mutable","name":"_name","nameLocation":"1385:5:20","nodeType":"VariableDeclaration","scope":6147,"src":"1370:20:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":5664,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":5667,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:20","nodeType":"VariableDeclaration","scope":6147,"src":"1396:22:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":5666,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":5683,"nodeType":"Block","src":"1657:57:20","statements":[{"expression":{"id":5677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5675,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5665,"src":"1667:5:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5676,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5670,"src":"1675:5:20","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1667:13:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":5678,"nodeType":"ExpressionStatement","src":"1667:13:20"},{"expression":{"id":5681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5679,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5667,"src":"1690:7:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5680,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5672,"src":"1700:7:20","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1690:17:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":5682,"nodeType":"ExpressionStatement","src":"1690:17:20"}]},"documentation":{"id":5668,"nodeType":"StructuredDocumentation","src":"1425:171:20","text":" @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction."},"id":5684,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":5673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5670,"mutability":"mutable","name":"name_","nameLocation":"1627:5:20","nodeType":"VariableDeclaration","scope":5684,"src":"1613:19:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5669,"name":"string","nodeType":"ElementaryTypeName","src":"1613:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5672,"mutability":"mutable","name":"symbol_","nameLocation":"1648:7:20","nodeType":"VariableDeclaration","scope":5684,"src":"1634:21:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5671,"name":"string","nodeType":"ElementaryTypeName","src":"1634:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1612:44:20"},"returnParameters":{"id":5674,"nodeType":"ParameterList","parameters":[],"src":"1657:0:20"},"scope":6147,"src":"1601:113:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[6370],"body":{"id":5692,"nodeType":"Block","src":"1839:29:20","statements":[{"expression":{"id":5690,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5665,"src":"1856:5:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":5689,"id":5691,"nodeType":"Return","src":"1849:12:20"}]},"documentation":{"id":5685,"nodeType":"StructuredDocumentation","src":"1720:54:20","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":5693,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1788:4:20","nodeType":"FunctionDefinition","parameters":{"id":5686,"nodeType":"ParameterList","parameters":[],"src":"1792:2:20"},"returnParameters":{"id":5689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5688,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5693,"src":"1824:13:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5687,"name":"string","nodeType":"ElementaryTypeName","src":"1824:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1823:15:20"},"scope":6147,"src":"1779:89:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6376],"body":{"id":5701,"nodeType":"Block","src":"2043:31:20","statements":[{"expression":{"id":5699,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5667,"src":"2060:7:20","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":5698,"id":5700,"nodeType":"Return","src":"2053:14:20"}]},"documentation":{"id":5694,"nodeType":"StructuredDocumentation","src":"1874:102:20","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":5702,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1990:6:20","nodeType":"FunctionDefinition","parameters":{"id":5695,"nodeType":"ParameterList","parameters":[],"src":"1996:2:20"},"returnParameters":{"id":5698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5697,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5702,"src":"2028:13:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5696,"name":"string","nodeType":"ElementaryTypeName","src":"2028:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2027:15:20"},"scope":6147,"src":"1981:93:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6382],"body":{"id":5710,"nodeType":"Block","src":"2763:26:20","statements":[{"expression":{"hexValue":"3138","id":5708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2780:2:20","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":5707,"id":5709,"nodeType":"Return","src":"2773:9:20"}]},"documentation":{"id":5703,"nodeType":"StructuredDocumentation","src":"2080:622:20","text":" @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5.05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the default value returned by this function, unless\n it's overridden.\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}."},"functionSelector":"313ce567","id":5711,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2716:8:20","nodeType":"FunctionDefinition","parameters":{"id":5704,"nodeType":"ParameterList","parameters":[],"src":"2724:2:20"},"returnParameters":{"id":5707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5706,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5711,"src":"2756:5:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":5705,"name":"uint8","nodeType":"ElementaryTypeName","src":"2756:5:20","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2755:7:20"},"scope":6147,"src":"2707:82:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6174],"body":{"id":5719,"nodeType":"Block","src":"2910:36:20","statements":[{"expression":{"id":5717,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5663,"src":"2927:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5716,"id":5718,"nodeType":"Return","src":"2920:19:20"}]},"documentation":{"id":5712,"nodeType":"StructuredDocumentation","src":"2795:49:20","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":5720,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2858:11:20","nodeType":"FunctionDefinition","parameters":{"id":5713,"nodeType":"ParameterList","parameters":[],"src":"2869:2:20"},"returnParameters":{"id":5716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5715,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5720,"src":"2901:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5714,"name":"uint256","nodeType":"ElementaryTypeName","src":"2901:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2900:9:20"},"scope":6147,"src":"2849:97:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6182],"body":{"id":5732,"nodeType":"Block","src":"3078:42:20","statements":[{"expression":{"baseExpression":{"id":5728,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"3095:9:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5730,"indexExpression":{"id":5729,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5723,"src":"3105:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3095:18:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5727,"id":5731,"nodeType":"Return","src":"3088:25:20"}]},"documentation":{"id":5721,"nodeType":"StructuredDocumentation","src":"2952:47:20","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":5733,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3013:9:20","nodeType":"FunctionDefinition","parameters":{"id":5724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5723,"mutability":"mutable","name":"account","nameLocation":"3031:7:20","nodeType":"VariableDeclaration","scope":5733,"src":"3023:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5722,"name":"address","nodeType":"ElementaryTypeName","src":"3023:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3022:17:20"},"returnParameters":{"id":5727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5726,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5733,"src":"3069:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5725,"name":"uint256","nodeType":"ElementaryTypeName","src":"3069:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3068:9:20"},"scope":6147,"src":"3004:116:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6192],"body":{"id":5756,"nodeType":"Block","src":"3390:103:20","statements":[{"assignments":[5744],"declarations":[{"constant":false,"id":5744,"mutability":"mutable","name":"owner","nameLocation":"3408:5:20","nodeType":"VariableDeclaration","scope":5756,"src":"3400:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5743,"name":"address","nodeType":"ElementaryTypeName","src":"3400:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5747,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5745,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"3416:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3416:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3400:28:20"},{"expression":{"arguments":[{"id":5749,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5744,"src":"3448:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5750,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5736,"src":"3455:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5751,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5738,"src":"3459:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5748,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5877,"src":"3438:9:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3438:27:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5753,"nodeType":"ExpressionStatement","src":"3438:27:20"},{"expression":{"hexValue":"74727565","id":5754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3482:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5742,"id":5755,"nodeType":"Return","src":"3475:11:20"}]},"documentation":{"id":5734,"nodeType":"StructuredDocumentation","src":"3126:184:20","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `value`."},"functionSelector":"a9059cbb","id":5757,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3324:8:20","nodeType":"FunctionDefinition","parameters":{"id":5739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5736,"mutability":"mutable","name":"to","nameLocation":"3341:2:20","nodeType":"VariableDeclaration","scope":5757,"src":"3333:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5735,"name":"address","nodeType":"ElementaryTypeName","src":"3333:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5738,"mutability":"mutable","name":"value","nameLocation":"3353:5:20","nodeType":"VariableDeclaration","scope":5757,"src":"3345:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5737,"name":"uint256","nodeType":"ElementaryTypeName","src":"3345:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3332:27:20"},"returnParameters":{"id":5742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5741,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5757,"src":"3384:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5740,"name":"bool","nodeType":"ElementaryTypeName","src":"3384:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3383:6:20"},"scope":6147,"src":"3315:178:20","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6202],"body":{"id":5773,"nodeType":"Block","src":"3640:51:20","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":5767,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5661,"src":"3657:11:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":5769,"indexExpression":{"id":5768,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5760,"src":"3669:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:18:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5771,"indexExpression":{"id":5770,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5762,"src":"3676:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:27:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5766,"id":5772,"nodeType":"Return","src":"3650:34:20"}]},"documentation":{"id":5758,"nodeType":"StructuredDocumentation","src":"3499:47:20","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":5774,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3560:9:20","nodeType":"FunctionDefinition","parameters":{"id":5763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5760,"mutability":"mutable","name":"owner","nameLocation":"3578:5:20","nodeType":"VariableDeclaration","scope":5774,"src":"3570:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5759,"name":"address","nodeType":"ElementaryTypeName","src":"3570:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5762,"mutability":"mutable","name":"spender","nameLocation":"3593:7:20","nodeType":"VariableDeclaration","scope":5774,"src":"3585:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5761,"name":"address","nodeType":"ElementaryTypeName","src":"3585:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3569:32:20"},"returnParameters":{"id":5766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5765,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5774,"src":"3631:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5764,"name":"uint256","nodeType":"ElementaryTypeName","src":"3631:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3630:9:20"},"scope":6147,"src":"3551:140:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6212],"body":{"id":5797,"nodeType":"Block","src":"4077:107:20","statements":[{"assignments":[5785],"declarations":[{"constant":false,"id":5785,"mutability":"mutable","name":"owner","nameLocation":"4095:5:20","nodeType":"VariableDeclaration","scope":5797,"src":"4087:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5784,"name":"address","nodeType":"ElementaryTypeName","src":"4087:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5788,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5786,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"4103:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5787,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4103:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4087:28:20"},{"expression":{"arguments":[{"id":5790,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5785,"src":"4134:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5791,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5777,"src":"4141:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5792,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5779,"src":"4150:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5789,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[6038,6098],"referencedDeclaration":6038,"src":"4125:8:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4125:31:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5794,"nodeType":"ExpressionStatement","src":"4125:31:20"},{"expression":{"hexValue":"74727565","id":5795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4173:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5783,"id":5796,"nodeType":"Return","src":"4166:11:20"}]},"documentation":{"id":5775,"nodeType":"StructuredDocumentation","src":"3697:296:20","text":" @dev See {IERC20-approve}.\n NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n `transferFrom`. This is semantically equivalent to an infinite approval.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"095ea7b3","id":5798,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4007:7:20","nodeType":"FunctionDefinition","parameters":{"id":5780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5777,"mutability":"mutable","name":"spender","nameLocation":"4023:7:20","nodeType":"VariableDeclaration","scope":5798,"src":"4015:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5776,"name":"address","nodeType":"ElementaryTypeName","src":"4015:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5779,"mutability":"mutable","name":"value","nameLocation":"4040:5:20","nodeType":"VariableDeclaration","scope":5798,"src":"4032:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5778,"name":"uint256","nodeType":"ElementaryTypeName","src":"4032:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4014:32:20"},"returnParameters":{"id":5783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5782,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5798,"src":"4071:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5781,"name":"bool","nodeType":"ElementaryTypeName","src":"4071:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4070:6:20"},"scope":6147,"src":"3998:186:20","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6224],"body":{"id":5829,"nodeType":"Block","src":"4869:151:20","statements":[{"assignments":[5811],"declarations":[{"constant":false,"id":5811,"mutability":"mutable","name":"spender","nameLocation":"4887:7:20","nodeType":"VariableDeclaration","scope":5829,"src":"4879:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5810,"name":"address","nodeType":"ElementaryTypeName","src":"4879:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5814,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5812,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"4897:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4897:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4879:30:20"},{"expression":{"arguments":[{"id":5816,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5801,"src":"4935:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5817,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5811,"src":"4941:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5818,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5805,"src":"4950:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5815,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6146,"src":"4919:15:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4919:37:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5820,"nodeType":"ExpressionStatement","src":"4919:37:20"},{"expression":{"arguments":[{"id":5822,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5801,"src":"4976:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5823,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5803,"src":"4982:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5824,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5805,"src":"4986:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5821,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5877,"src":"4966:9:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4966:26:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5826,"nodeType":"ExpressionStatement","src":"4966:26:20"},{"expression":{"hexValue":"74727565","id":5827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5009:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5809,"id":5828,"nodeType":"Return","src":"5002:11:20"}]},"documentation":{"id":5799,"nodeType":"StructuredDocumentation","src":"4190:581:20","text":" @dev See {IERC20-transferFrom}.\n Skips emitting an {Approval} event indicating an allowance update. This is not\n required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n NOTE: Does not update the allowance if the current allowance\n is the maximum `uint256`.\n Requirements:\n - `from` and `to` cannot be the zero address.\n - `from` must have a balance of at least `value`.\n - the caller must have allowance for ``from``'s tokens of at least\n `value`."},"functionSelector":"23b872dd","id":5830,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4785:12:20","nodeType":"FunctionDefinition","parameters":{"id":5806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5801,"mutability":"mutable","name":"from","nameLocation":"4806:4:20","nodeType":"VariableDeclaration","scope":5830,"src":"4798:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5800,"name":"address","nodeType":"ElementaryTypeName","src":"4798:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5803,"mutability":"mutable","name":"to","nameLocation":"4820:2:20","nodeType":"VariableDeclaration","scope":5830,"src":"4812:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5802,"name":"address","nodeType":"ElementaryTypeName","src":"4812:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5805,"mutability":"mutable","name":"value","nameLocation":"4832:5:20","nodeType":"VariableDeclaration","scope":5830,"src":"4824:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5804,"name":"uint256","nodeType":"ElementaryTypeName","src":"4824:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4797:41:20"},"returnParameters":{"id":5809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5808,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5830,"src":"4863:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5807,"name":"bool","nodeType":"ElementaryTypeName","src":"4863:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4862:6:20"},"scope":6147,"src":"4776:244:20","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":5876,"nodeType":"Block","src":"5462:231:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5840,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5833,"src":"5476:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5492:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5842,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5484:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5841,"name":"address","nodeType":"ElementaryTypeName","src":"5484:7:20","typeDescriptions":{}}},"id":5844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5484:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5476:18:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5854,"nodeType":"IfStatement","src":"5472:86:20","trueBody":{"id":5853,"nodeType":"Block","src":"5496:62:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5544:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5848,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5536:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5847,"name":"address","nodeType":"ElementaryTypeName","src":"5536:7:20","typeDescriptions":{}}},"id":5850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5536:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5846,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5389,"src":"5517:18:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":5851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5517:30:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5852,"nodeType":"RevertStatement","src":"5510:37:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5855,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5835,"src":"5571:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5585:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5857,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5577:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5856,"name":"address","nodeType":"ElementaryTypeName","src":"5577:7:20","typeDescriptions":{}}},"id":5859,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5577:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5571:16:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5869,"nodeType":"IfStatement","src":"5567:86:20","trueBody":{"id":5868,"nodeType":"Block","src":"5589:64:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5639:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5863,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5631:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5862,"name":"address","nodeType":"ElementaryTypeName","src":"5631:7:20","typeDescriptions":{}}},"id":5865,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5631:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5861,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5394,"src":"5610:20:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":5866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5610:32:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5867,"nodeType":"RevertStatement","src":"5603:39:20"}]}},{"expression":{"arguments":[{"id":5871,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5833,"src":"5670:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5872,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5835,"src":"5676:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5873,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5837,"src":"5680:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5870,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5954,"src":"5662:7:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5662:24:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5875,"nodeType":"ExpressionStatement","src":"5662:24:20"}]},"documentation":{"id":5831,"nodeType":"StructuredDocumentation","src":"5026:362:20","text":" @dev Moves a `value` amount of tokens from `from` to `to`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":5877,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5402:9:20","nodeType":"FunctionDefinition","parameters":{"id":5838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5833,"mutability":"mutable","name":"from","nameLocation":"5420:4:20","nodeType":"VariableDeclaration","scope":5877,"src":"5412:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5832,"name":"address","nodeType":"ElementaryTypeName","src":"5412:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5835,"mutability":"mutable","name":"to","nameLocation":"5434:2:20","nodeType":"VariableDeclaration","scope":5877,"src":"5426:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5834,"name":"address","nodeType":"ElementaryTypeName","src":"5426:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5837,"mutability":"mutable","name":"value","nameLocation":"5446:5:20","nodeType":"VariableDeclaration","scope":5877,"src":"5438:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5836,"name":"uint256","nodeType":"ElementaryTypeName","src":"5438:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5411:41:20"},"returnParameters":{"id":5839,"nodeType":"ParameterList","parameters":[],"src":"5462:0:20"},"scope":6147,"src":"5393:300:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":5953,"nodeType":"Block","src":"6083:1032:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5887,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5880,"src":"6097:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6113:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5889,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6105:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5888,"name":"address","nodeType":"ElementaryTypeName","src":"6105:7:20","typeDescriptions":{}}},"id":5891,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6105:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6097:18:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5924,"nodeType":"Block","src":"6271:362:20","statements":[{"assignments":[5899],"declarations":[{"constant":false,"id":5899,"mutability":"mutable","name":"fromBalance","nameLocation":"6293:11:20","nodeType":"VariableDeclaration","scope":5924,"src":"6285:19:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5898,"name":"uint256","nodeType":"ElementaryTypeName","src":"6285:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5903,"initialValue":{"baseExpression":{"id":5900,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"6307:9:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5902,"indexExpression":{"id":5901,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5880,"src":"6317:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6307:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6285:37:20"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5904,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5899,"src":"6340:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5905,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"6354:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6340:19:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5914,"nodeType":"IfStatement","src":"6336:115:20","trueBody":{"id":5913,"nodeType":"Block","src":"6361:90:20","statements":[{"errorCall":{"arguments":[{"id":5908,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5880,"src":"6411:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5909,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5899,"src":"6417:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5910,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"6430:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5907,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5384,"src":"6386:24:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":5911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6386:50:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5912,"nodeType":"RevertStatement","src":"6379:57:20"}]}},{"id":5923,"nodeType":"UncheckedBlock","src":"6464:159:20","statements":[{"expression":{"id":5921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5915,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"6571:9:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5917,"indexExpression":{"id":5916,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5880,"src":"6581:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6571:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5918,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5899,"src":"6589:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5919,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"6603:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6589:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6571:37:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5922,"nodeType":"ExpressionStatement","src":"6571:37:20"}]}]},"id":5925,"nodeType":"IfStatement","src":"6093:540:20","trueBody":{"id":5897,"nodeType":"Block","src":"6117:148:20","statements":[{"expression":{"id":5895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5893,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5663,"src":"6233:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":5894,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"6249:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6233:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5896,"nodeType":"ExpressionStatement","src":"6233:21:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5926,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5882,"src":"6647:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6661:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5928,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6653:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5927,"name":"address","nodeType":"ElementaryTypeName","src":"6653:7:20","typeDescriptions":{}}},"id":5930,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6653:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6647:16:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5945,"nodeType":"Block","src":"6862:206:20","statements":[{"id":5944,"nodeType":"UncheckedBlock","src":"6876:182:20","statements":[{"expression":{"id":5942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5938,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"7021:9:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5940,"indexExpression":{"id":5939,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5882,"src":"7031:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7021:13:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":5941,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"7038:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7021:22:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5943,"nodeType":"ExpressionStatement","src":"7021:22:20"}]}]},"id":5946,"nodeType":"IfStatement","src":"6643:425:20","trueBody":{"id":5937,"nodeType":"Block","src":"6665:191:20","statements":[{"id":5936,"nodeType":"UncheckedBlock","src":"6679:167:20","statements":[{"expression":{"id":5934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5932,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5663,"src":"6810:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":5933,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"6826:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6810:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5935,"nodeType":"ExpressionStatement","src":"6810:21:20"}]}]}},{"eventCall":{"arguments":[{"id":5948,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5880,"src":"7092:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5949,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5882,"src":"7098:2:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5950,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"7102:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5947,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6159,"src":"7083:8:20","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7083:25:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5952,"nodeType":"EmitStatement","src":"7078:30:20"}]},"documentation":{"id":5878,"nodeType":"StructuredDocumentation","src":"5699:304:20","text":" @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n this function.\n Emits a {Transfer} event."},"id":5954,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"6017:7:20","nodeType":"FunctionDefinition","parameters":{"id":5885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5880,"mutability":"mutable","name":"from","nameLocation":"6033:4:20","nodeType":"VariableDeclaration","scope":5954,"src":"6025:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5879,"name":"address","nodeType":"ElementaryTypeName","src":"6025:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5882,"mutability":"mutable","name":"to","nameLocation":"6047:2:20","nodeType":"VariableDeclaration","scope":5954,"src":"6039:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5881,"name":"address","nodeType":"ElementaryTypeName","src":"6039:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5884,"mutability":"mutable","name":"value","nameLocation":"6059:5:20","nodeType":"VariableDeclaration","scope":5954,"src":"6051:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5883,"name":"uint256","nodeType":"ElementaryTypeName","src":"6051:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6024:41:20"},"returnParameters":{"id":5886,"nodeType":"ParameterList","parameters":[],"src":"6083:0:20"},"scope":6147,"src":"6008:1107:20","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5986,"nodeType":"Block","src":"7514:152:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5962,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5957,"src":"7528:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7547:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5964,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7539:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5963,"name":"address","nodeType":"ElementaryTypeName","src":"7539:7:20","typeDescriptions":{}}},"id":5966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7539:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7528:21:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5976,"nodeType":"IfStatement","src":"7524:91:20","trueBody":{"id":5975,"nodeType":"Block","src":"7551:64:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7601:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5970,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7593:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5969,"name":"address","nodeType":"ElementaryTypeName","src":"7593:7:20","typeDescriptions":{}}},"id":5972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7593:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5968,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5394,"src":"7572:20:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":5973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7572:32:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5974,"nodeType":"RevertStatement","src":"7565:39:20"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":5980,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7640:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5979,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7632:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5978,"name":"address","nodeType":"ElementaryTypeName","src":"7632:7:20","typeDescriptions":{}}},"id":5981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7632:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5982,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5957,"src":"7644:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5983,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5959,"src":"7653:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5977,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5954,"src":"7624:7:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7624:35:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5985,"nodeType":"ExpressionStatement","src":"7624:35:20"}]},"documentation":{"id":5955,"nodeType":"StructuredDocumentation","src":"7121:332:20","text":" @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n Relies on the `_update` mechanism\n Emits a {Transfer} event with `from` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":5987,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7467:5:20","nodeType":"FunctionDefinition","parameters":{"id":5960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5957,"mutability":"mutable","name":"account","nameLocation":"7481:7:20","nodeType":"VariableDeclaration","scope":5987,"src":"7473:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5956,"name":"address","nodeType":"ElementaryTypeName","src":"7473:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5959,"mutability":"mutable","name":"value","nameLocation":"7498:5:20","nodeType":"VariableDeclaration","scope":5987,"src":"7490:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5958,"name":"uint256","nodeType":"ElementaryTypeName","src":"7490:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7472:32:20"},"returnParameters":{"id":5961,"nodeType":"ParameterList","parameters":[],"src":"7514:0:20"},"scope":6147,"src":"7458:208:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6019,"nodeType":"Block","src":"8040:150:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5995,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5990,"src":"8054:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8073:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5997,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8065:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5996,"name":"address","nodeType":"ElementaryTypeName","src":"8065:7:20","typeDescriptions":{}}},"id":5999,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8065:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8054:21:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6009,"nodeType":"IfStatement","src":"8050:89:20","trueBody":{"id":6008,"nodeType":"Block","src":"8077:62:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8125:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6003,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8117:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6002,"name":"address","nodeType":"ElementaryTypeName","src":"8117:7:20","typeDescriptions":{}}},"id":6005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8117:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6001,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5389,"src":"8098:18:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8098:30:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6007,"nodeType":"RevertStatement","src":"8091:37:20"}]}},{"expression":{"arguments":[{"id":6011,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5990,"src":"8156:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":6014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8173:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6013,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8165:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6012,"name":"address","nodeType":"ElementaryTypeName","src":"8165:7:20","typeDescriptions":{}}},"id":6015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8165:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6016,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5992,"src":"8177:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6010,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5954,"src":"8148:7:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8148:35:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6018,"nodeType":"ExpressionStatement","src":"8148:35:20"}]},"documentation":{"id":5988,"nodeType":"StructuredDocumentation","src":"7672:307:20","text":" @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n Relies on the `_update` mechanism.\n Emits a {Transfer} event with `to` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead"},"id":6020,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7993:5:20","nodeType":"FunctionDefinition","parameters":{"id":5993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5990,"mutability":"mutable","name":"account","nameLocation":"8007:7:20","nodeType":"VariableDeclaration","scope":6020,"src":"7999:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5989,"name":"address","nodeType":"ElementaryTypeName","src":"7999:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5992,"mutability":"mutable","name":"value","nameLocation":"8024:5:20","nodeType":"VariableDeclaration","scope":6020,"src":"8016:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5991,"name":"uint256","nodeType":"ElementaryTypeName","src":"8016:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7998:32:20"},"returnParameters":{"id":5994,"nodeType":"ParameterList","parameters":[],"src":"8040:0:20"},"scope":6147,"src":"7984:206:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6037,"nodeType":"Block","src":"8800:54:20","statements":[{"expression":{"arguments":[{"id":6031,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6023,"src":"8819:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6032,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6025,"src":"8826:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6033,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6027,"src":"8835:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":6034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8842:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":6030,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[6038,6098],"referencedDeclaration":6098,"src":"8810:8:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":6035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8810:37:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6036,"nodeType":"ExpressionStatement","src":"8810:37:20"}]},"documentation":{"id":6021,"nodeType":"StructuredDocumentation","src":"8196:525:20","text":" @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address.\n Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument."},"id":6038,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8735:8:20","nodeType":"FunctionDefinition","parameters":{"id":6028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6023,"mutability":"mutable","name":"owner","nameLocation":"8752:5:20","nodeType":"VariableDeclaration","scope":6038,"src":"8744:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6022,"name":"address","nodeType":"ElementaryTypeName","src":"8744:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6025,"mutability":"mutable","name":"spender","nameLocation":"8767:7:20","nodeType":"VariableDeclaration","scope":6038,"src":"8759:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6024,"name":"address","nodeType":"ElementaryTypeName","src":"8759:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6027,"mutability":"mutable","name":"value","nameLocation":"8784:5:20","nodeType":"VariableDeclaration","scope":6038,"src":"8776:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6026,"name":"uint256","nodeType":"ElementaryTypeName","src":"8776:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8743:47:20"},"returnParameters":{"id":6029,"nodeType":"ParameterList","parameters":[],"src":"8800:0:20"},"scope":6147,"src":"8726:128:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6097,"nodeType":"Block","src":"9799:334:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6050,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6041,"src":"9813:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9830:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6052,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9822:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6051,"name":"address","nodeType":"ElementaryTypeName","src":"9822:7:20","typeDescriptions":{}}},"id":6054,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9822:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9813:19:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6064,"nodeType":"IfStatement","src":"9809:89:20","trueBody":{"id":6063,"nodeType":"Block","src":"9834:64:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6059,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9884:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6058,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9876:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6057,"name":"address","nodeType":"ElementaryTypeName","src":"9876:7:20","typeDescriptions":{}}},"id":6060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9876:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6056,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5408,"src":"9855:20:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6061,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9855:32:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6062,"nodeType":"RevertStatement","src":"9848:39:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6065,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"9911:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6068,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9930:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9922:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6066,"name":"address","nodeType":"ElementaryTypeName","src":"9922:7:20","typeDescriptions":{}}},"id":6069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9922:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9911:21:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6079,"nodeType":"IfStatement","src":"9907:90:20","trueBody":{"id":6078,"nodeType":"Block","src":"9934:63:20","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9983:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6073,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9975:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6072,"name":"address","nodeType":"ElementaryTypeName","src":"9975:7:20","typeDescriptions":{}}},"id":6075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9975:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6071,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5413,"src":"9955:19:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9955:31:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6077,"nodeType":"RevertStatement","src":"9948:38:20"}]}},{"expression":{"id":6086,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":6080,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5661,"src":"10006:11:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":6083,"indexExpression":{"id":6081,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6041,"src":"10018:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10006:18:20","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6084,"indexExpression":{"id":6082,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"10025:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10006:27:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6085,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6045,"src":"10036:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10006:35:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6087,"nodeType":"ExpressionStatement","src":"10006:35:20"},{"condition":{"id":6088,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6047,"src":"10055:9:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6096,"nodeType":"IfStatement","src":"10051:76:20","trueBody":{"id":6095,"nodeType":"Block","src":"10066:61:20","statements":[{"eventCall":{"arguments":[{"id":6090,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6041,"src":"10094:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6091,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"10101:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6092,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6045,"src":"10110:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6089,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6168,"src":"10085:8:20","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10085:31:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6094,"nodeType":"EmitStatement","src":"10080:36:20"}]}}]},"documentation":{"id":6039,"nodeType":"StructuredDocumentation","src":"8860:836:20","text":" @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n `Approval` event during `transferFrom` operations.\n Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n true using the following override:\n ```solidity\n function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n super._approve(owner, spender, value, true);\n }\n ```\n Requirements are the same as {_approve}."},"id":6098,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9710:8:20","nodeType":"FunctionDefinition","parameters":{"id":6048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6041,"mutability":"mutable","name":"owner","nameLocation":"9727:5:20","nodeType":"VariableDeclaration","scope":6098,"src":"9719:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6040,"name":"address","nodeType":"ElementaryTypeName","src":"9719:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6043,"mutability":"mutable","name":"spender","nameLocation":"9742:7:20","nodeType":"VariableDeclaration","scope":6098,"src":"9734:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6042,"name":"address","nodeType":"ElementaryTypeName","src":"9734:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6045,"mutability":"mutable","name":"value","nameLocation":"9759:5:20","nodeType":"VariableDeclaration","scope":6098,"src":"9751:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6044,"name":"uint256","nodeType":"ElementaryTypeName","src":"9751:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6047,"mutability":"mutable","name":"emitEvent","nameLocation":"9771:9:20","nodeType":"VariableDeclaration","scope":6098,"src":"9766:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6046,"name":"bool","nodeType":"ElementaryTypeName","src":"9766:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9718:63:20"},"returnParameters":{"id":6049,"nodeType":"ParameterList","parameters":[],"src":"9799:0:20"},"scope":6147,"src":"9701:432:20","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6145,"nodeType":"Block","src":"10504:387:20","statements":[{"assignments":[6109],"declarations":[{"constant":false,"id":6109,"mutability":"mutable","name":"currentAllowance","nameLocation":"10522:16:20","nodeType":"VariableDeclaration","scope":6145,"src":"10514:24:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6108,"name":"uint256","nodeType":"ElementaryTypeName","src":"10514:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6114,"initialValue":{"arguments":[{"id":6111,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6101,"src":"10551:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6112,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6103,"src":"10558:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6110,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5774,"src":"10541:9:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":6113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10541:25:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10514:52:20"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6115,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6109,"src":"10580:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":6118,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10604:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6117,"name":"uint256","nodeType":"ElementaryTypeName","src":"10604:7:20","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":6116,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10599:4:20","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10599:13:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":6120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10613:3:20","memberName":"max","nodeType":"MemberAccess","src":"10599:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10580:36:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6144,"nodeType":"IfStatement","src":"10576:309:20","trueBody":{"id":6143,"nodeType":"Block","src":"10618:267:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6122,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6109,"src":"10636:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6123,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6105,"src":"10655:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10636:24:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6132,"nodeType":"IfStatement","src":"10632:130:20","trueBody":{"id":6131,"nodeType":"Block","src":"10662:100:20","statements":[{"errorCall":{"arguments":[{"id":6126,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6103,"src":"10714:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6127,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6109,"src":"10723:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6128,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6105,"src":"10741:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6125,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5403,"src":"10687:26:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":6129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10687:60:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6130,"nodeType":"RevertStatement","src":"10680:67:20"}]}},{"id":6142,"nodeType":"UncheckedBlock","src":"10775:100:20","statements":[{"expression":{"arguments":[{"id":6134,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6101,"src":"10812:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6135,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6103,"src":"10819:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6136,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6109,"src":"10828:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6137,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6105,"src":"10847:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10828:24:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":6139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10854:5:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":6133,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[6038,6098],"referencedDeclaration":6098,"src":"10803:8:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":6140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10803:57:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6141,"nodeType":"ExpressionStatement","src":"10803:57:20"}]}]}}]},"documentation":{"id":6099,"nodeType":"StructuredDocumentation","src":"10139:271:20","text":" @dev Updates `owner` s allowance for `spender` based on spent `value`.\n Does not update the allowance value in case of infinite allowance.\n Revert if not enough allowance is available.\n Does not emit an {Approval} event."},"id":6146,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10424:15:20","nodeType":"FunctionDefinition","parameters":{"id":6106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6101,"mutability":"mutable","name":"owner","nameLocation":"10448:5:20","nodeType":"VariableDeclaration","scope":6146,"src":"10440:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6100,"name":"address","nodeType":"ElementaryTypeName","src":"10440:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6103,"mutability":"mutable","name":"spender","nameLocation":"10463:7:20","nodeType":"VariableDeclaration","scope":6146,"src":"10455:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6102,"name":"address","nodeType":"ElementaryTypeName","src":"10455:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6105,"mutability":"mutable","name":"value","nameLocation":"10480:5:20","nodeType":"VariableDeclaration","scope":6146,"src":"10472:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6104,"name":"uint256","nodeType":"ElementaryTypeName","src":"10472:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10439:47:20"},"returnParameters":{"id":6107,"nodeType":"ParameterList","parameters":[],"src":"10504:0:20"},"scope":6147,"src":"10415:476:20","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":6148,"src":"1106:9787:20","usedErrors":[5384,5389,5394,5403,5408,5413],"usedEvents":[6159,6168]}],"src":"105:10789:20"},"id":20},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[6225]},"id":6226,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6149,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:21"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":6150,"nodeType":"StructuredDocumentation","src":"132:71:21","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":6225,"linearizedBaseContracts":[6225],"name":"IERC20","nameLocation":"214:6:21","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":6151,"nodeType":"StructuredDocumentation","src":"227:158:21","text":" @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":6159,"name":"Transfer","nameLocation":"396:8:21","nodeType":"EventDefinition","parameters":{"id":6158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6153,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"421:4:21","nodeType":"VariableDeclaration","scope":6159,"src":"405:20:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6152,"name":"address","nodeType":"ElementaryTypeName","src":"405:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6155,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"443:2:21","nodeType":"VariableDeclaration","scope":6159,"src":"427:18:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6154,"name":"address","nodeType":"ElementaryTypeName","src":"427:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6157,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"455:5:21","nodeType":"VariableDeclaration","scope":6159,"src":"447:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6156,"name":"uint256","nodeType":"ElementaryTypeName","src":"447:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"404:57:21"},"src":"390:72:21"},{"anonymous":false,"documentation":{"id":6160,"nodeType":"StructuredDocumentation","src":"468:148:21","text":" @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":6168,"name":"Approval","nameLocation":"627:8:21","nodeType":"EventDefinition","parameters":{"id":6167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6162,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"652:5:21","nodeType":"VariableDeclaration","scope":6168,"src":"636:21:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6161,"name":"address","nodeType":"ElementaryTypeName","src":"636:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6164,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"675:7:21","nodeType":"VariableDeclaration","scope":6168,"src":"659:23:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6163,"name":"address","nodeType":"ElementaryTypeName","src":"659:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6166,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"692:5:21","nodeType":"VariableDeclaration","scope":6168,"src":"684:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6165,"name":"uint256","nodeType":"ElementaryTypeName","src":"684:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"635:63:21"},"src":"621:78:21"},{"documentation":{"id":6169,"nodeType":"StructuredDocumentation","src":"705:65:21","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":6174,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"784:11:21","nodeType":"FunctionDefinition","parameters":{"id":6170,"nodeType":"ParameterList","parameters":[],"src":"795:2:21"},"returnParameters":{"id":6173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6172,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6174,"src":"821:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6171,"name":"uint256","nodeType":"ElementaryTypeName","src":"821:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"820:9:21"},"scope":6225,"src":"775:55:21","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6175,"nodeType":"StructuredDocumentation","src":"836:71:21","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":6182,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:21","nodeType":"FunctionDefinition","parameters":{"id":6178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6177,"mutability":"mutable","name":"account","nameLocation":"939:7:21","nodeType":"VariableDeclaration","scope":6182,"src":"931:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6176,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:21"},"returnParameters":{"id":6181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6182,"src":"971:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6179,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:21"},"scope":6225,"src":"912:68:21","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6183,"nodeType":"StructuredDocumentation","src":"986:213:21","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"a9059cbb","id":6192,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1213:8:21","nodeType":"FunctionDefinition","parameters":{"id":6188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6185,"mutability":"mutable","name":"to","nameLocation":"1230:2:21","nodeType":"VariableDeclaration","scope":6192,"src":"1222:10:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6184,"name":"address","nodeType":"ElementaryTypeName","src":"1222:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6187,"mutability":"mutable","name":"value","nameLocation":"1242:5:21","nodeType":"VariableDeclaration","scope":6192,"src":"1234:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6186,"name":"uint256","nodeType":"ElementaryTypeName","src":"1234:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1221:27:21"},"returnParameters":{"id":6191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6190,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6192,"src":"1267:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6189,"name":"bool","nodeType":"ElementaryTypeName","src":"1267:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1266:6:21"},"scope":6225,"src":"1204:69:21","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6193,"nodeType":"StructuredDocumentation","src":"1279:264:21","text":" @dev Returns the remaining number of tokens that `spender` will be\n allowed to spend on behalf of `owner` through {transferFrom}. This is\n zero by default.\n This value changes when {approve} or {transferFrom} are called."},"functionSelector":"dd62ed3e","id":6202,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1557:9:21","nodeType":"FunctionDefinition","parameters":{"id":6198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6195,"mutability":"mutable","name":"owner","nameLocation":"1575:5:21","nodeType":"VariableDeclaration","scope":6202,"src":"1567:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6194,"name":"address","nodeType":"ElementaryTypeName","src":"1567:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6197,"mutability":"mutable","name":"spender","nameLocation":"1590:7:21","nodeType":"VariableDeclaration","scope":6202,"src":"1582:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6196,"name":"address","nodeType":"ElementaryTypeName","src":"1582:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1566:32:21"},"returnParameters":{"id":6201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6200,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6202,"src":"1622:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6199,"name":"uint256","nodeType":"ElementaryTypeName","src":"1622:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1621:9:21"},"scope":6225,"src":"1548:83:21","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6203,"nodeType":"StructuredDocumentation","src":"1637:667:21","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":6212,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2318:7:21","nodeType":"FunctionDefinition","parameters":{"id":6208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6205,"mutability":"mutable","name":"spender","nameLocation":"2334:7:21","nodeType":"VariableDeclaration","scope":6212,"src":"2326:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6204,"name":"address","nodeType":"ElementaryTypeName","src":"2326:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6207,"mutability":"mutable","name":"value","nameLocation":"2351:5:21","nodeType":"VariableDeclaration","scope":6212,"src":"2343:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6206,"name":"uint256","nodeType":"ElementaryTypeName","src":"2343:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2325:32:21"},"returnParameters":{"id":6211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6210,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6212,"src":"2376:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6209,"name":"bool","nodeType":"ElementaryTypeName","src":"2376:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2375:6:21"},"scope":6225,"src":"2309:73:21","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6213,"nodeType":"StructuredDocumentation","src":"2388:297:21","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the\n allowance mechanism. `value` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":6224,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2699:12:21","nodeType":"FunctionDefinition","parameters":{"id":6220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6215,"mutability":"mutable","name":"from","nameLocation":"2720:4:21","nodeType":"VariableDeclaration","scope":6224,"src":"2712:12:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6214,"name":"address","nodeType":"ElementaryTypeName","src":"2712:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6217,"mutability":"mutable","name":"to","nameLocation":"2734:2:21","nodeType":"VariableDeclaration","scope":6224,"src":"2726:10:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6216,"name":"address","nodeType":"ElementaryTypeName","src":"2726:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6219,"mutability":"mutable","name":"value","nameLocation":"2746:5:21","nodeType":"VariableDeclaration","scope":6224,"src":"2738:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6218,"name":"uint256","nodeType":"ElementaryTypeName","src":"2738:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2711:41:21"},"returnParameters":{"id":6223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6222,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6224,"src":"2771:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6221,"name":"bool","nodeType":"ElementaryTypeName","src":"2771:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2770:6:21"},"scope":6225,"src":"2690:87:21","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":6226,"src":"204:2575:21","usedErrors":[],"usedEvents":[6159,6168]}],"src":"106:2674:21"},"id":21},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol","exportedSymbols":{"Checkpoints":[14290],"ERC20":[6147],"ERC20Votes":[6357],"Votes":[5303]},"id":6358,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6227,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"121:24:22"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"../ERC20.sol","id":6229,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6358,"sourceUnit":6148,"src":"147:35:22","symbolAliases":[{"foreign":{"id":6228,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6147,"src":"155:5:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/utils/Votes.sol","file":"../../../governance/utils/Votes.sol","id":6231,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6358,"sourceUnit":5304,"src":"183:58:22","symbolAliases":[{"foreign":{"id":6230,"name":"Votes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5303,"src":"191:5:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","file":"../../../utils/structs/Checkpoints.sol","id":6233,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6358,"sourceUnit":14291,"src":"242:67:22","symbolAliases":[{"foreign":{"id":6232,"name":"Checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14290,"src":"250:11:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6235,"name":"ERC20","nameLocations":["1226:5:22"],"nodeType":"IdentifierPath","referencedDeclaration":6147,"src":"1226:5:22"},"id":6236,"nodeType":"InheritanceSpecifier","src":"1226:5:22"},{"baseName":{"id":6237,"name":"Votes","nameLocations":["1233:5:22"],"nodeType":"IdentifierPath","referencedDeclaration":5303,"src":"1233:5:22"},"id":6238,"nodeType":"InheritanceSpecifier","src":"1233:5:22"}],"canonicalName":"ERC20Votes","contractDependencies":[],"contractKind":"contract","documentation":{"id":6234,"nodeType":"StructuredDocumentation","src":"311:882:22","text":" @dev Extension of ERC-20 to support Compound-like voting and delegation. This version is more generic than Compound's,\n and supports token supply up to 2^208^ - 1, while COMP is limited to 2^96^ - 1.\n NOTE: This contract does not provide interface compatibility with Compound's COMP token.\n This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either\n by calling the {Votes-delegate} function directly, or by providing a signature to be used with {Votes-delegateBySig}. Voting\n power can be queried through the public accessors {Votes-getVotes} and {Votes-getPastVotes}.\n By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it\n requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked."},"fullyImplemented":true,"id":6357,"internalFunctionIDs":{"5280":1,"5294":2},"linearizedBaseContracts":[6357,5303,5357,4760,5372,6808,8976,5346,6147,5414,6383,6225,6718],"name":"ERC20Votes","nameLocation":"1212:10:22","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6239,"nodeType":"StructuredDocumentation","src":"1245:100:22","text":" @dev Total supply cap has been exceeded, introducing a risk of votes overflowing."},"errorSelector":"1cb15d26","id":6245,"name":"ERC20ExceededSafeSupply","nameLocation":"1356:23:22","nodeType":"ErrorDefinition","parameters":{"id":6244,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6241,"mutability":"mutable","name":"increasedSupply","nameLocation":"1388:15:22","nodeType":"VariableDeclaration","scope":6245,"src":"1380:23:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6240,"name":"uint256","nodeType":"ElementaryTypeName","src":"1380:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6243,"mutability":"mutable","name":"cap","nameLocation":"1413:3:22","nodeType":"VariableDeclaration","scope":6245,"src":"1405:11:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6242,"name":"uint256","nodeType":"ElementaryTypeName","src":"1405:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1379:38:22"},"src":"1350:68:22"},{"body":{"id":6257,"nodeType":"Block","src":"2175:41:22","statements":[{"expression":{"expression":{"arguments":[{"id":6253,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2197:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":6252,"name":"uint208","nodeType":"ElementaryTypeName","src":"2197:7:22","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":6251,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2192:4:22","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2192:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":6255,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2206:3:22","memberName":"max","nodeType":"MemberAccess","src":"2192:17:22","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":6250,"id":6256,"nodeType":"Return","src":"2185:24:22"}]},"documentation":{"id":6246,"nodeType":"StructuredDocumentation","src":"1424:684:22","text":" @dev Maximum token supply. Defaults to `type(uint208).max` (2^208^ - 1).\n This maximum is enforced in {_update}. It limits the total supply of the token, which is otherwise a uint256,\n so that checkpoints can be stored in the Trace208 structure used by {Votes}. Increasing this value will not\n remove the underlying limitation, and will cause {_update} to fail because of a math overflow in\n {Votes-_transferVotingUnits}. An override could be used to further restrict the total supply (to a lower value) if\n additional logic requires it. When resolving override conflicts on this function, the minimum should be\n returned."},"id":6258,"implemented":true,"kind":"function","modifiers":[],"name":"_maxSupply","nameLocation":"2122:10:22","nodeType":"FunctionDefinition","parameters":{"id":6247,"nodeType":"ParameterList","parameters":[],"src":"2132:2:22"},"returnParameters":{"id":6250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6249,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6258,"src":"2166:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6248,"name":"uint256","nodeType":"ElementaryTypeName","src":"2166:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2165:9:22"},"scope":6357,"src":"2113:103:22","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[5954],"body":{"id":6311,"nodeType":"Block","src":"2440:329:22","statements":[{"expression":{"arguments":[{"id":6272,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6261,"src":"2464:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6273,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6263,"src":"2470:2:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6274,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6265,"src":"2474:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6269,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2450:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC20Votes_$6357_$","typeString":"type(contract super ERC20Votes)"}},"id":6271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2456:7:22","memberName":"_update","nodeType":"MemberAccess","referencedDeclaration":5954,"src":"2450:13:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2450:30:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6276,"nodeType":"ExpressionStatement","src":"2450:30:22"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6277,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6261,"src":"2494:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2510:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6279,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2502:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6278,"name":"address","nodeType":"ElementaryTypeName","src":"2502:7:22","typeDescriptions":{}}},"id":6281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2502:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2494:18:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6304,"nodeType":"IfStatement","src":"2490:226:22","trueBody":{"id":6303,"nodeType":"Block","src":"2514:202:22","statements":[{"assignments":[6284],"declarations":[{"constant":false,"id":6284,"mutability":"mutable","name":"supply","nameLocation":"2536:6:22","nodeType":"VariableDeclaration","scope":6303,"src":"2528:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6283,"name":"uint256","nodeType":"ElementaryTypeName","src":"2528:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6287,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6285,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5720,"src":"2545:11:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2545:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2528:30:22"},{"assignments":[6289],"declarations":[{"constant":false,"id":6289,"mutability":"mutable","name":"cap","nameLocation":"2580:3:22","nodeType":"VariableDeclaration","scope":6303,"src":"2572:11:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6288,"name":"uint256","nodeType":"ElementaryTypeName","src":"2572:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6292,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6290,"name":"_maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6258,"src":"2586:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2586:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2572:26:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6293,"name":"supply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6284,"src":"2616:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6294,"name":"cap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6289,"src":"2625:3:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2616:12:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6302,"nodeType":"IfStatement","src":"2612:94:22","trueBody":{"id":6301,"nodeType":"Block","src":"2630:76:22","statements":[{"errorCall":{"arguments":[{"id":6297,"name":"supply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6284,"src":"2679:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6298,"name":"cap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6289,"src":"2687:3:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6296,"name":"ERC20ExceededSafeSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6245,"src":"2655:23:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":6299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2655:36:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6300,"nodeType":"RevertStatement","src":"2648:43:22"}]}}]}},{"expression":{"arguments":[{"id":6306,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6261,"src":"2746:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6307,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6263,"src":"2752:2:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6308,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6265,"src":"2756:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6305,"name":"_transferVotingUnits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5116,"src":"2725:20:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2725:37:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6310,"nodeType":"ExpressionStatement","src":"2725:37:22"}]},"documentation":{"id":6259,"nodeType":"StructuredDocumentation","src":"2222:129:22","text":" @dev Move voting power when tokens are transferred.\n Emits a {IVotes-DelegateVotesChanged} event."},"id":6312,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"2365:7:22","nodeType":"FunctionDefinition","overrides":{"id":6267,"nodeType":"OverrideSpecifier","overrides":[],"src":"2431:8:22"},"parameters":{"id":6266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6261,"mutability":"mutable","name":"from","nameLocation":"2381:4:22","nodeType":"VariableDeclaration","scope":6312,"src":"2373:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6260,"name":"address","nodeType":"ElementaryTypeName","src":"2373:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6263,"mutability":"mutable","name":"to","nameLocation":"2395:2:22","nodeType":"VariableDeclaration","scope":6312,"src":"2387:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6262,"name":"address","nodeType":"ElementaryTypeName","src":"2387:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6265,"mutability":"mutable","name":"value","nameLocation":"2407:5:22","nodeType":"VariableDeclaration","scope":6312,"src":"2399:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6264,"name":"uint256","nodeType":"ElementaryTypeName","src":"2399:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2372:41:22"},"returnParameters":{"id":6268,"nodeType":"ParameterList","parameters":[],"src":"2440:0:22"},"scope":6357,"src":"2356:413:22","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[5302],"body":{"id":6325,"nodeType":"Block","src":"3120:42:22","statements":[{"expression":{"arguments":[{"id":6322,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6315,"src":"3147:7:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6321,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5733,"src":"3137:9:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3137:18:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6320,"id":6324,"nodeType":"Return","src":"3130:25:22"}]},"documentation":{"id":6313,"nodeType":"StructuredDocumentation","src":"2775:249:22","text":" @dev Returns the voting units of an `account`.\n WARNING: Overriding this function may compromise the internal vote accounting.\n `ERC20Votes` assumes tokens map to voting units 1:1 and this is not easy to change."},"id":6326,"implemented":true,"kind":"function","modifiers":[],"name":"_getVotingUnits","nameLocation":"3038:15:22","nodeType":"FunctionDefinition","overrides":{"id":6317,"nodeType":"OverrideSpecifier","overrides":[],"src":"3093:8:22"},"parameters":{"id":6316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6315,"mutability":"mutable","name":"account","nameLocation":"3062:7:22","nodeType":"VariableDeclaration","scope":6326,"src":"3054:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6314,"name":"address","nodeType":"ElementaryTypeName","src":"3054:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3053:17:22"},"returnParameters":{"id":6320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6319,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6326,"src":"3111:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6318,"name":"uint256","nodeType":"ElementaryTypeName","src":"3111:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3110:9:22"},"scope":6357,"src":"3029:133:22","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6338,"nodeType":"Block","src":"3315:48:22","statements":[{"expression":{"arguments":[{"id":6335,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6329,"src":"3348:7:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6334,"name":"_numCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5212,"src":"3332:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint32_$","typeString":"function (address) view returns (uint32)"}},"id":6336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3332:24:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":6333,"id":6337,"nodeType":"Return","src":"3325:31:22"}]},"documentation":{"id":6327,"nodeType":"StructuredDocumentation","src":"3168:64:22","text":" @dev Get number of checkpoints for `account`."},"functionSelector":"6fcfff45","id":6339,"implemented":true,"kind":"function","modifiers":[],"name":"numCheckpoints","nameLocation":"3246:14:22","nodeType":"FunctionDefinition","parameters":{"id":6330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6329,"mutability":"mutable","name":"account","nameLocation":"3269:7:22","nodeType":"VariableDeclaration","scope":6339,"src":"3261:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6328,"name":"address","nodeType":"ElementaryTypeName","src":"3261:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3260:17:22"},"returnParameters":{"id":6333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6332,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6339,"src":"3307:6:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6331,"name":"uint32","nodeType":"ElementaryTypeName","src":"3307:6:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3306:8:22"},"scope":6357,"src":"3237:126:22","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":6355,"nodeType":"Block","src":"3553:50:22","statements":[{"expression":{"arguments":[{"id":6351,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6342,"src":"3583:7:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6352,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6344,"src":"3592:3:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":6350,"name":"_checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5231,"src":"3570:12:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint32_$returns$_t_struct$_Checkpoint208_$13251_memory_ptr_$","typeString":"function (address,uint32) view returns (struct Checkpoints.Checkpoint208 memory)"}},"id":6353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3570:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}},"functionReturnParameters":6349,"id":6354,"nodeType":"Return","src":"3563:33:22"}]},"documentation":{"id":6340,"nodeType":"StructuredDocumentation","src":"3369:66:22","text":" @dev Get the `pos`-th checkpoint for `account`."},"functionSelector":"f1127ed8","id":6356,"implemented":true,"kind":"function","modifiers":[],"name":"checkpoints","nameLocation":"3449:11:22","nodeType":"FunctionDefinition","parameters":{"id":6345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6342,"mutability":"mutable","name":"account","nameLocation":"3469:7:22","nodeType":"VariableDeclaration","scope":6356,"src":"3461:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6341,"name":"address","nodeType":"ElementaryTypeName","src":"3461:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6344,"mutability":"mutable","name":"pos","nameLocation":"3485:3:22","nodeType":"VariableDeclaration","scope":6356,"src":"3478:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6343,"name":"uint32","nodeType":"ElementaryTypeName","src":"3478:6:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3460:29:22"},"returnParameters":{"id":6349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6348,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6356,"src":"3519:32:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":6347,"nodeType":"UserDefinedTypeName","pathNode":{"id":6346,"name":"Checkpoints.Checkpoint208","nameLocations":["3519:11:22","3531:13:22"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"3519:25:22"},"referencedDeclaration":13251,"src":"3519:25:22","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"3518:34:22"},"scope":6357,"src":"3440:163:22","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":6358,"src":"1194:2411:22","usedErrors":[4685,4811,4818,5384,5389,5394,5403,5408,5413,6245,6750,6874,6876,8412,8417,8422,10810,12717],"usedEvents":[4694,4703,5326,6159,6168]}],"src":"121:3485:22"},"id":22},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[6225],"IERC20Metadata":[6383]},"id":6384,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6359,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"125:24:23"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":6361,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6384,"sourceUnit":6226,"src":"151:37:23","symbolAliases":[{"foreign":{"id":6360,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6225,"src":"159:6:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":6363,"name":"IERC20","nameLocations":["306:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":6225,"src":"306:6:23"},"id":6364,"nodeType":"InheritanceSpecifier","src":"306:6:23"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":6362,"nodeType":"StructuredDocumentation","src":"190:87:23","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":6383,"linearizedBaseContracts":[6383,6225],"name":"IERC20Metadata","nameLocation":"288:14:23","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6365,"nodeType":"StructuredDocumentation","src":"319:54:23","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":6370,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:23","nodeType":"FunctionDefinition","parameters":{"id":6366,"nodeType":"ParameterList","parameters":[],"src":"391:2:23"},"returnParameters":{"id":6369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6368,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6370,"src":"417:13:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6367,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:23"},"scope":6383,"src":"378:54:23","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6371,"nodeType":"StructuredDocumentation","src":"438:56:23","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":6376,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:23","nodeType":"FunctionDefinition","parameters":{"id":6372,"nodeType":"ParameterList","parameters":[],"src":"514:2:23"},"returnParameters":{"id":6375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6374,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6376,"src":"540:13:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6373,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:23"},"scope":6383,"src":"499:56:23","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6377,"nodeType":"StructuredDocumentation","src":"561:65:23","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":6382,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:23","nodeType":"FunctionDefinition","parameters":{"id":6378,"nodeType":"ParameterList","parameters":[],"src":"648:2:23"},"returnParameters":{"id":6381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6380,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6382,"src":"674:5:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6379,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:23"},"scope":6383,"src":"631:50:23","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":6384,"src":"278:405:23","usedErrors":[],"usedEvents":[6159,6168]}],"src":"125:559:23"},"id":23},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","exportedSymbols":{"IERC721Receiver":[6401]},"id":6402,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6385,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"116:24:24"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":6386,"nodeType":"StructuredDocumentation","src":"142:154:24","text":" @title ERC-721 token receiver interface\n @dev Interface for any contract that wants to support safeTransfers\n from ERC-721 asset contracts."},"fullyImplemented":false,"id":6401,"linearizedBaseContracts":[6401],"name":"IERC721Receiver","nameLocation":"307:15:24","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6387,"nodeType":"StructuredDocumentation","src":"329:500:24","text":" @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n by `operator` from `from`, this function is called.\n It must return its Solidity selector to confirm the token transfer.\n If any other value is returned or the interface is not implemented by the recipient, the transfer will be\n reverted.\n The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`."},"functionSelector":"150b7a02","id":6400,"implemented":false,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"843:16:24","nodeType":"FunctionDefinition","parameters":{"id":6396,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6389,"mutability":"mutable","name":"operator","nameLocation":"877:8:24","nodeType":"VariableDeclaration","scope":6400,"src":"869:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6388,"name":"address","nodeType":"ElementaryTypeName","src":"869:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6391,"mutability":"mutable","name":"from","nameLocation":"903:4:24","nodeType":"VariableDeclaration","scope":6400,"src":"895:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6390,"name":"address","nodeType":"ElementaryTypeName","src":"895:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6393,"mutability":"mutable","name":"tokenId","nameLocation":"925:7:24","nodeType":"VariableDeclaration","scope":6400,"src":"917:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6392,"name":"uint256","nodeType":"ElementaryTypeName","src":"917:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6395,"mutability":"mutable","name":"data","nameLocation":"957:4:24","nodeType":"VariableDeclaration","scope":6400,"src":"942:19:24","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6394,"name":"bytes","nodeType":"ElementaryTypeName","src":"942:5:24","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"859:108:24"},"returnParameters":{"id":6399,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6398,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6400,"src":"986:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":6397,"name":"bytes4","nodeType":"ElementaryTypeName","src":"986:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"985:8:24"},"scope":6401,"src":"834:160:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":6402,"src":"297:699:24","usedErrors":[],"usedEvents":[]}],"src":"116:881:24"},"id":24},"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol","exportedSymbols":{"ERC721Holder":[6428],"IERC721Receiver":[6401]},"id":6429,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6403,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"119:24:25"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"../IERC721Receiver.sol","id":6405,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6429,"sourceUnit":6402,"src":"145:55:25","symbolAliases":[{"foreign":{"id":6404,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6401,"src":"153:15:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6407,"name":"IERC721Receiver","nameLocations":["475:15:25"],"nodeType":"IdentifierPath","referencedDeclaration":6401,"src":"475:15:25"},"id":6408,"nodeType":"InheritanceSpecifier","src":"475:15:25"}],"canonicalName":"ERC721Holder","contractDependencies":[],"contractKind":"contract","documentation":{"id":6406,"nodeType":"StructuredDocumentation","src":"202:238:25","text":" @dev Implementation of the {IERC721Receiver} interface.\n Accepts all token transfers.\n Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or\n {IERC721-setApprovalForAll}."},"fullyImplemented":true,"id":6428,"linearizedBaseContracts":[6428,6401],"name":"ERC721Holder","nameLocation":"459:12:25","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[6400],"body":{"id":6426,"nodeType":"Block","src":"738:54:25","statements":[{"expression":{"expression":{"expression":{"id":6422,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"755:4:25","typeDescriptions":{"typeIdentifier":"t_contract$_ERC721Holder_$6428","typeString":"contract ERC721Holder"}},"id":6423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"760:16:25","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":6427,"src":"755:21:25","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,bytes memory) external returns (bytes4)"}},"id":6424,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"777:8:25","memberName":"selector","nodeType":"MemberAccess","src":"755:30:25","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":6421,"id":6425,"nodeType":"Return","src":"748:37:25"}]},"documentation":{"id":6409,"nodeType":"StructuredDocumentation","src":"497:137:25","text":" @dev See {IERC721Receiver-onERC721Received}.\n Always returns `IERC721Receiver.onERC721Received.selector`."},"functionSelector":"150b7a02","id":6427,"implemented":true,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"648:16:25","nodeType":"FunctionDefinition","parameters":{"id":6418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6411,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6427,"src":"665:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6410,"name":"address","nodeType":"ElementaryTypeName","src":"665:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6413,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6427,"src":"674:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6412,"name":"address","nodeType":"ElementaryTypeName","src":"674:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6415,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6427,"src":"683:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6414,"name":"uint256","nodeType":"ElementaryTypeName","src":"683:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6417,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6427,"src":"692:12:25","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6416,"name":"bytes","nodeType":"ElementaryTypeName","src":"692:5:25","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"664:41:25"},"returnParameters":{"id":6421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6420,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6427,"src":"730:6:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":6419,"name":"bytes4","nodeType":"ElementaryTypeName","src":"730:6:25","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"729:8:25"},"scope":6428,"src":"639:153:25","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":6429,"src":"441:353:25","usedErrors":[],"usedEvents":[]}],"src":"119:676:25"},"id":25},"@openzeppelin/contracts/utils/Address.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","exportedSymbols":{"Address":[6688],"Errors":[6740]},"id":6689,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6430,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:26"},{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","file":"./Errors.sol","id":6432,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6689,"sourceUnit":6741,"src":"127:36:26","symbolAliases":[{"foreign":{"id":6431,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6740,"src":"135:6:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":6433,"nodeType":"StructuredDocumentation","src":"165:67:26","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":6688,"linearizedBaseContracts":[6688],"name":"Address","nameLocation":"241:7:26","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6434,"nodeType":"StructuredDocumentation","src":"255:75:26","text":" @dev There's no code at `target` (it is not a contract)."},"errorSelector":"9996b315","id":6438,"name":"AddressEmptyCode","nameLocation":"341:16:26","nodeType":"ErrorDefinition","parameters":{"id":6437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6436,"mutability":"mutable","name":"target","nameLocation":"366:6:26","nodeType":"VariableDeclaration","scope":6438,"src":"358:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6435,"name":"address","nodeType":"ElementaryTypeName","src":"358:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"357:16:26"},"src":"335:39:26"},{"body":{"id":6485,"nodeType":"Block","src":"1361:294:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":6448,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1383:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}],"id":6447,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1375:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6446,"name":"address","nodeType":"ElementaryTypeName","src":"1375:7:26","typeDescriptions":{}}},"id":6449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1375:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1389:7:26","memberName":"balance","nodeType":"MemberAccess","src":"1375:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6451,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6443,"src":"1399:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1375:30:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6465,"nodeType":"IfStatement","src":"1371:125:26","trueBody":{"id":6464,"nodeType":"Block","src":"1407:89:26","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":6458,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1463:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}],"id":6457,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1455:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6456,"name":"address","nodeType":"ElementaryTypeName","src":"1455:7:26","typeDescriptions":{}}},"id":6459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1455:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1469:7:26","memberName":"balance","nodeType":"MemberAccess","src":"1455:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6461,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6443,"src":"1478:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6453,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6740,"src":"1428:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$6740_$","typeString":"type(library Errors)"}},"id":6455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1435:19:26","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":6728,"src":"1428:26:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":6462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1428:57:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6463,"nodeType":"RevertStatement","src":"1421:64:26"}]}},{"assignments":[6467,6469],"declarations":[{"constant":false,"id":6467,"mutability":"mutable","name":"success","nameLocation":"1512:7:26","nodeType":"VariableDeclaration","scope":6485,"src":"1507:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6466,"name":"bool","nodeType":"ElementaryTypeName","src":"1507:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6469,"mutability":"mutable","name":"returndata","nameLocation":"1534:10:26","nodeType":"VariableDeclaration","scope":6485,"src":"1521:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6468,"name":"bytes","nodeType":"ElementaryTypeName","src":"1521:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6476,"initialValue":{"arguments":[{"hexValue":"","id":6474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1578:2:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":6470,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6441,"src":"1548:9:26","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":6471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1558:4:26","memberName":"call","nodeType":"MemberAccess","src":"1548:14:26","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":6473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6472,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6443,"src":"1570:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"1548:29:26","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":6475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1548:33:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"1506:75:26"},{"condition":{"id":6478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1595:8:26","subExpression":{"id":6477,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6467,"src":"1596:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6484,"nodeType":"IfStatement","src":"1591:58:26","trueBody":{"id":6483,"nodeType":"Block","src":"1605:44:26","statements":[{"expression":{"arguments":[{"id":6480,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6469,"src":"1627:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6479,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6687,"src":"1619:7:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":6481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1619:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6482,"nodeType":"ExpressionStatement","src":"1619:19:26"}]}}]},"documentation":{"id":6439,"nodeType":"StructuredDocumentation","src":"380:905:26","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":6486,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"1299:9:26","nodeType":"FunctionDefinition","parameters":{"id":6444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6441,"mutability":"mutable","name":"recipient","nameLocation":"1325:9:26","nodeType":"VariableDeclaration","scope":6486,"src":"1309:25:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":6440,"name":"address","nodeType":"ElementaryTypeName","src":"1309:15:26","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":6443,"mutability":"mutable","name":"amount","nameLocation":"1344:6:26","nodeType":"VariableDeclaration","scope":6486,"src":"1336:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6442,"name":"uint256","nodeType":"ElementaryTypeName","src":"1336:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1308:43:26"},"returnParameters":{"id":6445,"nodeType":"ParameterList","parameters":[],"src":"1361:0:26"},"scope":6688,"src":"1290:365:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6502,"nodeType":"Block","src":"2589:62:26","statements":[{"expression":{"arguments":[{"id":6497,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6489,"src":"2628:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6498,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6491,"src":"2636:4:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":6499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2642:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6496,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6553,"src":"2606:21:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":6500,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2606:38:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6495,"id":6501,"nodeType":"Return","src":"2599:45:26"}]},"documentation":{"id":6487,"nodeType":"StructuredDocumentation","src":"1661:834:26","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason or custom error, it is bubbled\n up by this function (like regular Solidity function calls). However, if\n the call reverted with no returned reason, this function reverts with a\n {Errors.FailedCall} error.\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert."},"id":6503,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"2509:12:26","nodeType":"FunctionDefinition","parameters":{"id":6492,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6489,"mutability":"mutable","name":"target","nameLocation":"2530:6:26","nodeType":"VariableDeclaration","scope":6503,"src":"2522:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6488,"name":"address","nodeType":"ElementaryTypeName","src":"2522:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6491,"mutability":"mutable","name":"data","nameLocation":"2551:4:26","nodeType":"VariableDeclaration","scope":6503,"src":"2538:17:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6490,"name":"bytes","nodeType":"ElementaryTypeName","src":"2538:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2521:35:26"},"returnParameters":{"id":6495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6494,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6503,"src":"2575:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6493,"name":"bytes","nodeType":"ElementaryTypeName","src":"2575:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2574:14:26"},"scope":6688,"src":"2500:151:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6552,"nodeType":"Block","src":"3088:294:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":6517,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3110:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}],"id":6516,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3102:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6515,"name":"address","nodeType":"ElementaryTypeName","src":"3102:7:26","typeDescriptions":{}}},"id":6518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3102:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3116:7:26","memberName":"balance","nodeType":"MemberAccess","src":"3102:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6520,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6510,"src":"3126:5:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3102:29:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6534,"nodeType":"IfStatement","src":"3098:123:26","trueBody":{"id":6533,"nodeType":"Block","src":"3133:88:26","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":6527,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3189:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$6688","typeString":"library Address"}],"id":6526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3181:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6525,"name":"address","nodeType":"ElementaryTypeName","src":"3181:7:26","typeDescriptions":{}}},"id":6528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3181:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3195:7:26","memberName":"balance","nodeType":"MemberAccess","src":"3181:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6530,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6510,"src":"3204:5:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6522,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6740,"src":"3154:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$6740_$","typeString":"type(library Errors)"}},"id":6524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3161:19:26","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":6728,"src":"3154:26:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":6531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3154:56:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6532,"nodeType":"RevertStatement","src":"3147:63:26"}]}},{"assignments":[6536,6538],"declarations":[{"constant":false,"id":6536,"mutability":"mutable","name":"success","nameLocation":"3236:7:26","nodeType":"VariableDeclaration","scope":6552,"src":"3231:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6535,"name":"bool","nodeType":"ElementaryTypeName","src":"3231:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6538,"mutability":"mutable","name":"returndata","nameLocation":"3258:10:26","nodeType":"VariableDeclaration","scope":6552,"src":"3245:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6537,"name":"bytes","nodeType":"ElementaryTypeName","src":"3245:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6545,"initialValue":{"arguments":[{"id":6543,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6508,"src":"3298:4:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":6539,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6506,"src":"3272:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3279:4:26","memberName":"call","nodeType":"MemberAccess","src":"3272:11:26","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":6542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6541,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6510,"src":"3291:5:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"3272:25:26","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":6544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3272:31:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3230:73:26"},{"expression":{"arguments":[{"id":6547,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6506,"src":"3347:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6548,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6536,"src":"3355:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":6549,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6538,"src":"3364:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6546,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6645,"src":"3320:26:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":6550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3320:55:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6514,"id":6551,"nodeType":"Return","src":"3313:62:26"}]},"documentation":{"id":6504,"nodeType":"StructuredDocumentation","src":"2657:313:26","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`."},"id":6553,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"2984:21:26","nodeType":"FunctionDefinition","parameters":{"id":6511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6506,"mutability":"mutable","name":"target","nameLocation":"3014:6:26","nodeType":"VariableDeclaration","scope":6553,"src":"3006:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6505,"name":"address","nodeType":"ElementaryTypeName","src":"3006:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6508,"mutability":"mutable","name":"data","nameLocation":"3035:4:26","nodeType":"VariableDeclaration","scope":6553,"src":"3022:17:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6507,"name":"bytes","nodeType":"ElementaryTypeName","src":"3022:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":6510,"mutability":"mutable","name":"value","nameLocation":"3049:5:26","nodeType":"VariableDeclaration","scope":6553,"src":"3041:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6509,"name":"uint256","nodeType":"ElementaryTypeName","src":"3041:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3005:50:26"},"returnParameters":{"id":6514,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6513,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6553,"src":"3074:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6512,"name":"bytes","nodeType":"ElementaryTypeName","src":"3074:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3073:14:26"},"scope":6688,"src":"2975:407:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6578,"nodeType":"Block","src":"3621:154:26","statements":[{"assignments":[6564,6566],"declarations":[{"constant":false,"id":6564,"mutability":"mutable","name":"success","nameLocation":"3637:7:26","nodeType":"VariableDeclaration","scope":6578,"src":"3632:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6563,"name":"bool","nodeType":"ElementaryTypeName","src":"3632:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6566,"mutability":"mutable","name":"returndata","nameLocation":"3659:10:26","nodeType":"VariableDeclaration","scope":6578,"src":"3646:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6565,"name":"bytes","nodeType":"ElementaryTypeName","src":"3646:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6571,"initialValue":{"arguments":[{"id":6569,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6558,"src":"3691:4:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":6567,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6556,"src":"3673:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3680:10:26","memberName":"staticcall","nodeType":"MemberAccess","src":"3673:17:26","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":6570,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3673:23:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3631:65:26"},{"expression":{"arguments":[{"id":6573,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6556,"src":"3740:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6574,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6564,"src":"3748:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":6575,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6566,"src":"3757:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6572,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6645,"src":"3713:26:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":6576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3713:55:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6562,"id":6577,"nodeType":"Return","src":"3706:62:26"}]},"documentation":{"id":6554,"nodeType":"StructuredDocumentation","src":"3388:128:26","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call."},"id":6579,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"3530:18:26","nodeType":"FunctionDefinition","parameters":{"id":6559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6556,"mutability":"mutable","name":"target","nameLocation":"3557:6:26","nodeType":"VariableDeclaration","scope":6579,"src":"3549:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6555,"name":"address","nodeType":"ElementaryTypeName","src":"3549:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6558,"mutability":"mutable","name":"data","nameLocation":"3578:4:26","nodeType":"VariableDeclaration","scope":6579,"src":"3565:17:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6557,"name":"bytes","nodeType":"ElementaryTypeName","src":"3565:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3548:35:26"},"returnParameters":{"id":6562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6561,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6579,"src":"3607:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6560,"name":"bytes","nodeType":"ElementaryTypeName","src":"3607:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3606:14:26"},"scope":6688,"src":"3521:254:26","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":6604,"nodeType":"Block","src":"4013:156:26","statements":[{"assignments":[6590,6592],"declarations":[{"constant":false,"id":6590,"mutability":"mutable","name":"success","nameLocation":"4029:7:26","nodeType":"VariableDeclaration","scope":6604,"src":"4024:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6589,"name":"bool","nodeType":"ElementaryTypeName","src":"4024:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6592,"mutability":"mutable","name":"returndata","nameLocation":"4051:10:26","nodeType":"VariableDeclaration","scope":6604,"src":"4038:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6591,"name":"bytes","nodeType":"ElementaryTypeName","src":"4038:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6597,"initialValue":{"arguments":[{"id":6595,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6584,"src":"4085:4:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":6593,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6582,"src":"4065:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4072:12:26","memberName":"delegatecall","nodeType":"MemberAccess","src":"4065:19:26","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":6596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4065:25:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4023:67:26"},{"expression":{"arguments":[{"id":6599,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6582,"src":"4134:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6600,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6590,"src":"4142:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":6601,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6592,"src":"4151:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6598,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6645,"src":"4107:26:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":6602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4107:55:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6588,"id":6603,"nodeType":"Return","src":"4100:62:26"}]},"documentation":{"id":6580,"nodeType":"StructuredDocumentation","src":"3781:130:26","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call."},"id":6605,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"3925:20:26","nodeType":"FunctionDefinition","parameters":{"id":6585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6582,"mutability":"mutable","name":"target","nameLocation":"3954:6:26","nodeType":"VariableDeclaration","scope":6605,"src":"3946:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6581,"name":"address","nodeType":"ElementaryTypeName","src":"3946:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6584,"mutability":"mutable","name":"data","nameLocation":"3975:4:26","nodeType":"VariableDeclaration","scope":6605,"src":"3962:17:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6583,"name":"bytes","nodeType":"ElementaryTypeName","src":"3962:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3945:35:26"},"returnParameters":{"id":6588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6587,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6605,"src":"3999:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6586,"name":"bytes","nodeType":"ElementaryTypeName","src":"3999:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3998:14:26"},"scope":6688,"src":"3916:253:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6644,"nodeType":"Block","src":"4595:424:26","statements":[{"condition":{"id":6618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4609:8:26","subExpression":{"id":6617,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6610,"src":"4610:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6642,"nodeType":"Block","src":"4669:344:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6624,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6612,"src":"4857:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4868:6:26","memberName":"length","nodeType":"MemberAccess","src":"4857:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":6626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4878:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4857:22:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":6628,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6608,"src":"4883:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4890:4:26","memberName":"code","nodeType":"MemberAccess","src":"4883:11:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4895:6:26","memberName":"length","nodeType":"MemberAccess","src":"4883:18:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":6631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4905:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4883:23:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4857:49:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6639,"nodeType":"IfStatement","src":"4853:119:26","trueBody":{"id":6638,"nodeType":"Block","src":"4908:64:26","statements":[{"errorCall":{"arguments":[{"id":6635,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6608,"src":"4950:6:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6634,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6438,"src":"4933:16:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4933:24:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6637,"nodeType":"RevertStatement","src":"4926:31:26"}]}},{"expression":{"id":6640,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6612,"src":"4992:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6616,"id":6641,"nodeType":"Return","src":"4985:17:26"}]},"id":6643,"nodeType":"IfStatement","src":"4605:408:26","trueBody":{"id":6623,"nodeType":"Block","src":"4619:44:26","statements":[{"expression":{"arguments":[{"id":6620,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6612,"src":"4641:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6619,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6687,"src":"4633:7:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":6621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4633:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6622,"nodeType":"ExpressionStatement","src":"4633:19:26"}]}}]},"documentation":{"id":6606,"nodeType":"StructuredDocumentation","src":"4175:257:26","text":" @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n of an unsuccessful call."},"id":6645,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"4446:26:26","nodeType":"FunctionDefinition","parameters":{"id":6613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6608,"mutability":"mutable","name":"target","nameLocation":"4490:6:26","nodeType":"VariableDeclaration","scope":6645,"src":"4482:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6607,"name":"address","nodeType":"ElementaryTypeName","src":"4482:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6610,"mutability":"mutable","name":"success","nameLocation":"4511:7:26","nodeType":"VariableDeclaration","scope":6645,"src":"4506:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6609,"name":"bool","nodeType":"ElementaryTypeName","src":"4506:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6612,"mutability":"mutable","name":"returndata","nameLocation":"4541:10:26","nodeType":"VariableDeclaration","scope":6645,"src":"4528:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6611,"name":"bytes","nodeType":"ElementaryTypeName","src":"4528:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4472:85:26"},"returnParameters":{"id":6616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6615,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6645,"src":"4581:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6614,"name":"bytes","nodeType":"ElementaryTypeName","src":"4581:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4580:14:26"},"scope":6688,"src":"4437:582:26","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":6666,"nodeType":"Block","src":"5323:122:26","statements":[{"condition":{"id":6656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5337:8:26","subExpression":{"id":6655,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6648,"src":"5338:7:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6664,"nodeType":"Block","src":"5397:42:26","statements":[{"expression":{"id":6662,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6650,"src":"5418:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6654,"id":6663,"nodeType":"Return","src":"5411:17:26"}]},"id":6665,"nodeType":"IfStatement","src":"5333:106:26","trueBody":{"id":6661,"nodeType":"Block","src":"5347:44:26","statements":[{"expression":{"arguments":[{"id":6658,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6650,"src":"5369:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6657,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6687,"src":"5361:7:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":6659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5361:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6660,"nodeType":"ExpressionStatement","src":"5361:19:26"}]}}]},"documentation":{"id":6646,"nodeType":"StructuredDocumentation","src":"5025:191:26","text":" @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n revert reason or with a default {Errors.FailedCall} error."},"id":6667,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"5230:16:26","nodeType":"FunctionDefinition","parameters":{"id":6651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6648,"mutability":"mutable","name":"success","nameLocation":"5252:7:26","nodeType":"VariableDeclaration","scope":6667,"src":"5247:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6647,"name":"bool","nodeType":"ElementaryTypeName","src":"5247:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6650,"mutability":"mutable","name":"returndata","nameLocation":"5274:10:26","nodeType":"VariableDeclaration","scope":6667,"src":"5261:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6649,"name":"bytes","nodeType":"ElementaryTypeName","src":"5261:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5246:39:26"},"returnParameters":{"id":6654,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6653,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6667,"src":"5309:12:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6652,"name":"bytes","nodeType":"ElementaryTypeName","src":"5309:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5308:14:26"},"scope":6688,"src":"5221:224:26","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6686,"nodeType":"Block","src":"5614:432:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6673,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6670,"src":"5690:10:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6674,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5701:6:26","memberName":"length","nodeType":"MemberAccess","src":"5690:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":6675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5710:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5690:21:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6684,"nodeType":"Block","src":"5989:51:26","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":6679,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6740,"src":"6010:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$6740_$","typeString":"type(library Errors)"}},"id":6681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6017:10:26","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":6731,"src":"6010:17:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":6682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6010:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6683,"nodeType":"RevertStatement","src":"6003:26:26"}]},"id":6685,"nodeType":"IfStatement","src":"5686:354:26","trueBody":{"id":6678,"nodeType":"Block","src":"5713:270:26","statements":[{"AST":{"nodeType":"YulBlock","src":"5840:133:26","statements":[{"nodeType":"YulVariableDeclaration","src":"5858:40:26","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"5887:10:26"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5881:5:26"},"nodeType":"YulFunctionCall","src":"5881:17:26"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"5862:15:26","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5926:2:26","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"5930:10:26"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5922:3:26"},"nodeType":"YulFunctionCall","src":"5922:19:26"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"5943:15:26"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5915:6:26"},"nodeType":"YulFunctionCall","src":"5915:44:26"},"nodeType":"YulExpressionStatement","src":"5915:44:26"}]},"evmVersion":"paris","externalReferences":[{"declaration":6670,"isOffset":false,"isSlot":false,"src":"5887:10:26","valueSize":1},{"declaration":6670,"isOffset":false,"isSlot":false,"src":"5930:10:26","valueSize":1}],"flags":["memory-safe"],"id":6677,"nodeType":"InlineAssembly","src":"5815:158:26"}]}}]},"documentation":{"id":6668,"nodeType":"StructuredDocumentation","src":"5451:103:26","text":" @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}."},"id":6687,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"5568:7:26","nodeType":"FunctionDefinition","parameters":{"id":6671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6670,"mutability":"mutable","name":"returndata","nameLocation":"5589:10:26","nodeType":"VariableDeclaration","scope":6687,"src":"5576:23:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6669,"name":"bytes","nodeType":"ElementaryTypeName","src":"5576:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5575:25:26"},"returnParameters":{"id":6672,"nodeType":"ParameterList","parameters":[],"src":"5614:0:26"},"scope":6688,"src":"5559:487:26","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":6689,"src":"233:5815:26","usedErrors":[6438],"usedEvents":[]}],"src":"101:5948:26"},"id":26},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[6718]},"id":6719,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6690,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:27"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":6691,"nodeType":"StructuredDocumentation","src":"127:496:27","text":" @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."},"fullyImplemented":true,"id":6718,"linearizedBaseContracts":[6718],"name":"Context","nameLocation":"642:7:27","nodeType":"ContractDefinition","nodes":[{"body":{"id":6699,"nodeType":"Block","src":"718:34:27","statements":[{"expression":{"expression":{"id":6696,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:27","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:27","memberName":"sender","nodeType":"MemberAccess","src":"735:10:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":6695,"id":6698,"nodeType":"Return","src":"728:17:27"}]},"id":6700,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:27","nodeType":"FunctionDefinition","parameters":{"id":6692,"nodeType":"ParameterList","parameters":[],"src":"675:2:27"},"returnParameters":{"id":6695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6694,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6700,"src":"709:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6693,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:27"},"scope":6718,"src":"656:96:27","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6708,"nodeType":"Block","src":"825:32:27","statements":[{"expression":{"expression":{"id":6705,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:27","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:27","memberName":"data","nodeType":"MemberAccess","src":"842:8:27","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":6704,"id":6707,"nodeType":"Return","src":"835:15:27"}]},"id":6709,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:27","nodeType":"FunctionDefinition","parameters":{"id":6701,"nodeType":"ParameterList","parameters":[],"src":"775:2:27"},"returnParameters":{"id":6704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6703,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6709,"src":"809:14:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6702,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:27","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:27"},"scope":6718,"src":"758:99:27","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6716,"nodeType":"Block","src":"935:25:27","statements":[{"expression":{"hexValue":"30","id":6714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:27","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":6713,"id":6715,"nodeType":"Return","src":"945:8:27"}]},"id":6717,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:27","nodeType":"FunctionDefinition","parameters":{"id":6710,"nodeType":"ParameterList","parameters":[],"src":"892:2:27"},"returnParameters":{"id":6713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6712,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6717,"src":"926:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6711,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:27"},"scope":6718,"src":"863:97:27","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":6719,"src":"624:338:27","usedErrors":[],"usedEvents":[]}],"src":"101:862:27"},"id":27},"@openzeppelin/contracts/utils/Errors.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","exportedSymbols":{"Errors":[6740]},"id":6741,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6720,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"100:24:28"},{"abstract":false,"baseContracts":[],"canonicalName":"Errors","contractDependencies":[],"contractKind":"library","documentation":{"id":6721,"nodeType":"StructuredDocumentation","src":"126:284:28","text":" @dev Collection of common custom errors used in multiple contracts\n IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n It is recommended to avoid relying on the error API for critical functionality.\n _Available since v5.1._"},"fullyImplemented":true,"id":6740,"linearizedBaseContracts":[6740],"name":"Errors","nameLocation":"419:6:28","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6722,"nodeType":"StructuredDocumentation","src":"432:94:28","text":" @dev The ETH balance of the account is not enough to perform the operation."},"errorSelector":"cf479181","id":6728,"name":"InsufficientBalance","nameLocation":"537:19:28","nodeType":"ErrorDefinition","parameters":{"id":6727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6724,"mutability":"mutable","name":"balance","nameLocation":"565:7:28","nodeType":"VariableDeclaration","scope":6728,"src":"557:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6723,"name":"uint256","nodeType":"ElementaryTypeName","src":"557:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6726,"mutability":"mutable","name":"needed","nameLocation":"582:6:28","nodeType":"VariableDeclaration","scope":6728,"src":"574:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6725,"name":"uint256","nodeType":"ElementaryTypeName","src":"574:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"556:33:28"},"src":"531:59:28"},{"documentation":{"id":6729,"nodeType":"StructuredDocumentation","src":"596:89:28","text":" @dev A call to an address target failed. The target may have reverted."},"errorSelector":"d6bda275","id":6731,"name":"FailedCall","nameLocation":"696:10:28","nodeType":"ErrorDefinition","parameters":{"id":6730,"nodeType":"ParameterList","parameters":[],"src":"706:2:28"},"src":"690:19:28"},{"documentation":{"id":6732,"nodeType":"StructuredDocumentation","src":"715:46:28","text":" @dev The deployment failed."},"errorSelector":"b06ebf3d","id":6734,"name":"FailedDeployment","nameLocation":"772:16:28","nodeType":"ErrorDefinition","parameters":{"id":6733,"nodeType":"ParameterList","parameters":[],"src":"788:2:28"},"src":"766:25:28"},{"documentation":{"id":6735,"nodeType":"StructuredDocumentation","src":"797:58:28","text":" @dev A necessary precompile is missing."},"errorSelector":"42b01bce","id":6739,"name":"MissingPrecompile","nameLocation":"866:17:28","nodeType":"ErrorDefinition","parameters":{"id":6738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6737,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6739,"src":"884:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6736,"name":"address","nodeType":"ElementaryTypeName","src":"884:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"883:9:28"},"src":"860:33:28"}],"scope":6741,"src":"411:484:28","usedErrors":[6728,6731,6734,6739],"usedEvents":[]}],"src":"100:796:28"},"id":28},"@openzeppelin/contracts/utils/Nonces.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","exportedSymbols":{"Nonces":[6808]},"id":6809,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6742,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:29"},{"abstract":true,"baseContracts":[],"canonicalName":"Nonces","contractDependencies":[],"contractKind":"contract","documentation":{"id":6743,"nodeType":"StructuredDocumentation","src":"125:83:29","text":" @dev Provides tracking nonces for addresses. Nonces will only increment."},"fullyImplemented":true,"id":6808,"linearizedBaseContracts":[6808],"name":"Nonces","nameLocation":"227:6:29","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6744,"nodeType":"StructuredDocumentation","src":"240:90:29","text":" @dev The nonce used for an `account` is not the expected current nonce."},"errorSelector":"752d88c0","id":6750,"name":"InvalidAccountNonce","nameLocation":"341:19:29","nodeType":"ErrorDefinition","parameters":{"id":6749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6746,"mutability":"mutable","name":"account","nameLocation":"369:7:29","nodeType":"VariableDeclaration","scope":6750,"src":"361:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6745,"name":"address","nodeType":"ElementaryTypeName","src":"361:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6748,"mutability":"mutable","name":"currentNonce","nameLocation":"386:12:29","nodeType":"VariableDeclaration","scope":6750,"src":"378:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6747,"name":"uint256","nodeType":"ElementaryTypeName","src":"378:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"360:39:29"},"src":"335:65:29"},{"constant":false,"id":6754,"mutability":"mutable","name":"_nonces","nameLocation":"450:7:29","nodeType":"VariableDeclaration","scope":6808,"src":"406:51:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":6753,"keyName":"account","keyNameLocation":"422:7:29","keyType":{"id":6751,"name":"address","nodeType":"ElementaryTypeName","src":"414:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"406:35:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":6752,"name":"uint256","nodeType":"ElementaryTypeName","src":"433:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"body":{"id":6766,"nodeType":"Block","src":"607:38:29","statements":[{"expression":{"baseExpression":{"id":6762,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6754,"src":"624:7:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6764,"indexExpression":{"id":6763,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6757,"src":"632:5:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"624:14:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6761,"id":6765,"nodeType":"Return","src":"617:21:29"}]},"documentation":{"id":6755,"nodeType":"StructuredDocumentation","src":"464:69:29","text":" @dev Returns the next unused nonce for an address."},"functionSelector":"7ecebe00","id":6767,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"547:6:29","nodeType":"FunctionDefinition","parameters":{"id":6758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6757,"mutability":"mutable","name":"owner","nameLocation":"562:5:29","nodeType":"VariableDeclaration","scope":6767,"src":"554:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6756,"name":"address","nodeType":"ElementaryTypeName","src":"554:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"553:15:29"},"returnParameters":{"id":6761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6760,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6767,"src":"598:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6759,"name":"uint256","nodeType":"ElementaryTypeName","src":"598:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"597:9:29"},"scope":6808,"src":"538:107:29","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":6781,"nodeType":"Block","src":"828:326:29","statements":[{"id":6780,"nodeType":"UncheckedBlock","src":"1031:117:29","statements":[{"expression":{"id":6778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1121:16:29","subExpression":{"baseExpression":{"id":6775,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6754,"src":"1121:7:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6777,"indexExpression":{"id":6776,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6770,"src":"1129:5:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1121:14:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6774,"id":6779,"nodeType":"Return","src":"1114:23:29"}]}]},"documentation":{"id":6768,"nodeType":"StructuredDocumentation","src":"651:103:29","text":" @dev Consumes a nonce.\n Returns the current value and increments nonce."},"id":6782,"implemented":true,"kind":"function","modifiers":[],"name":"_useNonce","nameLocation":"768:9:29","nodeType":"FunctionDefinition","parameters":{"id":6771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6770,"mutability":"mutable","name":"owner","nameLocation":"786:5:29","nodeType":"VariableDeclaration","scope":6782,"src":"778:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6769,"name":"address","nodeType":"ElementaryTypeName","src":"778:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"777:15:29"},"returnParameters":{"id":6774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6773,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6782,"src":"819:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6772,"name":"uint256","nodeType":"ElementaryTypeName","src":"819:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"818:9:29"},"scope":6808,"src":"759:395:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6806,"nodeType":"Block","src":"1338:149:29","statements":[{"assignments":[6791],"declarations":[{"constant":false,"id":6791,"mutability":"mutable","name":"current","nameLocation":"1356:7:29","nodeType":"VariableDeclaration","scope":6806,"src":"1348:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6790,"name":"uint256","nodeType":"ElementaryTypeName","src":"1348:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6795,"initialValue":{"arguments":[{"id":6793,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6785,"src":"1376:5:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6792,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6782,"src":"1366:9:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":6794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1366:16:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1348:34:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6796,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6787,"src":"1396:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6797,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6791,"src":"1405:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1396:16:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6805,"nodeType":"IfStatement","src":"1392:89:29","trueBody":{"id":6804,"nodeType":"Block","src":"1414:67:29","statements":[{"errorCall":{"arguments":[{"id":6800,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6785,"src":"1455:5:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6801,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6791,"src":"1462:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6799,"name":"InvalidAccountNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6750,"src":"1435:19:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256) pure"}},"id":6802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1435:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6803,"nodeType":"RevertStatement","src":"1428:42:29"}]}}]},"documentation":{"id":6783,"nodeType":"StructuredDocumentation","src":"1160:100:29","text":" @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`."},"id":6807,"implemented":true,"kind":"function","modifiers":[],"name":"_useCheckedNonce","nameLocation":"1274:16:29","nodeType":"FunctionDefinition","parameters":{"id":6788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6785,"mutability":"mutable","name":"owner","nameLocation":"1299:5:29","nodeType":"VariableDeclaration","scope":6807,"src":"1291:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6784,"name":"address","nodeType":"ElementaryTypeName","src":"1291:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6787,"mutability":"mutable","name":"nonce","nameLocation":"1314:5:29","nodeType":"VariableDeclaration","scope":6807,"src":"1306:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6786,"name":"uint256","nodeType":"ElementaryTypeName","src":"1306:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1290:30:29"},"returnParameters":{"id":6789,"nodeType":"ParameterList","parameters":[],"src":"1338:0:29"},"scope":6808,"src":"1265:222:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":6809,"src":"209:1280:29","usedErrors":[6750],"usedEvents":[]}],"src":"99:1391:29"},"id":29},"@openzeppelin/contracts/utils/Panic.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","exportedSymbols":{"Panic":[6860]},"id":6861,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6810,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:30"},{"abstract":false,"baseContracts":[],"canonicalName":"Panic","contractDependencies":[],"contractKind":"library","documentation":{"id":6811,"nodeType":"StructuredDocumentation","src":"125:489:30","text":" @dev Helper library for emitting standardized panic codes.\n ```solidity\n contract Example {\n using Panic for uint256;\n // Use any of the declared internal constants\n function foo() { Panic.GENERIC.panic(); }\n // Alternatively\n function foo() { Panic.panic(Panic.GENERIC); }\n }\n ```\n Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n _Available since v5.1._"},"fullyImplemented":true,"id":6860,"linearizedBaseContracts":[6860],"name":"Panic","nameLocation":"665:5:30","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":6812,"nodeType":"StructuredDocumentation","src":"677:36:30","text":"@dev generic / unspecified error"},"id":6815,"mutability":"constant","name":"GENERIC","nameLocation":"744:7:30","nodeType":"VariableDeclaration","scope":6860,"src":"718:40:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6813,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783030","id":6814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"754:4:30","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"internal"},{"constant":true,"documentation":{"id":6816,"nodeType":"StructuredDocumentation","src":"764:37:30","text":"@dev used by the assert() builtin"},"id":6819,"mutability":"constant","name":"ASSERT","nameLocation":"832:6:30","nodeType":"VariableDeclaration","scope":6860,"src":"806:39:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6817,"name":"uint256","nodeType":"ElementaryTypeName","src":"806:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783031","id":6818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"841:4:30","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"0x01"},"visibility":"internal"},{"constant":true,"documentation":{"id":6820,"nodeType":"StructuredDocumentation","src":"851:41:30","text":"@dev arithmetic underflow or overflow"},"id":6823,"mutability":"constant","name":"UNDER_OVERFLOW","nameLocation":"923:14:30","nodeType":"VariableDeclaration","scope":6860,"src":"897:47:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6821,"name":"uint256","nodeType":"ElementaryTypeName","src":"897:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783131","id":6822,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"940:4:30","typeDescriptions":{"typeIdentifier":"t_rational_17_by_1","typeString":"int_const 17"},"value":"0x11"},"visibility":"internal"},{"constant":true,"documentation":{"id":6824,"nodeType":"StructuredDocumentation","src":"950:35:30","text":"@dev division or modulo by zero"},"id":6827,"mutability":"constant","name":"DIVISION_BY_ZERO","nameLocation":"1016:16:30","nodeType":"VariableDeclaration","scope":6860,"src":"990:49:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6825,"name":"uint256","nodeType":"ElementaryTypeName","src":"990:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783132","id":6826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1035:4:30","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"0x12"},"visibility":"internal"},{"constant":true,"documentation":{"id":6828,"nodeType":"StructuredDocumentation","src":"1045:30:30","text":"@dev enum conversion error"},"id":6831,"mutability":"constant","name":"ENUM_CONVERSION_ERROR","nameLocation":"1106:21:30","nodeType":"VariableDeclaration","scope":6860,"src":"1080:54:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6829,"name":"uint256","nodeType":"ElementaryTypeName","src":"1080:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783231","id":6830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1130:4:30","typeDescriptions":{"typeIdentifier":"t_rational_33_by_1","typeString":"int_const 33"},"value":"0x21"},"visibility":"internal"},{"constant":true,"documentation":{"id":6832,"nodeType":"StructuredDocumentation","src":"1140:36:30","text":"@dev invalid encoding in storage"},"id":6835,"mutability":"constant","name":"STORAGE_ENCODING_ERROR","nameLocation":"1207:22:30","nodeType":"VariableDeclaration","scope":6860,"src":"1181:55:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6833,"name":"uint256","nodeType":"ElementaryTypeName","src":"1181:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783232","id":6834,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1232:4:30","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"visibility":"internal"},{"constant":true,"documentation":{"id":6836,"nodeType":"StructuredDocumentation","src":"1242:24:30","text":"@dev empty array pop"},"id":6839,"mutability":"constant","name":"EMPTY_ARRAY_POP","nameLocation":"1297:15:30","nodeType":"VariableDeclaration","scope":6860,"src":"1271:48:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6837,"name":"uint256","nodeType":"ElementaryTypeName","src":"1271:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783331","id":6838,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1315:4:30","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"0x31"},"visibility":"internal"},{"constant":true,"documentation":{"id":6840,"nodeType":"StructuredDocumentation","src":"1325:35:30","text":"@dev array out of bounds access"},"id":6843,"mutability":"constant","name":"ARRAY_OUT_OF_BOUNDS","nameLocation":"1391:19:30","nodeType":"VariableDeclaration","scope":6860,"src":"1365:52:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6841,"name":"uint256","nodeType":"ElementaryTypeName","src":"1365:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783332","id":6842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1413:4:30","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"0x32"},"visibility":"internal"},{"constant":true,"documentation":{"id":6844,"nodeType":"StructuredDocumentation","src":"1423:65:30","text":"@dev resource error (too large allocation or too large array)"},"id":6847,"mutability":"constant","name":"RESOURCE_ERROR","nameLocation":"1519:14:30","nodeType":"VariableDeclaration","scope":6860,"src":"1493:47:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6845,"name":"uint256","nodeType":"ElementaryTypeName","src":"1493:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783431","id":6846,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1536:4:30","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"0x41"},"visibility":"internal"},{"constant":true,"documentation":{"id":6848,"nodeType":"StructuredDocumentation","src":"1546:42:30","text":"@dev calling invalid internal function"},"id":6851,"mutability":"constant","name":"INVALID_INTERNAL_FUNCTION","nameLocation":"1619:25:30","nodeType":"VariableDeclaration","scope":6860,"src":"1593:58:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6849,"name":"uint256","nodeType":"ElementaryTypeName","src":"1593:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783531","id":6850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1647:4:30","typeDescriptions":{"typeIdentifier":"t_rational_81_by_1","typeString":"int_const 81"},"value":"0x51"},"visibility":"internal"},{"body":{"id":6858,"nodeType":"Block","src":"1819:151:30","statements":[{"AST":{"nodeType":"YulBlock","src":"1854:110:30","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1875:4:30","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"1881:10:30","type":"","value":"0x4e487b71"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1868:6:30"},"nodeType":"YulFunctionCall","src":"1868:24:30"},"nodeType":"YulExpressionStatement","src":"1868:24:30"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1912:4:30","type":"","value":"0x20"},{"name":"code","nodeType":"YulIdentifier","src":"1918:4:30"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1905:6:30"},"nodeType":"YulFunctionCall","src":"1905:18:30"},"nodeType":"YulExpressionStatement","src":"1905:18:30"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1943:4:30","type":"","value":"0x1c"},{"kind":"number","nodeType":"YulLiteral","src":"1949:4:30","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1936:6:30"},"nodeType":"YulFunctionCall","src":"1936:18:30"},"nodeType":"YulExpressionStatement","src":"1936:18:30"}]},"evmVersion":"paris","externalReferences":[{"declaration":6854,"isOffset":false,"isSlot":false,"src":"1918:4:30","valueSize":1}],"flags":["memory-safe"],"id":6857,"nodeType":"InlineAssembly","src":"1829:135:30"}]},"documentation":{"id":6852,"nodeType":"StructuredDocumentation","src":"1658:113:30","text":"@dev Reverts with a panic code. Recommended to use with\n the internal constants with predefined codes."},"id":6859,"implemented":true,"kind":"function","modifiers":[],"name":"panic","nameLocation":"1785:5:30","nodeType":"FunctionDefinition","parameters":{"id":6855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6854,"mutability":"mutable","name":"code","nameLocation":"1799:4:30","nodeType":"VariableDeclaration","scope":6859,"src":"1791:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6853,"name":"uint256","nodeType":"ElementaryTypeName","src":"1791:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1790:14:30"},"returnParameters":{"id":6856,"nodeType":"ParameterList","parameters":[],"src":"1819:0:30"},"scope":6860,"src":"1776:194:30","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":6861,"src":"657:1315:30","usedErrors":[],"usedEvents":[]}],"src":"99:1874:30"},"id":30},"@openzeppelin/contracts/utils/ShortStrings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/ShortStrings.sol","exportedSymbols":{"ShortString":[6866],"ShortStrings":[7077],"StorageSlot":[7201]},"id":7078,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6862,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:31"},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"./StorageSlot.sol","id":6864,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7078,"sourceUnit":7202,"src":"132:46:31","symbolAliases":[{"foreign":{"id":6863,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7201,"src":"140:11:31","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"canonicalName":"ShortString","id":6866,"name":"ShortString","nameLocation":"353:11:31","nodeType":"UserDefinedValueTypeDefinition","src":"348:28:31","underlyingType":{"id":6865,"name":"bytes32","nodeType":"ElementaryTypeName","src":"368:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"abstract":false,"baseContracts":[],"canonicalName":"ShortStrings","contractDependencies":[],"contractKind":"library","documentation":{"id":6867,"nodeType":"StructuredDocumentation","src":"378:876:31","text":" @dev This library provides functions to convert short memory strings\n into a `ShortString` type that can be used as an immutable variable.\n Strings of arbitrary length can be optimized using this library if\n they are short enough (up to 31 bytes) by packing them with their\n length (1 byte) in a single EVM word (32 bytes). Additionally, a\n fallback mechanism can be used for every other case.\n Usage example:\n ```solidity\n contract Named {\n using ShortStrings for *;\n ShortString private immutable _name;\n string private _nameFallback;\n constructor(string memory contractName) {\n _name = contractName.toShortStringWithFallback(_nameFallback);\n }\n function name() external view returns (string memory) {\n return _name.toStringWithFallback(_nameFallback);\n }\n }\n ```"},"fullyImplemented":true,"id":7077,"linearizedBaseContracts":[7077],"name":"ShortStrings","nameLocation":"1263:12:31","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":6870,"mutability":"constant","name":"FALLBACK_SENTINEL","nameLocation":"1370:17:31","nodeType":"VariableDeclaration","scope":7077,"src":"1345:111:31","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6868,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1345:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307830303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030304646","id":6869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1390:66:31","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0x00000000000000000000000000000000000000000000000000000000000000FF"},"visibility":"private"},{"errorSelector":"305a27a9","id":6874,"name":"StringTooLong","nameLocation":"1469:13:31","nodeType":"ErrorDefinition","parameters":{"id":6873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6872,"mutability":"mutable","name":"str","nameLocation":"1490:3:31","nodeType":"VariableDeclaration","scope":6874,"src":"1483:10:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6871,"name":"string","nodeType":"ElementaryTypeName","src":"1483:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1482:12:31"},"src":"1463:32:31"},{"errorSelector":"b3512b0c","id":6876,"name":"InvalidShortString","nameLocation":"1506:18:31","nodeType":"ErrorDefinition","parameters":{"id":6875,"nodeType":"ParameterList","parameters":[],"src":"1524:2:31"},"src":"1500:27:31"},{"body":{"id":6919,"nodeType":"Block","src":"1786:208:31","statements":[{"assignments":[6886],"declarations":[{"constant":false,"id":6886,"mutability":"mutable","name":"bstr","nameLocation":"1809:4:31","nodeType":"VariableDeclaration","scope":6919,"src":"1796:17:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6885,"name":"bytes","nodeType":"ElementaryTypeName","src":"1796:5:31","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6891,"initialValue":{"arguments":[{"id":6889,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6879,"src":"1822:3:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":6888,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1816:5:31","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":6887,"name":"bytes","nodeType":"ElementaryTypeName","src":"1816:5:31","typeDescriptions":{}}},"id":6890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1816:10:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1796:30:31"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6892,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6886,"src":"1840:4:31","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1845:6:31","memberName":"length","nodeType":"MemberAccess","src":"1840:11:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3331","id":6894,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1854:2:31","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"1840:16:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6901,"nodeType":"IfStatement","src":"1836:72:31","trueBody":{"id":6900,"nodeType":"Block","src":"1858:50:31","statements":[{"errorCall":{"arguments":[{"id":6897,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6879,"src":"1893:3:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":6896,"name":"StringTooLong","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6874,"src":"1879:13:31","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":6898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1879:18:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6899,"nodeType":"RevertStatement","src":"1872:25:31"}]}},{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":6910,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6886,"src":"1965:4:31","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6909,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1957:7:31","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":6908,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1957:7:31","typeDescriptions":{}}},"id":6911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1957:13:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6907,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1949:7:31","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6906,"name":"uint256","nodeType":"ElementaryTypeName","src":"1949:7:31","typeDescriptions":{}}},"id":6912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1949:22:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":6913,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6886,"src":"1974:4:31","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1979:6:31","memberName":"length","nodeType":"MemberAccess","src":"1974:11:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1949:36:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6905,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1941:7:31","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":6904,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1941:7:31","typeDescriptions":{}}},"id":6916,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1941:45:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":6902,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"1924:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"type(ShortString)"}},"id":6903,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1936:4:31","memberName":"wrap","nodeType":"MemberAccess","src":"1924:16:31","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"function (bytes32) pure returns (ShortString)"}},"id":6917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1924:63:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"functionReturnParameters":6884,"id":6918,"nodeType":"Return","src":"1917:70:31"}]},"documentation":{"id":6877,"nodeType":"StructuredDocumentation","src":"1533:170:31","text":" @dev Encode a string of at most 31 chars into a `ShortString`.\n This will trigger a `StringTooLong` error is the input string is too long."},"id":6920,"implemented":true,"kind":"function","modifiers":[],"name":"toShortString","nameLocation":"1717:13:31","nodeType":"FunctionDefinition","parameters":{"id":6880,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6879,"mutability":"mutable","name":"str","nameLocation":"1745:3:31","nodeType":"VariableDeclaration","scope":6920,"src":"1731:17:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6878,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1730:19:31"},"returnParameters":{"id":6884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6883,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6920,"src":"1773:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":6882,"nodeType":"UserDefinedTypeName","pathNode":{"id":6881,"name":"ShortString","nameLocations":["1773:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"1773:11:31"},"referencedDeclaration":6866,"src":"1773:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"}],"src":"1772:13:31"},"scope":7077,"src":"1708:286:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6945,"nodeType":"Block","src":"2152:304:31","statements":[{"assignments":[6930],"declarations":[{"constant":false,"id":6930,"mutability":"mutable","name":"len","nameLocation":"2170:3:31","nodeType":"VariableDeclaration","scope":6945,"src":"2162:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6929,"name":"uint256","nodeType":"ElementaryTypeName","src":"2162:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6934,"initialValue":{"arguments":[{"id":6932,"name":"sstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6924,"src":"2187:4:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"id":6931,"name":"byteLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6978,"src":"2176:10:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_uint256_$","typeString":"function (ShortString) pure returns (uint256)"}},"id":6933,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2176:16:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2162:30:31"},{"assignments":[6936],"declarations":[{"constant":false,"id":6936,"mutability":"mutable","name":"str","nameLocation":"2294:3:31","nodeType":"VariableDeclaration","scope":6945,"src":"2280:17:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6935,"name":"string","nodeType":"ElementaryTypeName","src":"2280:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":6941,"initialValue":{"arguments":[{"hexValue":"3332","id":6939,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2311:2:31","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":6938,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2300:10:31","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":6937,"name":"string","nodeType":"ElementaryTypeName","src":"2304:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":6940,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2300:14:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"2280:34:31"},{"AST":{"nodeType":"YulBlock","src":"2349:81:31","statements":[{"expression":{"arguments":[{"name":"str","nodeType":"YulIdentifier","src":"2370:3:31"},{"name":"len","nodeType":"YulIdentifier","src":"2375:3:31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2363:6:31"},"nodeType":"YulFunctionCall","src":"2363:16:31"},"nodeType":"YulExpressionStatement","src":"2363:16:31"},{"expression":{"arguments":[{"arguments":[{"name":"str","nodeType":"YulIdentifier","src":"2403:3:31"},{"kind":"number","nodeType":"YulLiteral","src":"2408:4:31","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2399:3:31"},"nodeType":"YulFunctionCall","src":"2399:14:31"},{"name":"sstr","nodeType":"YulIdentifier","src":"2415:4:31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2392:6:31"},"nodeType":"YulFunctionCall","src":"2392:28:31"},"nodeType":"YulExpressionStatement","src":"2392:28:31"}]},"evmVersion":"paris","externalReferences":[{"declaration":6930,"isOffset":false,"isSlot":false,"src":"2375:3:31","valueSize":1},{"declaration":6924,"isOffset":false,"isSlot":false,"src":"2415:4:31","valueSize":1},{"declaration":6936,"isOffset":false,"isSlot":false,"src":"2370:3:31","valueSize":1},{"declaration":6936,"isOffset":false,"isSlot":false,"src":"2403:3:31","valueSize":1}],"flags":["memory-safe"],"id":6942,"nodeType":"InlineAssembly","src":"2324:106:31"},{"expression":{"id":6943,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6936,"src":"2446:3:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":6928,"id":6944,"nodeType":"Return","src":"2439:10:31"}]},"documentation":{"id":6921,"nodeType":"StructuredDocumentation","src":"2000:73:31","text":" @dev Decode a `ShortString` back to a \"normal\" string."},"id":6946,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"2087:8:31","nodeType":"FunctionDefinition","parameters":{"id":6925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6924,"mutability":"mutable","name":"sstr","nameLocation":"2108:4:31","nodeType":"VariableDeclaration","scope":6946,"src":"2096:16:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":6923,"nodeType":"UserDefinedTypeName","pathNode":{"id":6922,"name":"ShortString","nameLocations":["2096:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"2096:11:31"},"referencedDeclaration":6866,"src":"2096:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"}],"src":"2095:18:31"},"returnParameters":{"id":6928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6927,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6946,"src":"2137:13:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6926,"name":"string","nodeType":"ElementaryTypeName","src":"2137:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2136:15:31"},"scope":7077,"src":"2078:378:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6977,"nodeType":"Block","src":"2598:175:31","statements":[{"assignments":[6956],"declarations":[{"constant":false,"id":6956,"mutability":"mutable","name":"result","nameLocation":"2616:6:31","nodeType":"VariableDeclaration","scope":6977,"src":"2608:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6955,"name":"uint256","nodeType":"ElementaryTypeName","src":"2608:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6966,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":6961,"name":"sstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6950,"src":"2652:4:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"expression":{"id":6959,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"2633:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"type(ShortString)"}},"id":6960,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2645:6:31","memberName":"unwrap","nodeType":"MemberAccess","src":"2633:18:31","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":6962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2633:24:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6958,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2625:7:31","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6957,"name":"uint256","nodeType":"ElementaryTypeName","src":"2625:7:31","typeDescriptions":{}}},"id":6963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2625:33:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646","id":6964,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2661:4:31","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xFF"},"src":"2625:40:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2608:57:31"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6967,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6956,"src":"2679:6:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3331","id":6968,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2688:2:31","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"2679:11:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6974,"nodeType":"IfStatement","src":"2675:69:31","trueBody":{"id":6973,"nodeType":"Block","src":"2692:52:31","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":6970,"name":"InvalidShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6876,"src":"2713:18:31","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":6971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2713:20:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6972,"nodeType":"RevertStatement","src":"2706:27:31"}]}},{"expression":{"id":6975,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6956,"src":"2760:6:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6954,"id":6976,"nodeType":"Return","src":"2753:13:31"}]},"documentation":{"id":6947,"nodeType":"StructuredDocumentation","src":"2462:61:31","text":" @dev Return the length of a `ShortString`."},"id":6978,"implemented":true,"kind":"function","modifiers":[],"name":"byteLength","nameLocation":"2537:10:31","nodeType":"FunctionDefinition","parameters":{"id":6951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6950,"mutability":"mutable","name":"sstr","nameLocation":"2560:4:31","nodeType":"VariableDeclaration","scope":6978,"src":"2548:16:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":6949,"nodeType":"UserDefinedTypeName","pathNode":{"id":6948,"name":"ShortString","nameLocations":["2548:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"2548:11:31"},"referencedDeclaration":6866,"src":"2548:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"}],"src":"2547:18:31"},"returnParameters":{"id":6954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6953,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6978,"src":"2589:7:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6952,"name":"uint256","nodeType":"ElementaryTypeName","src":"2589:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2588:9:31"},"scope":7077,"src":"2528:245:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7017,"nodeType":"Block","src":"2996:231:31","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":6991,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6981,"src":"3016:5:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":6990,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3010:5:31","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":6989,"name":"bytes","nodeType":"ElementaryTypeName","src":"3010:5:31","typeDescriptions":{}}},"id":6992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3010:12:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3023:6:31","memberName":"length","nodeType":"MemberAccess","src":"3010:19:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3332","id":6994,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3032:2:31","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"3010:24:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7015,"nodeType":"Block","src":"3094:127:31","statements":[{"expression":{"id":7008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":7004,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6983,"src":"3134:5:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}],"expression":{"id":7001,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7201,"src":"3108:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$7201_$","typeString":"type(library StorageSlot)"}},"id":7003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3120:13:31","memberName":"getStringSlot","nodeType":"MemberAccess","referencedDeclaration":7178,"src":"3108:25:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_storage_ptr_$returns$_t_struct$_StringSlot_$7098_storage_ptr_$","typeString":"function (string storage pointer) pure returns (struct StorageSlot.StringSlot storage pointer)"}},"id":7005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3108:32:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7098_storage_ptr","typeString":"struct StorageSlot.StringSlot storage pointer"}},"id":7006,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3141:5:31","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":7097,"src":"3108:38:31","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7007,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6981,"src":"3149:5:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3108:46:31","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":7009,"nodeType":"ExpressionStatement","src":"3108:46:31"},{"expression":{"arguments":[{"id":7012,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6870,"src":"3192:17:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":7010,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"3175:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"type(ShortString)"}},"id":7011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3187:4:31","memberName":"wrap","nodeType":"MemberAccess","src":"3175:16:31","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"function (bytes32) pure returns (ShortString)"}},"id":7013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3175:35:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"functionReturnParameters":6988,"id":7014,"nodeType":"Return","src":"3168:42:31"}]},"id":7016,"nodeType":"IfStatement","src":"3006:215:31","trueBody":{"id":7000,"nodeType":"Block","src":"3036:52:31","statements":[{"expression":{"arguments":[{"id":6997,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6981,"src":"3071:5:31","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":6996,"name":"toShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6920,"src":"3057:13:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"function (string memory) pure returns (ShortString)"}},"id":6998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3057:20:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"functionReturnParameters":6988,"id":6999,"nodeType":"Return","src":"3050:27:31"}]}}]},"documentation":{"id":6979,"nodeType":"StructuredDocumentation","src":"2779:103:31","text":" @dev Encode a string into a `ShortString`, or write it to storage if it is too long."},"id":7018,"implemented":true,"kind":"function","modifiers":[],"name":"toShortStringWithFallback","nameLocation":"2896:25:31","nodeType":"FunctionDefinition","parameters":{"id":6984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6981,"mutability":"mutable","name":"value","nameLocation":"2936:5:31","nodeType":"VariableDeclaration","scope":7018,"src":"2922:19:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6980,"name":"string","nodeType":"ElementaryTypeName","src":"2922:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":6983,"mutability":"mutable","name":"store","nameLocation":"2958:5:31","nodeType":"VariableDeclaration","scope":7018,"src":"2943:20:31","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":6982,"name":"string","nodeType":"ElementaryTypeName","src":"2943:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2921:43:31"},"returnParameters":{"id":6988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6987,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7018,"src":"2983:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":6986,"nodeType":"UserDefinedTypeName","pathNode":{"id":6985,"name":"ShortString","nameLocations":["2983:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"2983:11:31"},"referencedDeclaration":6866,"src":"2983:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"}],"src":"2982:13:31"},"scope":7077,"src":"2887:340:31","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7044,"nodeType":"Block","src":"3467:158:31","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":7034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7031,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7022,"src":"3500:5:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"expression":{"id":7029,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"3481:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"type(ShortString)"}},"id":7030,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3493:6:31","memberName":"unwrap","nodeType":"MemberAccess","src":"3481:18:31","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":7032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3481:25:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7033,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6870,"src":"3510:17:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3481:46:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7042,"nodeType":"Block","src":"3582:37:31","statements":[{"expression":{"id":7040,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7024,"src":"3603:5:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}},"functionReturnParameters":7028,"id":7041,"nodeType":"Return","src":"3596:12:31"}]},"id":7043,"nodeType":"IfStatement","src":"3477:142:31","trueBody":{"id":7039,"nodeType":"Block","src":"3529:47:31","statements":[{"expression":{"arguments":[{"id":7036,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7022,"src":"3559:5:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"id":7035,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6946,"src":"3550:8:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_string_memory_ptr_$","typeString":"function (ShortString) pure returns (string memory)"}},"id":7037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3550:15:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7028,"id":7038,"nodeType":"Return","src":"3543:22:31"}]}}]},"documentation":{"id":7019,"nodeType":"StructuredDocumentation","src":"3233:120:31","text":" @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}."},"id":7045,"implemented":true,"kind":"function","modifiers":[],"name":"toStringWithFallback","nameLocation":"3367:20:31","nodeType":"FunctionDefinition","parameters":{"id":7025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7022,"mutability":"mutable","name":"value","nameLocation":"3400:5:31","nodeType":"VariableDeclaration","scope":7045,"src":"3388:17:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":7021,"nodeType":"UserDefinedTypeName","pathNode":{"id":7020,"name":"ShortString","nameLocations":["3388:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"3388:11:31"},"referencedDeclaration":6866,"src":"3388:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"},{"constant":false,"id":7024,"mutability":"mutable","name":"store","nameLocation":"3422:5:31","nodeType":"VariableDeclaration","scope":7045,"src":"3407:20:31","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7023,"name":"string","nodeType":"ElementaryTypeName","src":"3407:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3387:41:31"},"returnParameters":{"id":7028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7027,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7045,"src":"3452:13:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7026,"name":"string","nodeType":"ElementaryTypeName","src":"3452:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3451:15:31"},"scope":7077,"src":"3358:267:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7075,"nodeType":"Block","src":"4105:174:31","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":7061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7058,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7049,"src":"4138:5:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"expression":{"id":7056,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"4119:11:31","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"type(ShortString)"}},"id":7057,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4131:6:31","memberName":"unwrap","nodeType":"MemberAccess","src":"4119:18:31","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":7059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4119:25:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7060,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6870,"src":"4148:17:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4119:46:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7073,"nodeType":"Block","src":"4222:51:31","statements":[{"expression":{"expression":{"arguments":[{"id":7069,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7051,"src":"4249:5:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}],"id":7068,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4243:5:31","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7067,"name":"bytes","nodeType":"ElementaryTypeName","src":"4243:5:31","typeDescriptions":{}}},"id":7070,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4243:12:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes storage pointer"}},"id":7071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4256:6:31","memberName":"length","nodeType":"MemberAccess","src":"4243:19:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7055,"id":7072,"nodeType":"Return","src":"4236:26:31"}]},"id":7074,"nodeType":"IfStatement","src":"4115:158:31","trueBody":{"id":7066,"nodeType":"Block","src":"4167:49:31","statements":[{"expression":{"arguments":[{"id":7063,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7049,"src":"4199:5:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}],"id":7062,"name":"byteLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6978,"src":"4188:10:31","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$6866_$returns$_t_uint256_$","typeString":"function (ShortString) pure returns (uint256)"}},"id":7064,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4188:17:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7055,"id":7065,"nodeType":"Return","src":"4181:24:31"}]}}]},"documentation":{"id":7046,"nodeType":"StructuredDocumentation","src":"3631:364:31","text":" @dev Return the length of a string that was encoded to `ShortString` or written to storage using\n {setWithFallback}.\n WARNING: This will return the \"byte length\" of the string. This may not reflect the actual length in terms of\n actual characters as the UTF-8 encoding of a single character can span over multiple bytes."},"id":7076,"implemented":true,"kind":"function","modifiers":[],"name":"byteLengthWithFallback","nameLocation":"4009:22:31","nodeType":"FunctionDefinition","parameters":{"id":7052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7049,"mutability":"mutable","name":"value","nameLocation":"4044:5:31","nodeType":"VariableDeclaration","scope":7076,"src":"4032:17:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":7048,"nodeType":"UserDefinedTypeName","pathNode":{"id":7047,"name":"ShortString","nameLocations":["4032:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"4032:11:31"},"referencedDeclaration":6866,"src":"4032:11:31","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"internal"},{"constant":false,"id":7051,"mutability":"mutable","name":"store","nameLocation":"4066:5:31","nodeType":"VariableDeclaration","scope":7076,"src":"4051:20:31","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7050,"name":"string","nodeType":"ElementaryTypeName","src":"4051:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4031:41:31"},"returnParameters":{"id":7055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7054,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7076,"src":"4096:7:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7053,"name":"uint256","nodeType":"ElementaryTypeName","src":"4096:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4095:9:31"},"scope":7077,"src":"4000:279:31","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":7078,"src":"1255:3026:31","usedErrors":[6874,6876],"usedEvents":[]}],"src":"106:4176:31"},"id":31},"@openzeppelin/contracts/utils/StorageSlot.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","exportedSymbols":{"StorageSlot":[7201]},"id":7202,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7079,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"193:24:32"},{"abstract":false,"baseContracts":[],"canonicalName":"StorageSlot","contractDependencies":[],"contractKind":"library","documentation":{"id":7080,"nodeType":"StructuredDocumentation","src":"219:1187:32","text":" @dev Library for reading and writing primitive types to specific storage slots.\n Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n This library helps with reading and writing to such slots without the need for inline assembly.\n The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n Example usage to set ERC-1967 implementation slot:\n ```solidity\n contract ERC1967 {\n // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n function _getImplementation() internal view returns (address) {\n return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n }\n function _setImplementation(address newImplementation) internal {\n require(newImplementation.code.length > 0);\n StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n }\n }\n ```\n TIP: Consider using this library along with {SlotDerivation}."},"fullyImplemented":true,"id":7201,"linearizedBaseContracts":[7201],"name":"StorageSlot","nameLocation":"1415:11:32","nodeType":"ContractDefinition","nodes":[{"canonicalName":"StorageSlot.AddressSlot","id":7083,"members":[{"constant":false,"id":7082,"mutability":"mutable","name":"value","nameLocation":"1470:5:32","nodeType":"VariableDeclaration","scope":7083,"src":"1462:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7081,"name":"address","nodeType":"ElementaryTypeName","src":"1462:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AddressSlot","nameLocation":"1440:11:32","nodeType":"StructDefinition","scope":7201,"src":"1433:49:32","visibility":"public"},{"canonicalName":"StorageSlot.BooleanSlot","id":7086,"members":[{"constant":false,"id":7085,"mutability":"mutable","name":"value","nameLocation":"1522:5:32","nodeType":"VariableDeclaration","scope":7086,"src":"1517:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7084,"name":"bool","nodeType":"ElementaryTypeName","src":"1517:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"BooleanSlot","nameLocation":"1495:11:32","nodeType":"StructDefinition","scope":7201,"src":"1488:46:32","visibility":"public"},{"canonicalName":"StorageSlot.Bytes32Slot","id":7089,"members":[{"constant":false,"id":7088,"mutability":"mutable","name":"value","nameLocation":"1577:5:32","nodeType":"VariableDeclaration","scope":7089,"src":"1569:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7087,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1569:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"Bytes32Slot","nameLocation":"1547:11:32","nodeType":"StructDefinition","scope":7201,"src":"1540:49:32","visibility":"public"},{"canonicalName":"StorageSlot.Uint256Slot","id":7092,"members":[{"constant":false,"id":7091,"mutability":"mutable","name":"value","nameLocation":"1632:5:32","nodeType":"VariableDeclaration","scope":7092,"src":"1624:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7090,"name":"uint256","nodeType":"ElementaryTypeName","src":"1624:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Uint256Slot","nameLocation":"1602:11:32","nodeType":"StructDefinition","scope":7201,"src":"1595:49:32","visibility":"public"},{"canonicalName":"StorageSlot.Int256Slot","id":7095,"members":[{"constant":false,"id":7094,"mutability":"mutable","name":"value","nameLocation":"1685:5:32","nodeType":"VariableDeclaration","scope":7095,"src":"1678:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7093,"name":"int256","nodeType":"ElementaryTypeName","src":"1678:6:32","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"name":"Int256Slot","nameLocation":"1657:10:32","nodeType":"StructDefinition","scope":7201,"src":"1650:47:32","visibility":"public"},{"canonicalName":"StorageSlot.StringSlot","id":7098,"members":[{"constant":false,"id":7097,"mutability":"mutable","name":"value","nameLocation":"1738:5:32","nodeType":"VariableDeclaration","scope":7098,"src":"1731:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7096,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:32","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"StringSlot","nameLocation":"1710:10:32","nodeType":"StructDefinition","scope":7201,"src":"1703:47:32","visibility":"public"},{"canonicalName":"StorageSlot.BytesSlot","id":7101,"members":[{"constant":false,"id":7100,"mutability":"mutable","name":"value","nameLocation":"1789:5:32","nodeType":"VariableDeclaration","scope":7101,"src":"1783:11:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":7099,"name":"bytes","nodeType":"ElementaryTypeName","src":"1783:5:32","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"BytesSlot","nameLocation":"1763:9:32","nodeType":"StructDefinition","scope":7201,"src":"1756:45:32","visibility":"public"},{"body":{"id":7111,"nodeType":"Block","src":"1983:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"2018:38:32","statements":[{"nodeType":"YulAssignment","src":"2032:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"2042:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2032:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7108,"isOffset":false,"isSlot":true,"src":"2032:6:32","suffix":"slot","valueSize":1},{"declaration":7104,"isOffset":false,"isSlot":false,"src":"2042:4:32","valueSize":1}],"flags":["memory-safe"],"id":7110,"nodeType":"InlineAssembly","src":"1993:63:32"}]},"documentation":{"id":7102,"nodeType":"StructuredDocumentation","src":"1807:87:32","text":" @dev Returns an `AddressSlot` with member `value` located at `slot`."},"id":7112,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressSlot","nameLocation":"1908:14:32","nodeType":"FunctionDefinition","parameters":{"id":7105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7104,"mutability":"mutable","name":"slot","nameLocation":"1931:4:32","nodeType":"VariableDeclaration","scope":7112,"src":"1923:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7103,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1923:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1922:14:32"},"returnParameters":{"id":7109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7108,"mutability":"mutable","name":"r","nameLocation":"1980:1:32","nodeType":"VariableDeclaration","scope":7112,"src":"1960:21:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$7083_storage_ptr","typeString":"struct StorageSlot.AddressSlot"},"typeName":{"id":7107,"nodeType":"UserDefinedTypeName","pathNode":{"id":7106,"name":"AddressSlot","nameLocations":["1960:11:32"],"nodeType":"IdentifierPath","referencedDeclaration":7083,"src":"1960:11:32"},"referencedDeclaration":7083,"src":"1960:11:32","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$7083_storage_ptr","typeString":"struct StorageSlot.AddressSlot"}},"visibility":"internal"}],"src":"1959:23:32"},"scope":7201,"src":"1899:163:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7122,"nodeType":"Block","src":"2243:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"2278:38:32","statements":[{"nodeType":"YulAssignment","src":"2292:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"2302:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2292:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7119,"isOffset":false,"isSlot":true,"src":"2292:6:32","suffix":"slot","valueSize":1},{"declaration":7115,"isOffset":false,"isSlot":false,"src":"2302:4:32","valueSize":1}],"flags":["memory-safe"],"id":7121,"nodeType":"InlineAssembly","src":"2253:63:32"}]},"documentation":{"id":7113,"nodeType":"StructuredDocumentation","src":"2068:86:32","text":" @dev Returns a `BooleanSlot` with member `value` located at `slot`."},"id":7123,"implemented":true,"kind":"function","modifiers":[],"name":"getBooleanSlot","nameLocation":"2168:14:32","nodeType":"FunctionDefinition","parameters":{"id":7116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7115,"mutability":"mutable","name":"slot","nameLocation":"2191:4:32","nodeType":"VariableDeclaration","scope":7123,"src":"2183:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7114,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2183:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2182:14:32"},"returnParameters":{"id":7120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7119,"mutability":"mutable","name":"r","nameLocation":"2240:1:32","nodeType":"VariableDeclaration","scope":7123,"src":"2220:21:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$7086_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"},"typeName":{"id":7118,"nodeType":"UserDefinedTypeName","pathNode":{"id":7117,"name":"BooleanSlot","nameLocations":["2220:11:32"],"nodeType":"IdentifierPath","referencedDeclaration":7086,"src":"2220:11:32"},"referencedDeclaration":7086,"src":"2220:11:32","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$7086_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"}},"visibility":"internal"}],"src":"2219:23:32"},"scope":7201,"src":"2159:163:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7133,"nodeType":"Block","src":"2503:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"2538:38:32","statements":[{"nodeType":"YulAssignment","src":"2552:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"2562:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2552:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7130,"isOffset":false,"isSlot":true,"src":"2552:6:32","suffix":"slot","valueSize":1},{"declaration":7126,"isOffset":false,"isSlot":false,"src":"2562:4:32","valueSize":1}],"flags":["memory-safe"],"id":7132,"nodeType":"InlineAssembly","src":"2513:63:32"}]},"documentation":{"id":7124,"nodeType":"StructuredDocumentation","src":"2328:86:32","text":" @dev Returns a `Bytes32Slot` with member `value` located at `slot`."},"id":7134,"implemented":true,"kind":"function","modifiers":[],"name":"getBytes32Slot","nameLocation":"2428:14:32","nodeType":"FunctionDefinition","parameters":{"id":7127,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7126,"mutability":"mutable","name":"slot","nameLocation":"2451:4:32","nodeType":"VariableDeclaration","scope":7134,"src":"2443:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7125,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2443:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2442:14:32"},"returnParameters":{"id":7131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7130,"mutability":"mutable","name":"r","nameLocation":"2500:1:32","nodeType":"VariableDeclaration","scope":7134,"src":"2480:21:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$7089_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"},"typeName":{"id":7129,"nodeType":"UserDefinedTypeName","pathNode":{"id":7128,"name":"Bytes32Slot","nameLocations":["2480:11:32"],"nodeType":"IdentifierPath","referencedDeclaration":7089,"src":"2480:11:32"},"referencedDeclaration":7089,"src":"2480:11:32","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$7089_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"}},"visibility":"internal"}],"src":"2479:23:32"},"scope":7201,"src":"2419:163:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7144,"nodeType":"Block","src":"2763:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"2798:38:32","statements":[{"nodeType":"YulAssignment","src":"2812:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"2822:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2812:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7141,"isOffset":false,"isSlot":true,"src":"2812:6:32","suffix":"slot","valueSize":1},{"declaration":7137,"isOffset":false,"isSlot":false,"src":"2822:4:32","valueSize":1}],"flags":["memory-safe"],"id":7143,"nodeType":"InlineAssembly","src":"2773:63:32"}]},"documentation":{"id":7135,"nodeType":"StructuredDocumentation","src":"2588:86:32","text":" @dev Returns a `Uint256Slot` with member `value` located at `slot`."},"id":7145,"implemented":true,"kind":"function","modifiers":[],"name":"getUint256Slot","nameLocation":"2688:14:32","nodeType":"FunctionDefinition","parameters":{"id":7138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7137,"mutability":"mutable","name":"slot","nameLocation":"2711:4:32","nodeType":"VariableDeclaration","scope":7145,"src":"2703:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7136,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2703:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2702:14:32"},"returnParameters":{"id":7142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7141,"mutability":"mutable","name":"r","nameLocation":"2760:1:32","nodeType":"VariableDeclaration","scope":7145,"src":"2740:21:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$7092_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"},"typeName":{"id":7140,"nodeType":"UserDefinedTypeName","pathNode":{"id":7139,"name":"Uint256Slot","nameLocations":["2740:11:32"],"nodeType":"IdentifierPath","referencedDeclaration":7092,"src":"2740:11:32"},"referencedDeclaration":7092,"src":"2740:11:32","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$7092_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"}},"visibility":"internal"}],"src":"2739:23:32"},"scope":7201,"src":"2679:163:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7155,"nodeType":"Block","src":"3020:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"3055:38:32","statements":[{"nodeType":"YulAssignment","src":"3069:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"3079:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3069:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7152,"isOffset":false,"isSlot":true,"src":"3069:6:32","suffix":"slot","valueSize":1},{"declaration":7148,"isOffset":false,"isSlot":false,"src":"3079:4:32","valueSize":1}],"flags":["memory-safe"],"id":7154,"nodeType":"InlineAssembly","src":"3030:63:32"}]},"documentation":{"id":7146,"nodeType":"StructuredDocumentation","src":"2848:85:32","text":" @dev Returns a `Int256Slot` with member `value` located at `slot`."},"id":7156,"implemented":true,"kind":"function","modifiers":[],"name":"getInt256Slot","nameLocation":"2947:13:32","nodeType":"FunctionDefinition","parameters":{"id":7149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7148,"mutability":"mutable","name":"slot","nameLocation":"2969:4:32","nodeType":"VariableDeclaration","scope":7156,"src":"2961:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7147,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2961:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2960:14:32"},"returnParameters":{"id":7153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7152,"mutability":"mutable","name":"r","nameLocation":"3017:1:32","nodeType":"VariableDeclaration","scope":7156,"src":"2998:20:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$7095_storage_ptr","typeString":"struct StorageSlot.Int256Slot"},"typeName":{"id":7151,"nodeType":"UserDefinedTypeName","pathNode":{"id":7150,"name":"Int256Slot","nameLocations":["2998:10:32"],"nodeType":"IdentifierPath","referencedDeclaration":7095,"src":"2998:10:32"},"referencedDeclaration":7095,"src":"2998:10:32","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$7095_storage_ptr","typeString":"struct StorageSlot.Int256Slot"}},"visibility":"internal"}],"src":"2997:22:32"},"scope":7201,"src":"2938:161:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7166,"nodeType":"Block","src":"3277:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"3312:38:32","statements":[{"nodeType":"YulAssignment","src":"3326:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"3336:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3326:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7163,"isOffset":false,"isSlot":true,"src":"3326:6:32","suffix":"slot","valueSize":1},{"declaration":7159,"isOffset":false,"isSlot":false,"src":"3336:4:32","valueSize":1}],"flags":["memory-safe"],"id":7165,"nodeType":"InlineAssembly","src":"3287:63:32"}]},"documentation":{"id":7157,"nodeType":"StructuredDocumentation","src":"3105:85:32","text":" @dev Returns a `StringSlot` with member `value` located at `slot`."},"id":7167,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3204:13:32","nodeType":"FunctionDefinition","parameters":{"id":7160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7159,"mutability":"mutable","name":"slot","nameLocation":"3226:4:32","nodeType":"VariableDeclaration","scope":7167,"src":"3218:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7158,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3218:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3217:14:32"},"returnParameters":{"id":7164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7163,"mutability":"mutable","name":"r","nameLocation":"3274:1:32","nodeType":"VariableDeclaration","scope":7167,"src":"3255:20:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7098_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":7162,"nodeType":"UserDefinedTypeName","pathNode":{"id":7161,"name":"StringSlot","nameLocations":["3255:10:32"],"nodeType":"IdentifierPath","referencedDeclaration":7098,"src":"3255:10:32"},"referencedDeclaration":7098,"src":"3255:10:32","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7098_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3254:22:32"},"scope":7201,"src":"3195:161:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7177,"nodeType":"Block","src":"3558:85:32","statements":[{"AST":{"nodeType":"YulBlock","src":"3593:44:32","statements":[{"nodeType":"YulAssignment","src":"3607:20:32","value":{"name":"store.slot","nodeType":"YulIdentifier","src":"3617:10:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3607:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7174,"isOffset":false,"isSlot":true,"src":"3607:6:32","suffix":"slot","valueSize":1},{"declaration":7170,"isOffset":false,"isSlot":true,"src":"3617:10:32","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":7176,"nodeType":"InlineAssembly","src":"3568:69:32"}]},"documentation":{"id":7168,"nodeType":"StructuredDocumentation","src":"3362:101:32","text":" @dev Returns an `StringSlot` representation of the string storage pointer `store`."},"id":7178,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3477:13:32","nodeType":"FunctionDefinition","parameters":{"id":7171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7170,"mutability":"mutable","name":"store","nameLocation":"3506:5:32","nodeType":"VariableDeclaration","scope":7178,"src":"3491:20:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7169,"name":"string","nodeType":"ElementaryTypeName","src":"3491:6:32","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3490:22:32"},"returnParameters":{"id":7175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7174,"mutability":"mutable","name":"r","nameLocation":"3555:1:32","nodeType":"VariableDeclaration","scope":7178,"src":"3536:20:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7098_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":7173,"nodeType":"UserDefinedTypeName","pathNode":{"id":7172,"name":"StringSlot","nameLocations":["3536:10:32"],"nodeType":"IdentifierPath","referencedDeclaration":7098,"src":"3536:10:32"},"referencedDeclaration":7098,"src":"3536:10:32","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7098_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3535:22:32"},"scope":7201,"src":"3468:175:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7188,"nodeType":"Block","src":"3818:79:32","statements":[{"AST":{"nodeType":"YulBlock","src":"3853:38:32","statements":[{"nodeType":"YulAssignment","src":"3867:14:32","value":{"name":"slot","nodeType":"YulIdentifier","src":"3877:4:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3867:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7185,"isOffset":false,"isSlot":true,"src":"3867:6:32","suffix":"slot","valueSize":1},{"declaration":7181,"isOffset":false,"isSlot":false,"src":"3877:4:32","valueSize":1}],"flags":["memory-safe"],"id":7187,"nodeType":"InlineAssembly","src":"3828:63:32"}]},"documentation":{"id":7179,"nodeType":"StructuredDocumentation","src":"3649:84:32","text":" @dev Returns a `BytesSlot` with member `value` located at `slot`."},"id":7189,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3747:12:32","nodeType":"FunctionDefinition","parameters":{"id":7182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7181,"mutability":"mutable","name":"slot","nameLocation":"3768:4:32","nodeType":"VariableDeclaration","scope":7189,"src":"3760:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7180,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3760:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3759:14:32"},"returnParameters":{"id":7186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7185,"mutability":"mutable","name":"r","nameLocation":"3815:1:32","nodeType":"VariableDeclaration","scope":7189,"src":"3797:19:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7101_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":7184,"nodeType":"UserDefinedTypeName","pathNode":{"id":7183,"name":"BytesSlot","nameLocations":["3797:9:32"],"nodeType":"IdentifierPath","referencedDeclaration":7101,"src":"3797:9:32"},"referencedDeclaration":7101,"src":"3797:9:32","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7101_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3796:21:32"},"scope":7201,"src":"3738:159:32","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7199,"nodeType":"Block","src":"4094:85:32","statements":[{"AST":{"nodeType":"YulBlock","src":"4129:44:32","statements":[{"nodeType":"YulAssignment","src":"4143:20:32","value":{"name":"store.slot","nodeType":"YulIdentifier","src":"4153:10:32"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"4143:6:32"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7196,"isOffset":false,"isSlot":true,"src":"4143:6:32","suffix":"slot","valueSize":1},{"declaration":7192,"isOffset":false,"isSlot":true,"src":"4153:10:32","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":7198,"nodeType":"InlineAssembly","src":"4104:69:32"}]},"documentation":{"id":7190,"nodeType":"StructuredDocumentation","src":"3903:99:32","text":" @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`."},"id":7200,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"4016:12:32","nodeType":"FunctionDefinition","parameters":{"id":7193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7192,"mutability":"mutable","name":"store","nameLocation":"4043:5:32","nodeType":"VariableDeclaration","scope":7200,"src":"4029:19:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":7191,"name":"bytes","nodeType":"ElementaryTypeName","src":"4029:5:32","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4028:21:32"},"returnParameters":{"id":7197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7196,"mutability":"mutable","name":"r","nameLocation":"4091:1:32","nodeType":"VariableDeclaration","scope":7200,"src":"4073:19:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7101_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":7195,"nodeType":"UserDefinedTypeName","pathNode":{"id":7194,"name":"BytesSlot","nameLocations":["4073:9:32"],"nodeType":"IdentifierPath","referencedDeclaration":7101,"src":"4073:9:32"},"referencedDeclaration":7101,"src":"4073:9:32","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7101_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"4072:21:32"},"scope":7201,"src":"4007:172:32","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":7202,"src":"1407:2774:32","usedErrors":[],"usedEvents":[]}],"src":"193:3989:32"},"id":32},"@openzeppelin/contracts/utils/Strings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","exportedSymbols":{"Math":[10800],"SafeCast":[12565],"SignedMath":[12709],"Strings":[8401]},"id":8402,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7203,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:33"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":7205,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8402,"sourceUnit":10801,"src":"127:37:33","symbolAliases":[{"foreign":{"id":7204,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"135:4:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./math/SafeCast.sol","id":7207,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8402,"sourceUnit":12566,"src":"165:45:33","symbolAliases":[{"foreign":{"id":7206,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"173:8:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","file":"./math/SignedMath.sol","id":7209,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8402,"sourceUnit":12710,"src":"211:49:33","symbolAliases":[{"foreign":{"id":7208,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12709,"src":"219:10:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Strings","contractDependencies":[],"contractKind":"library","documentation":{"id":7210,"nodeType":"StructuredDocumentation","src":"262:34:33","text":" @dev String operations."},"fullyImplemented":true,"id":8401,"linearizedBaseContracts":[8401],"name":"Strings","nameLocation":"305:7:33","nodeType":"ContractDefinition","nodes":[{"global":false,"id":7212,"libraryName":{"id":7211,"name":"SafeCast","nameLocations":["325:8:33"],"nodeType":"IdentifierPath","referencedDeclaration":12565,"src":"325:8:33"},"nodeType":"UsingForDirective","src":"319:21:33"},{"constant":true,"id":7215,"mutability":"constant","name":"HEX_DIGITS","nameLocation":"371:10:33","nodeType":"VariableDeclaration","scope":8401,"src":"346:56:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":7213,"name":"bytes16","nodeType":"ElementaryTypeName","src":"346:7:33","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30313233343536373839616263646566","id":7214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"384:18:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f","typeString":"literal_string \"0123456789abcdef\""},"value":"0123456789abcdef"},"visibility":"private"},{"constant":true,"id":7218,"mutability":"constant","name":"ADDRESS_LENGTH","nameLocation":"431:14:33","nodeType":"VariableDeclaration","scope":8401,"src":"408:42:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":7216,"name":"uint8","nodeType":"ElementaryTypeName","src":"408:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3230","id":7217,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"448:2:33","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"private"},{"documentation":{"id":7219,"nodeType":"StructuredDocumentation","src":"457:81:33","text":" @dev The `value` string doesn't fit in the specified `length`."},"errorSelector":"e22e27eb","id":7225,"name":"StringsInsufficientHexLength","nameLocation":"549:28:33","nodeType":"ErrorDefinition","parameters":{"id":7224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7221,"mutability":"mutable","name":"value","nameLocation":"586:5:33","nodeType":"VariableDeclaration","scope":7225,"src":"578:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7220,"name":"uint256","nodeType":"ElementaryTypeName","src":"578:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7223,"mutability":"mutable","name":"length","nameLocation":"601:6:33","nodeType":"VariableDeclaration","scope":7225,"src":"593:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7222,"name":"uint256","nodeType":"ElementaryTypeName","src":"593:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"577:31:33"},"src":"543:66:33"},{"documentation":{"id":7226,"nodeType":"StructuredDocumentation","src":"615:108:33","text":" @dev The string being parsed contains characters that are not in scope of the given base."},"errorSelector":"94e2737e","id":7228,"name":"StringsInvalidChar","nameLocation":"734:18:33","nodeType":"ErrorDefinition","parameters":{"id":7227,"nodeType":"ParameterList","parameters":[],"src":"752:2:33"},"src":"728:27:33"},{"documentation":{"id":7229,"nodeType":"StructuredDocumentation","src":"761:84:33","text":" @dev The string being parsed is not a properly formatted address."},"errorSelector":"1d15ae44","id":7231,"name":"StringsInvalidAddressFormat","nameLocation":"856:27:33","nodeType":"ErrorDefinition","parameters":{"id":7230,"nodeType":"ParameterList","parameters":[],"src":"883:2:33"},"src":"850:36:33"},{"body":{"id":7278,"nodeType":"Block","src":"1058:561:33","statements":[{"id":7277,"nodeType":"UncheckedBlock","src":"1068:545:33","statements":[{"assignments":[7240],"declarations":[{"constant":false,"id":7240,"mutability":"mutable","name":"length","nameLocation":"1100:6:33","nodeType":"VariableDeclaration","scope":7277,"src":"1092:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7239,"name":"uint256","nodeType":"ElementaryTypeName","src":"1092:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7247,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7243,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7234,"src":"1120:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7241,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"1109:4:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":7242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1114:5:33","memberName":"log10","nodeType":"MemberAccess","referencedDeclaration":10572,"src":"1109:10:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":7244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1109:17:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":7245,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1129:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1109:21:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1092:38:33"},{"assignments":[7249],"declarations":[{"constant":false,"id":7249,"mutability":"mutable","name":"buffer","nameLocation":"1158:6:33","nodeType":"VariableDeclaration","scope":7277,"src":"1144:20:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7248,"name":"string","nodeType":"ElementaryTypeName","src":"1144:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":7254,"initialValue":{"arguments":[{"id":7252,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"1178:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1167:10:33","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":7250,"name":"string","nodeType":"ElementaryTypeName","src":"1171:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":7253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1167:18:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"1144:41:33"},{"assignments":[7256],"declarations":[{"constant":false,"id":7256,"mutability":"mutable","name":"ptr","nameLocation":"1207:3:33","nodeType":"VariableDeclaration","scope":7277,"src":"1199:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7255,"name":"uint256","nodeType":"ElementaryTypeName","src":"1199:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7257,"nodeType":"VariableDeclarationStatement","src":"1199:11:33"},{"AST":{"nodeType":"YulBlock","src":"1249:67:33","statements":[{"nodeType":"YulAssignment","src":"1267:35:33","value":{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"1278:6:33"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1290:2:33","type":"","value":"32"},{"name":"length","nodeType":"YulIdentifier","src":"1294:6:33"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1286:3:33"},"nodeType":"YulFunctionCall","src":"1286:15:33"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1274:3:33"},"nodeType":"YulFunctionCall","src":"1274:28:33"},"variableNames":[{"name":"ptr","nodeType":"YulIdentifier","src":"1267:3:33"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7249,"isOffset":false,"isSlot":false,"src":"1278:6:33","valueSize":1},{"declaration":7240,"isOffset":false,"isSlot":false,"src":"1294:6:33","valueSize":1},{"declaration":7256,"isOffset":false,"isSlot":false,"src":"1267:3:33","valueSize":1}],"flags":["memory-safe"],"id":7258,"nodeType":"InlineAssembly","src":"1224:92:33"},{"body":{"id":7273,"nodeType":"Block","src":"1342:234:33","statements":[{"expression":{"id":7261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"1360:5:33","subExpression":{"id":7260,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7256,"src":"1360:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7262,"nodeType":"ExpressionStatement","src":"1360:5:33"},{"AST":{"nodeType":"YulBlock","src":"1408:86:33","statements":[{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"1438:3:33"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1452:5:33"},{"kind":"number","nodeType":"YulLiteral","src":"1459:2:33","type":"","value":"10"}],"functionName":{"name":"mod","nodeType":"YulIdentifier","src":"1448:3:33"},"nodeType":"YulFunctionCall","src":"1448:14:33"},{"name":"HEX_DIGITS","nodeType":"YulIdentifier","src":"1464:10:33"}],"functionName":{"name":"byte","nodeType":"YulIdentifier","src":"1443:4:33"},"nodeType":"YulFunctionCall","src":"1443:32:33"}],"functionName":{"name":"mstore8","nodeType":"YulIdentifier","src":"1430:7:33"},"nodeType":"YulFunctionCall","src":"1430:46:33"},"nodeType":"YulExpressionStatement","src":"1430:46:33"}]},"evmVersion":"paris","externalReferences":[{"declaration":7215,"isOffset":false,"isSlot":false,"src":"1464:10:33","valueSize":1},{"declaration":7256,"isOffset":false,"isSlot":false,"src":"1438:3:33","valueSize":1},{"declaration":7234,"isOffset":false,"isSlot":false,"src":"1452:5:33","valueSize":1}],"flags":["memory-safe"],"id":7263,"nodeType":"InlineAssembly","src":"1383:111:33"},{"expression":{"id":7266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7264,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7234,"src":"1511:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":7265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1520:2:33","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1511:11:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7267,"nodeType":"ExpressionStatement","src":"1511:11:33"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7268,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7234,"src":"1544:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1553:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1544:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7272,"nodeType":"IfStatement","src":"1540:21:33","trueBody":{"id":7271,"nodeType":"Break","src":"1556:5:33"}}]},"condition":{"hexValue":"74727565","id":7259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1336:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":7274,"nodeType":"WhileStatement","src":"1329:247:33"},{"expression":{"id":7275,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7249,"src":"1596:6:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7238,"id":7276,"nodeType":"Return","src":"1589:13:33"}]}]},"documentation":{"id":7232,"nodeType":"StructuredDocumentation","src":"892:90:33","text":" @dev Converts a `uint256` to its ASCII `string` decimal representation."},"id":7279,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"996:8:33","nodeType":"FunctionDefinition","parameters":{"id":7235,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7234,"mutability":"mutable","name":"value","nameLocation":"1013:5:33","nodeType":"VariableDeclaration","scope":7279,"src":"1005:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7233,"name":"uint256","nodeType":"ElementaryTypeName","src":"1005:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1004:15:33"},"returnParameters":{"id":7238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7237,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7279,"src":"1043:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7236,"name":"string","nodeType":"ElementaryTypeName","src":"1043:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1042:15:33"},"scope":8401,"src":"987:632:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7304,"nodeType":"Block","src":"1795:92:33","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7290,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7282,"src":"1826:5:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":7291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1834:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1826:9:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":7294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1844:2:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":7295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1826:20:33","trueExpression":{"hexValue":"2d","id":7293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1838:3:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"id":7299,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7282,"src":"1872:5:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":7297,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12709,"src":"1857:10:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignedMath_$12709_$","typeString":"type(library SignedMath)"}},"id":7298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1868:3:33","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":12708,"src":"1857:14:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) pure returns (uint256)"}},"id":7300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1857:21:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7296,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7279,"src":"1848:8:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":7301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1848:31:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":7288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1812:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":7287,"name":"string","nodeType":"ElementaryTypeName","src":"1812:6:33","typeDescriptions":{}}},"id":7289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1819:6:33","memberName":"concat","nodeType":"MemberAccess","src":"1812:13:33","typeDescriptions":{"typeIdentifier":"t_function_stringconcat_pure$__$returns$_t_string_memory_ptr_$","typeString":"function () pure returns (string memory)"}},"id":7302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1812:68:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7286,"id":7303,"nodeType":"Return","src":"1805:75:33"}]},"documentation":{"id":7280,"nodeType":"StructuredDocumentation","src":"1625:89:33","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":7305,"implemented":true,"kind":"function","modifiers":[],"name":"toStringSigned","nameLocation":"1728:14:33","nodeType":"FunctionDefinition","parameters":{"id":7283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7282,"mutability":"mutable","name":"value","nameLocation":"1750:5:33","nodeType":"VariableDeclaration","scope":7305,"src":"1743:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7281,"name":"int256","nodeType":"ElementaryTypeName","src":"1743:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1742:14:33"},"returnParameters":{"id":7286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7285,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7305,"src":"1780:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7284,"name":"string","nodeType":"ElementaryTypeName","src":"1780:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1779:15:33"},"scope":8401,"src":"1719:168:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7324,"nodeType":"Block","src":"2066:100:33","statements":[{"id":7323,"nodeType":"UncheckedBlock","src":"2076:84:33","statements":[{"expression":{"arguments":[{"id":7314,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7308,"src":"2119:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7317,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7308,"src":"2138:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7315,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"2126:4:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":7316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2131:6:33","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":10743,"src":"2126:11:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":7318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2126:18:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":7319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2147:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2126:22:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7313,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[7325,7408,7428],"referencedDeclaration":7408,"src":"2107:11:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":7321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2107:42:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7312,"id":7322,"nodeType":"Return","src":"2100:49:33"}]}]},"documentation":{"id":7306,"nodeType":"StructuredDocumentation","src":"1893:94:33","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":7325,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2001:11:33","nodeType":"FunctionDefinition","parameters":{"id":7309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7308,"mutability":"mutable","name":"value","nameLocation":"2021:5:33","nodeType":"VariableDeclaration","scope":7325,"src":"2013:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7307,"name":"uint256","nodeType":"ElementaryTypeName","src":"2013:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2012:15:33"},"returnParameters":{"id":7312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7311,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7325,"src":"2051:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7310,"name":"string","nodeType":"ElementaryTypeName","src":"2051:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2050:15:33"},"scope":8401,"src":"1992:174:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7407,"nodeType":"Block","src":"2379:435:33","statements":[{"assignments":[7336],"declarations":[{"constant":false,"id":7336,"mutability":"mutable","name":"localValue","nameLocation":"2397:10:33","nodeType":"VariableDeclaration","scope":7407,"src":"2389:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7335,"name":"uint256","nodeType":"ElementaryTypeName","src":"2389:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7338,"initialValue":{"id":7337,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7328,"src":"2410:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2389:26:33"},{"assignments":[7340],"declarations":[{"constant":false,"id":7340,"mutability":"mutable","name":"buffer","nameLocation":"2438:6:33","nodeType":"VariableDeclaration","scope":7407,"src":"2425:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7339,"name":"bytes","nodeType":"ElementaryTypeName","src":"2425:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7349,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":7343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2457:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":7344,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7330,"src":"2461:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2457:10:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":7346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2470:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2457:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2447:9:33","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":7341,"name":"bytes","nodeType":"ElementaryTypeName","src":"2451:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":7348,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2447:25:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2425:47:33"},{"expression":{"id":7354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7350,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7340,"src":"2482:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7352,"indexExpression":{"hexValue":"30","id":7351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2489:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2482:9:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":7353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2494:3:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"2482:15:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7355,"nodeType":"ExpressionStatement","src":"2482:15:33"},{"expression":{"id":7360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7356,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7340,"src":"2507:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7358,"indexExpression":{"hexValue":"31","id":7357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2514:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2507:9:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":7359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2519:3:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2507:15:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7361,"nodeType":"ExpressionStatement","src":"2507:15:33"},{"body":{"id":7390,"nodeType":"Block","src":"2577:95:33","statements":[{"expression":{"id":7384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7376,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7340,"src":"2591:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7378,"indexExpression":{"id":7377,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7363,"src":"2598:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2591:9:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":7379,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7215,"src":"2603:10:33","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":7383,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7380,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7336,"src":"2614:10:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":7381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2627:3:33","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2614:16:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2603:28:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2591:40:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7385,"nodeType":"ExpressionStatement","src":"2591:40:33"},{"expression":{"id":7388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7386,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7336,"src":"2645:10:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":7387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2660:1:33","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2645:16:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7389,"nodeType":"ExpressionStatement","src":"2645:16:33"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7370,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7363,"src":"2565:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":7371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2569:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2565:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7391,"initializationExpression":{"assignments":[7363],"declarations":[{"constant":false,"id":7363,"mutability":"mutable","name":"i","nameLocation":"2545:1:33","nodeType":"VariableDeclaration","scope":7391,"src":"2537:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7362,"name":"uint256","nodeType":"ElementaryTypeName","src":"2537:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7369,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":7364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2549:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":7365,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7330,"src":"2553:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2549:10:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":7367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2562:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2549:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2537:26:33"},"loopExpression":{"expression":{"id":7374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2572:3:33","subExpression":{"id":7373,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7363,"src":"2574:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7375,"nodeType":"ExpressionStatement","src":"2572:3:33"},"nodeType":"ForStatement","src":"2532:140:33"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7392,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7336,"src":"2685:10:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":7393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2699:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2685:15:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7401,"nodeType":"IfStatement","src":"2681:96:33","trueBody":{"id":7400,"nodeType":"Block","src":"2702:75:33","statements":[{"errorCall":{"arguments":[{"id":7396,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7328,"src":"2752:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7397,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7330,"src":"2759:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7395,"name":"StringsInsufficientHexLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"2723:28:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":7398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2723:43:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7399,"nodeType":"RevertStatement","src":"2716:50:33"}]}},{"expression":{"arguments":[{"id":7404,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7340,"src":"2800:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7403,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2793:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":7402,"name":"string","nodeType":"ElementaryTypeName","src":"2793:6:33","typeDescriptions":{}}},"id":7405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2793:14:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7334,"id":7406,"nodeType":"Return","src":"2786:21:33"}]},"documentation":{"id":7326,"nodeType":"StructuredDocumentation","src":"2172:112:33","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."},"id":7408,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2298:11:33","nodeType":"FunctionDefinition","parameters":{"id":7331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7328,"mutability":"mutable","name":"value","nameLocation":"2318:5:33","nodeType":"VariableDeclaration","scope":7408,"src":"2310:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7327,"name":"uint256","nodeType":"ElementaryTypeName","src":"2310:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7330,"mutability":"mutable","name":"length","nameLocation":"2333:6:33","nodeType":"VariableDeclaration","scope":7408,"src":"2325:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7329,"name":"uint256","nodeType":"ElementaryTypeName","src":"2325:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2309:31:33"},"returnParameters":{"id":7334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7333,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7408,"src":"2364:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7332,"name":"string","nodeType":"ElementaryTypeName","src":"2364:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2363:15:33"},"scope":8401,"src":"2289:525:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7427,"nodeType":"Block","src":"3046:75:33","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":7421,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7411,"src":"3091:4:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7420,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3083:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":7419,"name":"uint160","nodeType":"ElementaryTypeName","src":"3083:7:33","typeDescriptions":{}}},"id":7422,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3083:13:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":7418,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3075:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7417,"name":"uint256","nodeType":"ElementaryTypeName","src":"3075:7:33","typeDescriptions":{}}},"id":7423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3075:22:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7424,"name":"ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"3099:14:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":7416,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[7325,7408,7428],"referencedDeclaration":7408,"src":"3063:11:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":7425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3063:51:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7415,"id":7426,"nodeType":"Return","src":"3056:58:33"}]},"documentation":{"id":7409,"nodeType":"StructuredDocumentation","src":"2820:148:33","text":" @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n representation."},"id":7428,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2982:11:33","nodeType":"FunctionDefinition","parameters":{"id":7412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7411,"mutability":"mutable","name":"addr","nameLocation":"3002:4:33","nodeType":"VariableDeclaration","scope":7428,"src":"2994:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7410,"name":"address","nodeType":"ElementaryTypeName","src":"2994:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2993:14:33"},"returnParameters":{"id":7415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7414,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7428,"src":"3031:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7413,"name":"string","nodeType":"ElementaryTypeName","src":"3031:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3030:15:33"},"scope":8401,"src":"2973:148:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7492,"nodeType":"Block","src":"3378:642:33","statements":[{"assignments":[7437],"declarations":[{"constant":false,"id":7437,"mutability":"mutable","name":"buffer","nameLocation":"3401:6:33","nodeType":"VariableDeclaration","scope":7492,"src":"3388:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7436,"name":"bytes","nodeType":"ElementaryTypeName","src":"3388:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7444,"initialValue":{"arguments":[{"arguments":[{"id":7441,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7431,"src":"3428:4:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7440,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[7325,7408,7428],"referencedDeclaration":7428,"src":"3416:11:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$returns$_t_string_memory_ptr_$","typeString":"function (address) pure returns (string memory)"}},"id":7442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3416:17:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7439,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3410:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7438,"name":"bytes","nodeType":"ElementaryTypeName","src":"3410:5:33","typeDescriptions":{}}},"id":7443,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3410:24:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3388:46:33"},{"assignments":[7446],"declarations":[{"constant":false,"id":7446,"mutability":"mutable","name":"hashValue","nameLocation":"3527:9:33","nodeType":"VariableDeclaration","scope":7492,"src":"3519:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7445,"name":"uint256","nodeType":"ElementaryTypeName","src":"3519:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7447,"nodeType":"VariableDeclarationStatement","src":"3519:17:33"},{"AST":{"nodeType":"YulBlock","src":"3571:78:33","statements":[{"nodeType":"YulAssignment","src":"3585:54:33","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3602:2:33","type":"","value":"96"},{"arguments":[{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"3620:6:33"},{"kind":"number","nodeType":"YulLiteral","src":"3628:4:33","type":"","value":"0x22"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3616:3:33"},"nodeType":"YulFunctionCall","src":"3616:17:33"},{"kind":"number","nodeType":"YulLiteral","src":"3635:2:33","type":"","value":"40"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"3606:9:33"},"nodeType":"YulFunctionCall","src":"3606:32:33"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3598:3:33"},"nodeType":"YulFunctionCall","src":"3598:41:33"},"variableNames":[{"name":"hashValue","nodeType":"YulIdentifier","src":"3585:9:33"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7437,"isOffset":false,"isSlot":false,"src":"3620:6:33","valueSize":1},{"declaration":7446,"isOffset":false,"isSlot":false,"src":"3585:9:33","valueSize":1}],"flags":["memory-safe"],"id":7448,"nodeType":"InlineAssembly","src":"3546:103:33"},{"body":{"id":7485,"nodeType":"Block","src":"3692:291:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7459,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7446,"src":"3798:9:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":7460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3810:3:33","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"3798:15:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"37","id":7462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3816:1:33","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"3798:19:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":7471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":7466,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7437,"src":"3827:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7468,"indexExpression":{"id":7467,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7450,"src":"3834:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3827:9:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":7465,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3821:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":7464,"name":"uint8","nodeType":"ElementaryTypeName","src":"3821:5:33","typeDescriptions":{}}},"id":7469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3821:16:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":7470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3840:2:33","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"3821:21:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3798:44:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7480,"nodeType":"IfStatement","src":"3794:150:33","trueBody":{"id":7479,"nodeType":"Block","src":"3844:100:33","statements":[{"expression":{"id":7477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7473,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7437,"src":"3912:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7475,"indexExpression":{"id":7474,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7450,"src":"3919:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3912:9:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"^=","rightHandSide":{"hexValue":"30783230","id":7476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3925:4:33","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"3912:17:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7478,"nodeType":"ExpressionStatement","src":"3912:17:33"}]}},{"expression":{"id":7483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7481,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7446,"src":"3957:9:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":7482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3971:1:33","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"3957:15:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7484,"nodeType":"ExpressionStatement","src":"3957:15:33"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7453,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7450,"src":"3680:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":7454,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3684:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3680:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7486,"initializationExpression":{"assignments":[7450],"declarations":[{"constant":false,"id":7450,"mutability":"mutable","name":"i","nameLocation":"3672:1:33","nodeType":"VariableDeclaration","scope":7486,"src":"3664:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7449,"name":"uint256","nodeType":"ElementaryTypeName","src":"3664:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7452,"initialValue":{"hexValue":"3431","id":7451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3676:2:33","typeDescriptions":{"typeIdentifier":"t_rational_41_by_1","typeString":"int_const 41"},"value":"41"},"nodeType":"VariableDeclarationStatement","src":"3664:14:33"},"loopExpression":{"expression":{"id":7457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"3687:3:33","subExpression":{"id":7456,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7450,"src":"3689:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7458,"nodeType":"ExpressionStatement","src":"3687:3:33"},"nodeType":"ForStatement","src":"3659:324:33"},{"expression":{"arguments":[{"id":7489,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7437,"src":"4006:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7488,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3999:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":7487,"name":"string","nodeType":"ElementaryTypeName","src":"3999:6:33","typeDescriptions":{}}},"id":7490,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3999:14:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7435,"id":7491,"nodeType":"Return","src":"3992:21:33"}]},"documentation":{"id":7429,"nodeType":"StructuredDocumentation","src":"3127:165:33","text":" @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n representation, according to EIP-55."},"id":7493,"implemented":true,"kind":"function","modifiers":[],"name":"toChecksumHexString","nameLocation":"3306:19:33","nodeType":"FunctionDefinition","parameters":{"id":7432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7431,"mutability":"mutable","name":"addr","nameLocation":"3334:4:33","nodeType":"VariableDeclaration","scope":7493,"src":"3326:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7430,"name":"address","nodeType":"ElementaryTypeName","src":"3326:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3325:14:33"},"returnParameters":{"id":7435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7434,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7493,"src":"3363:13:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7433,"name":"string","nodeType":"ElementaryTypeName","src":"3363:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3362:15:33"},"scope":8401,"src":"3297:723:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7529,"nodeType":"Block","src":"4175:104:33","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":7505,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7496,"src":"4198:1:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7504,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4192:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7503,"name":"bytes","nodeType":"ElementaryTypeName","src":"4192:5:33","typeDescriptions":{}}},"id":7506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4192:8:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4201:6:33","memberName":"length","nodeType":"MemberAccess","src":"4192:15:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":7510,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7498,"src":"4217:1:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4211:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7508,"name":"bytes","nodeType":"ElementaryTypeName","src":"4211:5:33","typeDescriptions":{}}},"id":7511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4211:8:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4220:6:33","memberName":"length","nodeType":"MemberAccess","src":"4211:15:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4192:34:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":7526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":7517,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7496,"src":"4246:1:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7516,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4240:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7515,"name":"bytes","nodeType":"ElementaryTypeName","src":"4240:5:33","typeDescriptions":{}}},"id":7518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4240:8:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7514,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4230:9:33","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":7519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4230:19:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"id":7523,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7498,"src":"4269:1:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4263:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7521,"name":"bytes","nodeType":"ElementaryTypeName","src":"4263:5:33","typeDescriptions":{}}},"id":7524,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4263:8:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7520,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4253:9:33","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":7525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4253:19:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4230:42:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4192:80:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":7502,"id":7528,"nodeType":"Return","src":"4185:87:33"}]},"documentation":{"id":7494,"nodeType":"StructuredDocumentation","src":"4026:66:33","text":" @dev Returns true if the two strings are equal."},"id":7530,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"4106:5:33","nodeType":"FunctionDefinition","parameters":{"id":7499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7496,"mutability":"mutable","name":"a","nameLocation":"4126:1:33","nodeType":"VariableDeclaration","scope":7530,"src":"4112:15:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7495,"name":"string","nodeType":"ElementaryTypeName","src":"4112:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7498,"mutability":"mutable","name":"b","nameLocation":"4143:1:33","nodeType":"VariableDeclaration","scope":7530,"src":"4129:15:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7497,"name":"string","nodeType":"ElementaryTypeName","src":"4129:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4111:34:33"},"returnParameters":{"id":7502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7501,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7530,"src":"4169:4:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7500,"name":"bool","nodeType":"ElementaryTypeName","src":"4169:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4168:6:33"},"scope":8401,"src":"4097:182:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7548,"nodeType":"Block","src":"4576:64:33","statements":[{"expression":{"arguments":[{"id":7539,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7533,"src":"4603:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4610:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7543,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7533,"src":"4619:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4613:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7541,"name":"bytes","nodeType":"ElementaryTypeName","src":"4613:5:33","typeDescriptions":{}}},"id":7544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4613:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4626:6:33","memberName":"length","nodeType":"MemberAccess","src":"4613:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7538,"name":"parseUint","nodeType":"Identifier","overloadedDeclarations":[7549,7580],"referencedDeclaration":7580,"src":"4593:9:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (uint256)"}},"id":7546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4593:40:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7537,"id":7547,"nodeType":"Return","src":"4586:47:33"}]},"documentation":{"id":7531,"nodeType":"StructuredDocumentation","src":"4285:214:33","text":" @dev Parse a decimal string and returns the value as a `uint256`.\n Requirements:\n - The string must be formatted as `[0-9]*`\n - The result must fit into an `uint256` type"},"id":7549,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"4513:9:33","nodeType":"FunctionDefinition","parameters":{"id":7534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7533,"mutability":"mutable","name":"input","nameLocation":"4537:5:33","nodeType":"VariableDeclaration","scope":7549,"src":"4523:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7532,"name":"string","nodeType":"ElementaryTypeName","src":"4523:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4522:21:33"},"returnParameters":{"id":7537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7536,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7549,"src":"4567:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7535,"name":"uint256","nodeType":"ElementaryTypeName","src":"4567:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4566:9:33"},"scope":8401,"src":"4504:136:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7579,"nodeType":"Block","src":"5038:153:33","statements":[{"assignments":[7562,7564],"declarations":[{"constant":false,"id":7562,"mutability":"mutable","name":"success","nameLocation":"5054:7:33","nodeType":"VariableDeclaration","scope":7579,"src":"5049:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7561,"name":"bool","nodeType":"ElementaryTypeName","src":"5049:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7564,"mutability":"mutable","name":"value","nameLocation":"5071:5:33","nodeType":"VariableDeclaration","scope":7579,"src":"5063:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7563,"name":"uint256","nodeType":"ElementaryTypeName","src":"5063:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7570,"initialValue":{"arguments":[{"id":7566,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7552,"src":"5093:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":7567,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7554,"src":"5100:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7568,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7556,"src":"5107:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7565,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[7601,7638],"referencedDeclaration":7638,"src":"5080:12:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":7569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5080:31:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"5048:63:33"},{"condition":{"id":7572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5125:8:33","subExpression":{"id":7571,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7562,"src":"5126:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7576,"nodeType":"IfStatement","src":"5121:41:33","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7573,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7228,"src":"5142:18:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":7574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5142:20:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7575,"nodeType":"RevertStatement","src":"5135:27:33"}},{"expression":{"id":7577,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7564,"src":"5179:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7560,"id":7578,"nodeType":"Return","src":"5172:12:33"}]},"documentation":{"id":7550,"nodeType":"StructuredDocumentation","src":"4646:287:33","text":" @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `[0-9]*`\n - The result must fit into an `uint256` type"},"id":7580,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"4947:9:33","nodeType":"FunctionDefinition","parameters":{"id":7557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7552,"mutability":"mutable","name":"input","nameLocation":"4971:5:33","nodeType":"VariableDeclaration","scope":7580,"src":"4957:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7551,"name":"string","nodeType":"ElementaryTypeName","src":"4957:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7554,"mutability":"mutable","name":"begin","nameLocation":"4986:5:33","nodeType":"VariableDeclaration","scope":7580,"src":"4978:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7553,"name":"uint256","nodeType":"ElementaryTypeName","src":"4978:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7556,"mutability":"mutable","name":"end","nameLocation":"5001:3:33","nodeType":"VariableDeclaration","scope":7580,"src":"4993:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7555,"name":"uint256","nodeType":"ElementaryTypeName","src":"4993:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4956:49:33"},"returnParameters":{"id":7560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7559,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7580,"src":"5029:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7558,"name":"uint256","nodeType":"ElementaryTypeName","src":"5029:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5028:9:33"},"scope":8401,"src":"4938:253:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7600,"nodeType":"Block","src":"5512:83:33","statements":[{"expression":{"arguments":[{"id":7591,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7583,"src":"5558:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5565:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7595,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7583,"src":"5574:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7594,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5568:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7593,"name":"bytes","nodeType":"ElementaryTypeName","src":"5568:5:33","typeDescriptions":{}}},"id":7596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5568:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5581:6:33","memberName":"length","nodeType":"MemberAccess","src":"5568:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7590,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7708,"src":"5529:28:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":7598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5529:59:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":7589,"id":7599,"nodeType":"Return","src":"5522:66:33"}]},"documentation":{"id":7581,"nodeType":"StructuredDocumentation","src":"5197:215:33","text":" @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":7601,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"5426:12:33","nodeType":"FunctionDefinition","parameters":{"id":7584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7583,"mutability":"mutable","name":"input","nameLocation":"5453:5:33","nodeType":"VariableDeclaration","scope":7601,"src":"5439:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7582,"name":"string","nodeType":"ElementaryTypeName","src":"5439:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5438:21:33"},"returnParameters":{"id":7589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7586,"mutability":"mutable","name":"success","nameLocation":"5488:7:33","nodeType":"VariableDeclaration","scope":7601,"src":"5483:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7585,"name":"bool","nodeType":"ElementaryTypeName","src":"5483:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7588,"mutability":"mutable","name":"value","nameLocation":"5505:5:33","nodeType":"VariableDeclaration","scope":7601,"src":"5497:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7587,"name":"uint256","nodeType":"ElementaryTypeName","src":"5497:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5482:29:33"},"scope":8401,"src":"5417:178:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7637,"nodeType":"Block","src":"5997:144:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7615,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7608,"src":"6011:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7618,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7604,"src":"6023:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7617,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6017:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7616,"name":"bytes","nodeType":"ElementaryTypeName","src":"6017:5:33","typeDescriptions":{}}},"id":7619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6017:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6030:6:33","memberName":"length","nodeType":"MemberAccess","src":"6017:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6011:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7622,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7606,"src":"6040:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":7623,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7608,"src":"6048:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6040:11:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6011:40:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7630,"nodeType":"IfStatement","src":"6007:63:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":7626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6061:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":7627,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6068:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7628,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6060:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7614,"id":7629,"nodeType":"Return","src":"6053:17:33"}},{"expression":{"arguments":[{"id":7632,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7604,"src":"6116:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":7633,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7606,"src":"6123:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7634,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7608,"src":"6130:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7631,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7708,"src":"6087:28:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":7635,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6087:47:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":7614,"id":7636,"nodeType":"Return","src":"6080:54:33"}]},"documentation":{"id":7602,"nodeType":"StructuredDocumentation","src":"5601:238:33","text":" @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":7638,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"5853:12:33","nodeType":"FunctionDefinition","parameters":{"id":7609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7604,"mutability":"mutable","name":"input","nameLocation":"5889:5:33","nodeType":"VariableDeclaration","scope":7638,"src":"5875:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7603,"name":"string","nodeType":"ElementaryTypeName","src":"5875:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7606,"mutability":"mutable","name":"begin","nameLocation":"5912:5:33","nodeType":"VariableDeclaration","scope":7638,"src":"5904:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7605,"name":"uint256","nodeType":"ElementaryTypeName","src":"5904:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7608,"mutability":"mutable","name":"end","nameLocation":"5935:3:33","nodeType":"VariableDeclaration","scope":7638,"src":"5927:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7607,"name":"uint256","nodeType":"ElementaryTypeName","src":"5927:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5865:79:33"},"returnParameters":{"id":7614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7611,"mutability":"mutable","name":"success","nameLocation":"5973:7:33","nodeType":"VariableDeclaration","scope":7638,"src":"5968:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7610,"name":"bool","nodeType":"ElementaryTypeName","src":"5968:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7613,"mutability":"mutable","name":"value","nameLocation":"5990:5:33","nodeType":"VariableDeclaration","scope":7638,"src":"5982:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7612,"name":"uint256","nodeType":"ElementaryTypeName","src":"5982:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5967:29:33"},"scope":8401,"src":"5844:297:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7707,"nodeType":"Block","src":"6521:347:33","statements":[{"assignments":[7653],"declarations":[{"constant":false,"id":7653,"mutability":"mutable","name":"buffer","nameLocation":"6544:6:33","nodeType":"VariableDeclaration","scope":7707,"src":"6531:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7652,"name":"bytes","nodeType":"ElementaryTypeName","src":"6531:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7658,"initialValue":{"arguments":[{"id":7656,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7641,"src":"6559:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7655,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6553:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7654,"name":"bytes","nodeType":"ElementaryTypeName","src":"6553:5:33","typeDescriptions":{}}},"id":7657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6553:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6531:34:33"},{"assignments":[7660],"declarations":[{"constant":false,"id":7660,"mutability":"mutable","name":"result","nameLocation":"6584:6:33","nodeType":"VariableDeclaration","scope":7707,"src":"6576:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7659,"name":"uint256","nodeType":"ElementaryTypeName","src":"6576:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7662,"initialValue":{"hexValue":"30","id":7661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6593:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6576:18:33"},{"body":{"id":7701,"nodeType":"Block","src":"6642:189:33","statements":[{"assignments":[7674],"declarations":[{"constant":false,"id":7674,"mutability":"mutable","name":"chr","nameLocation":"6662:3:33","nodeType":"VariableDeclaration","scope":7701,"src":"6656:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":7673,"name":"uint8","nodeType":"ElementaryTypeName","src":"6656:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":7684,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":7679,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7653,"src":"6711:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":7680,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7664,"src":"6719:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7678,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8400,"src":"6688:22:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":7681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6688:33:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":7677,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6681:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":7676,"name":"bytes1","nodeType":"ElementaryTypeName","src":"6681:6:33","typeDescriptions":{}}},"id":7682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6681:41:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":7675,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8388,"src":"6668:12:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":7683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6668:55:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"6656:67:33"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":7687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7685,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7674,"src":"6741:3:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":7686,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6747:1:33","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"6741:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7692,"nodeType":"IfStatement","src":"6737:30:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":7688,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6758:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":7689,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6765:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7690,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6757:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7651,"id":7691,"nodeType":"Return","src":"6750:17:33"}},{"expression":{"id":7695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7693,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7660,"src":"6781:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3130","id":7694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6791:2:33","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"6781:12:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7696,"nodeType":"ExpressionStatement","src":"6781:12:33"},{"expression":{"id":7699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7697,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7660,"src":"6807:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":7698,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7674,"src":"6817:3:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6807:13:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7700,"nodeType":"ExpressionStatement","src":"6807:13:33"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7667,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7664,"src":"6628:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":7668,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7645,"src":"6632:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6628:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7702,"initializationExpression":{"assignments":[7664],"declarations":[{"constant":false,"id":7664,"mutability":"mutable","name":"i","nameLocation":"6617:1:33","nodeType":"VariableDeclaration","scope":7702,"src":"6609:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7663,"name":"uint256","nodeType":"ElementaryTypeName","src":"6609:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7666,"initialValue":{"id":7665,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7643,"src":"6621:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6609:17:33"},"loopExpression":{"expression":{"id":7671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6637:3:33","subExpression":{"id":7670,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7664,"src":"6639:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7672,"nodeType":"ExpressionStatement","src":"6637:3:33"},"nodeType":"ForStatement","src":"6604:227:33"},{"expression":{"components":[{"hexValue":"74727565","id":7703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6848:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":7704,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7660,"src":"6854:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":7705,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6847:14:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":7651,"id":7706,"nodeType":"Return","src":"6840:21:33"}]},"documentation":{"id":7639,"nodeType":"StructuredDocumentation","src":"6147:201:33","text":" @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":7708,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseUintUncheckedBounds","nameLocation":"6362:28:33","nodeType":"FunctionDefinition","parameters":{"id":7646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7641,"mutability":"mutable","name":"input","nameLocation":"6414:5:33","nodeType":"VariableDeclaration","scope":7708,"src":"6400:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7640,"name":"string","nodeType":"ElementaryTypeName","src":"6400:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7643,"mutability":"mutable","name":"begin","nameLocation":"6437:5:33","nodeType":"VariableDeclaration","scope":7708,"src":"6429:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7642,"name":"uint256","nodeType":"ElementaryTypeName","src":"6429:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7645,"mutability":"mutable","name":"end","nameLocation":"6460:3:33","nodeType":"VariableDeclaration","scope":7708,"src":"6452:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7644,"name":"uint256","nodeType":"ElementaryTypeName","src":"6452:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6390:79:33"},"returnParameters":{"id":7651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7648,"mutability":"mutable","name":"success","nameLocation":"6497:7:33","nodeType":"VariableDeclaration","scope":7708,"src":"6492:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7647,"name":"bool","nodeType":"ElementaryTypeName","src":"6492:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7650,"mutability":"mutable","name":"value","nameLocation":"6514:5:33","nodeType":"VariableDeclaration","scope":7708,"src":"6506:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7649,"name":"uint256","nodeType":"ElementaryTypeName","src":"6506:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6491:29:33"},"scope":8401,"src":"6353:515:33","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":7726,"nodeType":"Block","src":"7165:63:33","statements":[{"expression":{"arguments":[{"id":7717,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7711,"src":"7191:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7718,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7198:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7721,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7711,"src":"7207:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7720,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7201:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7719,"name":"bytes","nodeType":"ElementaryTypeName","src":"7201:5:33","typeDescriptions":{}}},"id":7722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7201:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7214:6:33","memberName":"length","nodeType":"MemberAccess","src":"7201:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7716,"name":"parseInt","nodeType":"Identifier","overloadedDeclarations":[7727,7758],"referencedDeclaration":7758,"src":"7182:8:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (int256)"}},"id":7724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7182:39:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":7715,"id":7725,"nodeType":"Return","src":"7175:46:33"}]},"documentation":{"id":7709,"nodeType":"StructuredDocumentation","src":"6874:216:33","text":" @dev Parse a decimal string and returns the value as a `int256`.\n Requirements:\n - The string must be formatted as `[-+]?[0-9]*`\n - The result must fit in an `int256` type."},"id":7727,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7104:8:33","nodeType":"FunctionDefinition","parameters":{"id":7712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7711,"mutability":"mutable","name":"input","nameLocation":"7127:5:33","nodeType":"VariableDeclaration","scope":7727,"src":"7113:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7710,"name":"string","nodeType":"ElementaryTypeName","src":"7113:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7112:21:33"},"returnParameters":{"id":7715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7714,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7727,"src":"7157:6:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7713,"name":"int256","nodeType":"ElementaryTypeName","src":"7157:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7156:8:33"},"scope":8401,"src":"7095:133:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7757,"nodeType":"Block","src":"7633:151:33","statements":[{"assignments":[7740,7742],"declarations":[{"constant":false,"id":7740,"mutability":"mutable","name":"success","nameLocation":"7649:7:33","nodeType":"VariableDeclaration","scope":7757,"src":"7644:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7739,"name":"bool","nodeType":"ElementaryTypeName","src":"7644:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7742,"mutability":"mutable","name":"value","nameLocation":"7665:5:33","nodeType":"VariableDeclaration","scope":7757,"src":"7658:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7741,"name":"int256","nodeType":"ElementaryTypeName","src":"7658:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":7748,"initialValue":{"arguments":[{"id":7744,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7730,"src":"7686:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":7745,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7732,"src":"7693:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7746,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7734,"src":"7700:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7743,"name":"tryParseInt","nodeType":"Identifier","overloadedDeclarations":[7779,7821],"referencedDeclaration":7821,"src":"7674:11:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":7747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7674:30:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"nodeType":"VariableDeclarationStatement","src":"7643:61:33"},{"condition":{"id":7750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7718:8:33","subExpression":{"id":7749,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7740,"src":"7719:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7754,"nodeType":"IfStatement","src":"7714:41:33","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7751,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7228,"src":"7735:18:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":7752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7735:20:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7753,"nodeType":"RevertStatement","src":"7728:27:33"}},{"expression":{"id":7755,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7742,"src":"7772:5:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":7738,"id":7756,"nodeType":"Return","src":"7765:12:33"}]},"documentation":{"id":7728,"nodeType":"StructuredDocumentation","src":"7234:296:33","text":" @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `[-+]?[0-9]*`\n - The result must fit in an `int256` type."},"id":7758,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7544:8:33","nodeType":"FunctionDefinition","parameters":{"id":7735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7730,"mutability":"mutable","name":"input","nameLocation":"7567:5:33","nodeType":"VariableDeclaration","scope":7758,"src":"7553:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7729,"name":"string","nodeType":"ElementaryTypeName","src":"7553:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7732,"mutability":"mutable","name":"begin","nameLocation":"7582:5:33","nodeType":"VariableDeclaration","scope":7758,"src":"7574:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7731,"name":"uint256","nodeType":"ElementaryTypeName","src":"7574:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7734,"mutability":"mutable","name":"end","nameLocation":"7597:3:33","nodeType":"VariableDeclaration","scope":7758,"src":"7589:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7733,"name":"uint256","nodeType":"ElementaryTypeName","src":"7589:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7552:49:33"},"returnParameters":{"id":7738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7737,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7758,"src":"7625:6:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7736,"name":"int256","nodeType":"ElementaryTypeName","src":"7625:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7624:8:33"},"scope":8401,"src":"7535:249:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7778,"nodeType":"Block","src":"8175:82:33","statements":[{"expression":{"arguments":[{"id":7769,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7761,"src":"8220:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7770,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8227:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7773,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7761,"src":"8236:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7772,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8230:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7771,"name":"bytes","nodeType":"ElementaryTypeName","src":"8230:5:33","typeDescriptions":{}}},"id":7774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8230:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8243:6:33","memberName":"length","nodeType":"MemberAccess","src":"8230:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7768,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7942,"src":"8192:27:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":7776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8192:58:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":7767,"id":7777,"nodeType":"Return","src":"8185:65:33"}]},"documentation":{"id":7759,"nodeType":"StructuredDocumentation","src":"7790:287:33","text":" @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n the result does not fit in a `int256`.\n NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`."},"id":7779,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8091:11:33","nodeType":"FunctionDefinition","parameters":{"id":7762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7761,"mutability":"mutable","name":"input","nameLocation":"8117:5:33","nodeType":"VariableDeclaration","scope":7779,"src":"8103:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7760,"name":"string","nodeType":"ElementaryTypeName","src":"8103:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8102:21:33"},"returnParameters":{"id":7767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7764,"mutability":"mutable","name":"success","nameLocation":"8152:7:33","nodeType":"VariableDeclaration","scope":7779,"src":"8147:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7763,"name":"bool","nodeType":"ElementaryTypeName","src":"8147:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7766,"mutability":"mutable","name":"value","nameLocation":"8168:5:33","nodeType":"VariableDeclaration","scope":7779,"src":"8161:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7765,"name":"int256","nodeType":"ElementaryTypeName","src":"8161:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8146:28:33"},"scope":8401,"src":"8082:175:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":7784,"mutability":"constant","name":"ABS_MIN_INT256","nameLocation":"8288:14:33","nodeType":"VariableDeclaration","scope":8401,"src":"8263:50:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7780,"name":"uint256","nodeType":"ElementaryTypeName","src":"8263:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"},"id":7783,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":7781,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8305:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"323535","id":7782,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8310:3:33","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"8305:8:33","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"}},"visibility":"private"},{"body":{"id":7820,"nodeType":"Block","src":"8779:143:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7798,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7791,"src":"8793:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":7801,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7787,"src":"8805:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7800,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8799:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7799,"name":"bytes","nodeType":"ElementaryTypeName","src":"8799:5:33","typeDescriptions":{}}},"id":7802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8799:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8812:6:33","memberName":"length","nodeType":"MemberAccess","src":"8799:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8793:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7805,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7789,"src":"8822:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":7806,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7791,"src":"8830:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8822:11:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8793:40:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7813,"nodeType":"IfStatement","src":"8789:63:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":7809,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8843:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":7810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8850:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7811,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"8842:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7797,"id":7812,"nodeType":"Return","src":"8835:17:33"}},{"expression":{"arguments":[{"id":7815,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7787,"src":"8897:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":7816,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7789,"src":"8904:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7817,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7791,"src":"8911:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7814,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7942,"src":"8869:27:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":7818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8869:46:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":7797,"id":7819,"nodeType":"Return","src":"8862:53:33"}]},"documentation":{"id":7785,"nodeType":"StructuredDocumentation","src":"8320:303:33","text":" @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n character or if the result does not fit in a `int256`.\n NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`."},"id":7821,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8637:11:33","nodeType":"FunctionDefinition","parameters":{"id":7792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7787,"mutability":"mutable","name":"input","nameLocation":"8672:5:33","nodeType":"VariableDeclaration","scope":7821,"src":"8658:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7786,"name":"string","nodeType":"ElementaryTypeName","src":"8658:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7789,"mutability":"mutable","name":"begin","nameLocation":"8695:5:33","nodeType":"VariableDeclaration","scope":7821,"src":"8687:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7788,"name":"uint256","nodeType":"ElementaryTypeName","src":"8687:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7791,"mutability":"mutable","name":"end","nameLocation":"8718:3:33","nodeType":"VariableDeclaration","scope":7821,"src":"8710:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7790,"name":"uint256","nodeType":"ElementaryTypeName","src":"8710:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8648:79:33"},"returnParameters":{"id":7797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7794,"mutability":"mutable","name":"success","nameLocation":"8756:7:33","nodeType":"VariableDeclaration","scope":7821,"src":"8751:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7793,"name":"bool","nodeType":"ElementaryTypeName","src":"8751:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7796,"mutability":"mutable","name":"value","nameLocation":"8772:5:33","nodeType":"VariableDeclaration","scope":7821,"src":"8765:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7795,"name":"int256","nodeType":"ElementaryTypeName","src":"8765:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8750:28:33"},"scope":8401,"src":"8628:294:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7941,"nodeType":"Block","src":"9299:812:33","statements":[{"assignments":[7836],"declarations":[{"constant":false,"id":7836,"mutability":"mutable","name":"buffer","nameLocation":"9322:6:33","nodeType":"VariableDeclaration","scope":7941,"src":"9309:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7835,"name":"bytes","nodeType":"ElementaryTypeName","src":"9309:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7841,"initialValue":{"arguments":[{"id":7839,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7824,"src":"9337:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7838,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9331:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7837,"name":"bytes","nodeType":"ElementaryTypeName","src":"9331:5:33","typeDescriptions":{}}},"id":7840,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9331:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"9309:34:33"},{"assignments":[7843],"declarations":[{"constant":false,"id":7843,"mutability":"mutable","name":"sign","nameLocation":"9407:4:33","nodeType":"VariableDeclaration","scope":7941,"src":"9400:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":7842,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9400:6:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":7859,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7844,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7826,"src":"9414:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7845,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7828,"src":"9423:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9414:12:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"arguments":[{"id":7854,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7836,"src":"9471:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":7855,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7826,"src":"9479:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7853,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8400,"src":"9448:22:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":7856,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9448:37:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":7852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9441:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":7851,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9441:6:33","typeDescriptions":{}}},"id":7857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9441:45:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9414:72:33","trueExpression":{"arguments":[{"hexValue":"30","id":7849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9436:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":7848,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9429:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":7847,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9429:6:33","typeDescriptions":{}}},"id":7850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9429:9:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"9400:86:33"},{"assignments":[7861],"declarations":[{"constant":false,"id":7861,"mutability":"mutable","name":"positiveSign","nameLocation":"9572:12:33","nodeType":"VariableDeclaration","scope":7941,"src":"9567:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7860,"name":"bool","nodeType":"ElementaryTypeName","src":"9567:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":7868,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":7867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7862,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7843,"src":"9587:4:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2b","id":7865,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9602:3:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""},"value":"+"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""}],"id":7864,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9595:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":7863,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9595:6:33","typeDescriptions":{}}},"id":7866,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9595:11:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9587:19:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9567:39:33"},{"assignments":[7870],"declarations":[{"constant":false,"id":7870,"mutability":"mutable","name":"negativeSign","nameLocation":"9621:12:33","nodeType":"VariableDeclaration","scope":7941,"src":"9616:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7869,"name":"bool","nodeType":"ElementaryTypeName","src":"9616:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":7877,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":7876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7871,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7843,"src":"9636:4:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2d","id":7874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9651:3:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""}],"id":7873,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9644:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":7872,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9644:6:33","typeDescriptions":{}}},"id":7875,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9644:11:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9636:19:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9616:39:33"},{"assignments":[7879],"declarations":[{"constant":false,"id":7879,"mutability":"mutable","name":"offset","nameLocation":"9673:6:33","nodeType":"VariableDeclaration","scope":7941,"src":"9665:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7878,"name":"uint256","nodeType":"ElementaryTypeName","src":"9665:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7886,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7880,"name":"positiveSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7861,"src":"9683:12:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":7881,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7870,"src":"9699:12:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9683:28:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":7883,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9682:30:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9713:6:33","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"9682:37:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":7885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9682:39:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9665:56:33"},{"assignments":[7888,7890],"declarations":[{"constant":false,"id":7888,"mutability":"mutable","name":"absSuccess","nameLocation":"9738:10:33","nodeType":"VariableDeclaration","scope":7941,"src":"9733:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7887,"name":"bool","nodeType":"ElementaryTypeName","src":"9733:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7890,"mutability":"mutable","name":"absValue","nameLocation":"9758:8:33","nodeType":"VariableDeclaration","scope":7941,"src":"9750:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7889,"name":"uint256","nodeType":"ElementaryTypeName","src":"9750:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7898,"initialValue":{"arguments":[{"id":7892,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7824,"src":"9783:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7893,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7826,"src":"9790:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":7894,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7879,"src":"9798:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9790:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7896,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7828,"src":"9806:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7891,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[7601,7638],"referencedDeclaration":7638,"src":"9770:12:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":7897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9770:40:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"9732:78:33"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7899,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7888,"src":"9825:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7900,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7890,"src":"9839:8:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":7901,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7784,"src":"9850:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9839:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9825:39:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7919,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7888,"src":"9967:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":7920,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7870,"src":"9981:12:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9967:26:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7922,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7890,"src":"9997:8:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7923,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7784,"src":"10009:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9997:26:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9967:56:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"components":[{"hexValue":"66616c7365","id":7935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10095:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":7936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10102:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7937,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10094:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7834,"id":7938,"nodeType":"Return","src":"10087:17:33"},"id":7939,"nodeType":"IfStatement","src":"9963:141:33","trueBody":{"id":7934,"nodeType":"Block","src":"10025:56:33","statements":[{"expression":{"components":[{"hexValue":"74727565","id":7926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10047:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"arguments":[{"id":7929,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10058:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7928,"name":"int256","nodeType":"ElementaryTypeName","src":"10058:6:33","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":7927,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10053:4:33","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7930,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10053:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":7931,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10066:3:33","memberName":"min","nodeType":"MemberAccess","src":"10053:16:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7932,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10046:24:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":7834,"id":7933,"nodeType":"Return","src":"10039:31:33"}]}},"id":7940,"nodeType":"IfStatement","src":"9821:283:33","trueBody":{"id":7918,"nodeType":"Block","src":"9866:91:33","statements":[{"expression":{"components":[{"hexValue":"74727565","id":7904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9888:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"condition":{"id":7905,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7870,"src":"9894:12:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":7913,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7890,"src":"9936:8:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7912,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9929:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7911,"name":"int256","nodeType":"ElementaryTypeName","src":"9929:6:33","typeDescriptions":{}}},"id":7914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9929:16:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":7915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9894:51:33","trueExpression":{"id":7910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"9909:17:33","subExpression":{"arguments":[{"id":7908,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7890,"src":"9917:8:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7907,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9910:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7906,"name":"int256","nodeType":"ElementaryTypeName","src":"9910:6:33","typeDescriptions":{}}},"id":7909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9910:16:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7916,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9887:59:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":7834,"id":7917,"nodeType":"Return","src":"9880:66:33"}]}}]},"documentation":{"id":7822,"nodeType":"StructuredDocumentation","src":"8928:200:33","text":" @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":7942,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseIntUncheckedBounds","nameLocation":"9142:27:33","nodeType":"FunctionDefinition","parameters":{"id":7829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7824,"mutability":"mutable","name":"input","nameLocation":"9193:5:33","nodeType":"VariableDeclaration","scope":7942,"src":"9179:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7823,"name":"string","nodeType":"ElementaryTypeName","src":"9179:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7826,"mutability":"mutable","name":"begin","nameLocation":"9216:5:33","nodeType":"VariableDeclaration","scope":7942,"src":"9208:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7825,"name":"uint256","nodeType":"ElementaryTypeName","src":"9208:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7828,"mutability":"mutable","name":"end","nameLocation":"9239:3:33","nodeType":"VariableDeclaration","scope":7942,"src":"9231:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7827,"name":"uint256","nodeType":"ElementaryTypeName","src":"9231:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9169:79:33"},"returnParameters":{"id":7834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7831,"mutability":"mutable","name":"success","nameLocation":"9276:7:33","nodeType":"VariableDeclaration","scope":7942,"src":"9271:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7830,"name":"bool","nodeType":"ElementaryTypeName","src":"9271:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7833,"mutability":"mutable","name":"value","nameLocation":"9292:5:33","nodeType":"VariableDeclaration","scope":7942,"src":"9285:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7832,"name":"int256","nodeType":"ElementaryTypeName","src":"9285:6:33","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9270:28:33"},"scope":8401,"src":"9133:978:33","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":7960,"nodeType":"Block","src":"10456:67:33","statements":[{"expression":{"arguments":[{"id":7951,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7945,"src":"10486:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7952,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10493:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7955,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7945,"src":"10502:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7954,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10496:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7953,"name":"bytes","nodeType":"ElementaryTypeName","src":"10496:5:33","typeDescriptions":{}}},"id":7956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10496:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10509:6:33","memberName":"length","nodeType":"MemberAccess","src":"10496:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7950,"name":"parseHexUint","nodeType":"Identifier","overloadedDeclarations":[7961,7992],"referencedDeclaration":7992,"src":"10473:12:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (uint256)"}},"id":7958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10473:43:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7949,"id":7959,"nodeType":"Return","src":"10466:50:33"}]},"documentation":{"id":7943,"nodeType":"StructuredDocumentation","src":"10117:259:33","text":" @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n Requirements:\n - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":7961,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"10390:12:33","nodeType":"FunctionDefinition","parameters":{"id":7946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7945,"mutability":"mutable","name":"input","nameLocation":"10417:5:33","nodeType":"VariableDeclaration","scope":7961,"src":"10403:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7944,"name":"string","nodeType":"ElementaryTypeName","src":"10403:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10402:21:33"},"returnParameters":{"id":7949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7948,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7961,"src":"10447:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7947,"name":"uint256","nodeType":"ElementaryTypeName","src":"10447:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10446:9:33"},"scope":8401,"src":"10381:142:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7991,"nodeType":"Block","src":"10937:156:33","statements":[{"assignments":[7974,7976],"declarations":[{"constant":false,"id":7974,"mutability":"mutable","name":"success","nameLocation":"10953:7:33","nodeType":"VariableDeclaration","scope":7991,"src":"10948:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7973,"name":"bool","nodeType":"ElementaryTypeName","src":"10948:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7976,"mutability":"mutable","name":"value","nameLocation":"10970:5:33","nodeType":"VariableDeclaration","scope":7991,"src":"10962:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7975,"name":"uint256","nodeType":"ElementaryTypeName","src":"10962:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7982,"initialValue":{"arguments":[{"id":7978,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7964,"src":"10995:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":7979,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7966,"src":"11002:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7980,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7968,"src":"11009:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7977,"name":"tryParseHexUint","nodeType":"Identifier","overloadedDeclarations":[8013,8050],"referencedDeclaration":8050,"src":"10979:15:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":7981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10979:34:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"10947:66:33"},{"condition":{"id":7984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11027:8:33","subExpression":{"id":7983,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7974,"src":"11028:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7988,"nodeType":"IfStatement","src":"11023:41:33","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7985,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7228,"src":"11044:18:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":7986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11044:20:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7987,"nodeType":"RevertStatement","src":"11037:27:33"}},{"expression":{"id":7989,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7976,"src":"11081:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7972,"id":7990,"nodeType":"Return","src":"11074:12:33"}]},"documentation":{"id":7962,"nodeType":"StructuredDocumentation","src":"10529:300:33","text":" @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":7992,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"10843:12:33","nodeType":"FunctionDefinition","parameters":{"id":7969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7964,"mutability":"mutable","name":"input","nameLocation":"10870:5:33","nodeType":"VariableDeclaration","scope":7992,"src":"10856:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7963,"name":"string","nodeType":"ElementaryTypeName","src":"10856:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7966,"mutability":"mutable","name":"begin","nameLocation":"10885:5:33","nodeType":"VariableDeclaration","scope":7992,"src":"10877:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7965,"name":"uint256","nodeType":"ElementaryTypeName","src":"10877:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7968,"mutability":"mutable","name":"end","nameLocation":"10900:3:33","nodeType":"VariableDeclaration","scope":7992,"src":"10892:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7967,"name":"uint256","nodeType":"ElementaryTypeName","src":"10892:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10855:49:33"},"returnParameters":{"id":7972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7971,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7992,"src":"10928:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7970,"name":"uint256","nodeType":"ElementaryTypeName","src":"10928:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10927:9:33"},"scope":8401,"src":"10834:259:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8012,"nodeType":"Block","src":"11420:86:33","statements":[{"expression":{"arguments":[{"id":8003,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7995,"src":"11469:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11476:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8007,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7995,"src":"11485:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8006,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11479:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8005,"name":"bytes","nodeType":"ElementaryTypeName","src":"11479:5:33","typeDescriptions":{}}},"id":8008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11479:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11492:6:33","memberName":"length","nodeType":"MemberAccess","src":"11479:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8002,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8153,"src":"11437:31:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8010,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11437:62:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8001,"id":8011,"nodeType":"Return","src":"11430:69:33"}]},"documentation":{"id":7993,"nodeType":"StructuredDocumentation","src":"11099:218:33","text":" @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":8013,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"11331:15:33","nodeType":"FunctionDefinition","parameters":{"id":7996,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7995,"mutability":"mutable","name":"input","nameLocation":"11361:5:33","nodeType":"VariableDeclaration","scope":8013,"src":"11347:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7994,"name":"string","nodeType":"ElementaryTypeName","src":"11347:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11346:21:33"},"returnParameters":{"id":8001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7998,"mutability":"mutable","name":"success","nameLocation":"11396:7:33","nodeType":"VariableDeclaration","scope":8013,"src":"11391:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7997,"name":"bool","nodeType":"ElementaryTypeName","src":"11391:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8000,"mutability":"mutable","name":"value","nameLocation":"11413:5:33","nodeType":"VariableDeclaration","scope":8013,"src":"11405:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7999,"name":"uint256","nodeType":"ElementaryTypeName","src":"11405:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11390:29:33"},"scope":8401,"src":"11322:184:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8049,"nodeType":"Block","src":"11914:147:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8027,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8020,"src":"11928:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":8030,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8016,"src":"11940:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8029,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11934:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8028,"name":"bytes","nodeType":"ElementaryTypeName","src":"11934:5:33","typeDescriptions":{}}},"id":8031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11934:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11947:6:33","memberName":"length","nodeType":"MemberAccess","src":"11934:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11928:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8034,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8018,"src":"11957:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8035,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8020,"src":"11965:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11957:11:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11928:40:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8042,"nodeType":"IfStatement","src":"11924:63:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11978:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11985:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8040,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11977:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8026,"id":8041,"nodeType":"Return","src":"11970:17:33"}},{"expression":{"arguments":[{"id":8044,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8016,"src":"12036:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8045,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8018,"src":"12043:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8046,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8020,"src":"12050:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8043,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8153,"src":"12004:31:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12004:50:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8026,"id":8048,"nodeType":"Return","src":"11997:57:33"}]},"documentation":{"id":8014,"nodeType":"StructuredDocumentation","src":"11512:241:33","text":" @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":8050,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"11767:15:33","nodeType":"FunctionDefinition","parameters":{"id":8021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8016,"mutability":"mutable","name":"input","nameLocation":"11806:5:33","nodeType":"VariableDeclaration","scope":8050,"src":"11792:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8015,"name":"string","nodeType":"ElementaryTypeName","src":"11792:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8018,"mutability":"mutable","name":"begin","nameLocation":"11829:5:33","nodeType":"VariableDeclaration","scope":8050,"src":"11821:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8017,"name":"uint256","nodeType":"ElementaryTypeName","src":"11821:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8020,"mutability":"mutable","name":"end","nameLocation":"11852:3:33","nodeType":"VariableDeclaration","scope":8050,"src":"11844:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8019,"name":"uint256","nodeType":"ElementaryTypeName","src":"11844:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11782:79:33"},"returnParameters":{"id":8026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8023,"mutability":"mutable","name":"success","nameLocation":"11890:7:33","nodeType":"VariableDeclaration","scope":8050,"src":"11885:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8022,"name":"bool","nodeType":"ElementaryTypeName","src":"11885:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8025,"mutability":"mutable","name":"value","nameLocation":"11907:5:33","nodeType":"VariableDeclaration","scope":8050,"src":"11899:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8024,"name":"uint256","nodeType":"ElementaryTypeName","src":"11899:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11884:29:33"},"scope":8401,"src":"11758:303:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8152,"nodeType":"Block","src":"12447:880:33","statements":[{"assignments":[8065],"declarations":[{"constant":false,"id":8065,"mutability":"mutable","name":"buffer","nameLocation":"12470:6:33","nodeType":"VariableDeclaration","scope":8152,"src":"12457:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8064,"name":"bytes","nodeType":"ElementaryTypeName","src":"12457:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":8070,"initialValue":{"arguments":[{"id":8068,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8053,"src":"12485:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12479:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8066,"name":"bytes","nodeType":"ElementaryTypeName","src":"12479:5:33","typeDescriptions":{}}},"id":8069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12479:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"12457:34:33"},{"assignments":[8072],"declarations":[{"constant":false,"id":8072,"mutability":"mutable","name":"hasPrefix","nameLocation":"12544:9:33","nodeType":"VariableDeclaration","scope":8152,"src":"12539:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8071,"name":"bool","nodeType":"ElementaryTypeName","src":"12539:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":8092,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8073,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8057,"src":"12557:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8074,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8055,"src":"12563:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":8075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12571:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12563:9:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12557:15:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8078,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12556:17:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":8090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":8082,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8065,"src":"12607:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8083,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8055,"src":"12615:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8081,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8400,"src":"12584:22:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12584:37:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8080,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12577:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8079,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12577:6:33","typeDescriptions":{}}},"id":8085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12577:45:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":8088,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12633:4:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":8087,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12626:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8086,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12626:6:33","typeDescriptions":{}}},"id":8089,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12626:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"12577:61:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12556:82:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"12539:99:33"},{"assignments":[8094],"declarations":[{"constant":false,"id":8094,"mutability":"mutable","name":"offset","nameLocation":"12727:6:33","nodeType":"VariableDeclaration","scope":8152,"src":"12719:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8093,"name":"uint256","nodeType":"ElementaryTypeName","src":"12719:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8100,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8095,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8072,"src":"12736:9:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12746:6:33","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"12736:16:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":8097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12736:18:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":8098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12757:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"12736:22:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12719:39:33"},{"assignments":[8102],"declarations":[{"constant":false,"id":8102,"mutability":"mutable","name":"result","nameLocation":"12777:6:33","nodeType":"VariableDeclaration","scope":8152,"src":"12769:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8101,"name":"uint256","nodeType":"ElementaryTypeName","src":"12769:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8104,"initialValue":{"hexValue":"30","id":8103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12786:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"12769:18:33"},{"body":{"id":8146,"nodeType":"Block","src":"12844:446:33","statements":[{"assignments":[8118],"declarations":[{"constant":false,"id":8118,"mutability":"mutable","name":"chr","nameLocation":"12864:3:33","nodeType":"VariableDeclaration","scope":8146,"src":"12858:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8117,"name":"uint8","nodeType":"ElementaryTypeName","src":"12858:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8128,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":8123,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8065,"src":"12913:6:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8124,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"12921:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8122,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8400,"src":"12890:22:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12890:33:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8121,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12883:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":8120,"name":"bytes1","nodeType":"ElementaryTypeName","src":"12883:6:33","typeDescriptions":{}}},"id":8126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12883:41:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":8119,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8388,"src":"12870:12:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":8127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12870:55:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"12858:67:33"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8129,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8118,"src":"12943:3:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3135","id":8130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12949:2:33","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"12943:8:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8136,"nodeType":"IfStatement","src":"12939:31:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12961:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12968:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8134,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"12960:10:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8063,"id":8135,"nodeType":"Return","src":"12953:17:33"}},{"expression":{"id":8139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8137,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8102,"src":"12984:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3136","id":8138,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12994:2:33","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"12984:12:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8140,"nodeType":"ExpressionStatement","src":"12984:12:33"},{"id":8145,"nodeType":"UncheckedBlock","src":"13010:270:33","statements":[{"expression":{"id":8143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8141,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8102,"src":"13252:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":8142,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8118,"src":"13262:3:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13252:13:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8144,"nodeType":"ExpressionStatement","src":"13252:13:33"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8111,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"12830:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":8112,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8057,"src":"12834:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12830:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8147,"initializationExpression":{"assignments":[8106],"declarations":[{"constant":false,"id":8106,"mutability":"mutable","name":"i","nameLocation":"12810:1:33","nodeType":"VariableDeclaration","scope":8147,"src":"12802:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8105,"name":"uint256","nodeType":"ElementaryTypeName","src":"12802:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8110,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8107,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8055,"src":"12814:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":8108,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"12822:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12814:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12802:26:33"},"loopExpression":{"expression":{"id":8115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"12839:3:33","subExpression":{"id":8114,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"12841:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8116,"nodeType":"ExpressionStatement","src":"12839:3:33"},"nodeType":"ForStatement","src":"12797:493:33"},{"expression":{"components":[{"hexValue":"74727565","id":8148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13307:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":8149,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8102,"src":"13313:6:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8150,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13306:14:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8063,"id":8151,"nodeType":"Return","src":"13299:21:33"}]},"documentation":{"id":8051,"nodeType":"StructuredDocumentation","src":"12067:204:33","text":" @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":8153,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseHexUintUncheckedBounds","nameLocation":"12285:31:33","nodeType":"FunctionDefinition","parameters":{"id":8058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8053,"mutability":"mutable","name":"input","nameLocation":"12340:5:33","nodeType":"VariableDeclaration","scope":8153,"src":"12326:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8052,"name":"string","nodeType":"ElementaryTypeName","src":"12326:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8055,"mutability":"mutable","name":"begin","nameLocation":"12363:5:33","nodeType":"VariableDeclaration","scope":8153,"src":"12355:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8054,"name":"uint256","nodeType":"ElementaryTypeName","src":"12355:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8057,"mutability":"mutable","name":"end","nameLocation":"12386:3:33","nodeType":"VariableDeclaration","scope":8153,"src":"12378:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8056,"name":"uint256","nodeType":"ElementaryTypeName","src":"12378:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12316:79:33"},"returnParameters":{"id":8063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8060,"mutability":"mutable","name":"success","nameLocation":"12423:7:33","nodeType":"VariableDeclaration","scope":8153,"src":"12418:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8059,"name":"bool","nodeType":"ElementaryTypeName","src":"12418:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8062,"mutability":"mutable","name":"value","nameLocation":"12440:5:33","nodeType":"VariableDeclaration","scope":8153,"src":"12432:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8061,"name":"uint256","nodeType":"ElementaryTypeName","src":"12432:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12417:29:33"},"scope":8401,"src":"12276:1051:33","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":8171,"nodeType":"Block","src":"13625:67:33","statements":[{"expression":{"arguments":[{"id":8162,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8156,"src":"13655:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13662:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8166,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8156,"src":"13671:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8165,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13665:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8164,"name":"bytes","nodeType":"ElementaryTypeName","src":"13665:5:33","typeDescriptions":{}}},"id":8167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13665:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13678:6:33","memberName":"length","nodeType":"MemberAccess","src":"13665:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8161,"name":"parseAddress","nodeType":"Identifier","overloadedDeclarations":[8172,8203],"referencedDeclaration":8203,"src":"13642:12:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (address)"}},"id":8169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13642:43:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8160,"id":8170,"nodeType":"Return","src":"13635:50:33"}]},"documentation":{"id":8154,"nodeType":"StructuredDocumentation","src":"13333:212:33","text":" @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n Requirements:\n - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`"},"id":8172,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"13559:12:33","nodeType":"FunctionDefinition","parameters":{"id":8157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8156,"mutability":"mutable","name":"input","nameLocation":"13586:5:33","nodeType":"VariableDeclaration","scope":8172,"src":"13572:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8155,"name":"string","nodeType":"ElementaryTypeName","src":"13572:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"13571:21:33"},"returnParameters":{"id":8160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8159,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8172,"src":"13616:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8158,"name":"address","nodeType":"ElementaryTypeName","src":"13616:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13615:9:33"},"scope":8401,"src":"13550:142:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8202,"nodeType":"Block","src":"14058:165:33","statements":[{"assignments":[8185,8187],"declarations":[{"constant":false,"id":8185,"mutability":"mutable","name":"success","nameLocation":"14074:7:33","nodeType":"VariableDeclaration","scope":8202,"src":"14069:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8184,"name":"bool","nodeType":"ElementaryTypeName","src":"14069:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8187,"mutability":"mutable","name":"value","nameLocation":"14091:5:33","nodeType":"VariableDeclaration","scope":8202,"src":"14083:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8186,"name":"address","nodeType":"ElementaryTypeName","src":"14083:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8193,"initialValue":{"arguments":[{"id":8189,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8175,"src":"14116:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8190,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8177,"src":"14123:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8191,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8179,"src":"14130:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8188,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[8224,8328],"referencedDeclaration":8328,"src":"14100:15:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":8192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14100:34:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"14068:66:33"},{"condition":{"id":8195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14148:8:33","subExpression":{"id":8194,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8185,"src":"14149:7:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8199,"nodeType":"IfStatement","src":"14144:50:33","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8196,"name":"StringsInvalidAddressFormat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7231,"src":"14165:27:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":8197,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14165:29:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8198,"nodeType":"RevertStatement","src":"14158:36:33"}},{"expression":{"id":8200,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8187,"src":"14211:5:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8183,"id":8201,"nodeType":"Return","src":"14204:12:33"}]},"documentation":{"id":8173,"nodeType":"StructuredDocumentation","src":"13698:252:33","text":" @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`"},"id":8203,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"13964:12:33","nodeType":"FunctionDefinition","parameters":{"id":8180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8175,"mutability":"mutable","name":"input","nameLocation":"13991:5:33","nodeType":"VariableDeclaration","scope":8203,"src":"13977:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8174,"name":"string","nodeType":"ElementaryTypeName","src":"13977:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8177,"mutability":"mutable","name":"begin","nameLocation":"14006:5:33","nodeType":"VariableDeclaration","scope":8203,"src":"13998:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8176,"name":"uint256","nodeType":"ElementaryTypeName","src":"13998:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8179,"mutability":"mutable","name":"end","nameLocation":"14021:3:33","nodeType":"VariableDeclaration","scope":8203,"src":"14013:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8178,"name":"uint256","nodeType":"ElementaryTypeName","src":"14013:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13976:49:33"},"returnParameters":{"id":8183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8203,"src":"14049:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8181,"name":"address","nodeType":"ElementaryTypeName","src":"14049:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14048:9:33"},"scope":8401,"src":"13955:268:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8223,"nodeType":"Block","src":"14523:70:33","statements":[{"expression":{"arguments":[{"id":8214,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8206,"src":"14556:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14563:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8218,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8206,"src":"14572:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8217,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14566:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8216,"name":"bytes","nodeType":"ElementaryTypeName","src":"14566:5:33","typeDescriptions":{}}},"id":8219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14566:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14579:6:33","memberName":"length","nodeType":"MemberAccess","src":"14566:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8213,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[8224,8328],"referencedDeclaration":8328,"src":"14540:15:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":8221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14540:46:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8212,"id":8222,"nodeType":"Return","src":"14533:53:33"}]},"documentation":{"id":8204,"nodeType":"StructuredDocumentation","src":"14229:191:33","text":" @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n formatted address. See {parseAddress} requirements."},"id":8224,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"14434:15:33","nodeType":"FunctionDefinition","parameters":{"id":8207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8206,"mutability":"mutable","name":"input","nameLocation":"14464:5:33","nodeType":"VariableDeclaration","scope":8224,"src":"14450:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8205,"name":"string","nodeType":"ElementaryTypeName","src":"14450:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14449:21:33"},"returnParameters":{"id":8212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8209,"mutability":"mutable","name":"success","nameLocation":"14499:7:33","nodeType":"VariableDeclaration","scope":8224,"src":"14494:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8208,"name":"bool","nodeType":"ElementaryTypeName","src":"14494:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8211,"mutability":"mutable","name":"value","nameLocation":"14516:5:33","nodeType":"VariableDeclaration","scope":8224,"src":"14508:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8210,"name":"address","nodeType":"ElementaryTypeName","src":"14508:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14493:29:33"},"scope":8401,"src":"14425:168:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8327,"nodeType":"Block","src":"14963:733:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8238,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8231,"src":"14977:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":8241,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8227,"src":"14989:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8240,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14983:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8239,"name":"bytes","nodeType":"ElementaryTypeName","src":"14983:5:33","typeDescriptions":{}}},"id":8242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14983:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14996:6:33","memberName":"length","nodeType":"MemberAccess","src":"14983:19:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14977:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8245,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8229,"src":"15006:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8246,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8231,"src":"15014:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15006:11:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14977:40:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8256,"nodeType":"IfStatement","src":"14973:72:33","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15027:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":8252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15042:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15034:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8250,"name":"address","nodeType":"ElementaryTypeName","src":"15034:7:33","typeDescriptions":{}}},"id":8253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15034:10:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":8254,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15026:19:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8237,"id":8255,"nodeType":"Return","src":"15019:26:33"}},{"assignments":[8258],"declarations":[{"constant":false,"id":8258,"mutability":"mutable","name":"hasPrefix","nameLocation":"15061:9:33","nodeType":"VariableDeclaration","scope":8327,"src":"15056:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8257,"name":"bool","nodeType":"ElementaryTypeName","src":"15056:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":8281,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8259,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8231,"src":"15074:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8260,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8229,"src":"15080:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":8261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15088:1:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"15080:9:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15074:15:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8264,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15073:17:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":8279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":8270,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8227,"src":"15130:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8269,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15124:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8268,"name":"bytes","nodeType":"ElementaryTypeName","src":"15124:5:33","typeDescriptions":{}}},"id":8271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15124:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8272,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8229,"src":"15138:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8267,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8400,"src":"15101:22:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15101:43:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8266,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15094:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8265,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15094:6:33","typeDescriptions":{}}},"id":8274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15094:51:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":8277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15156:4:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":8276,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15149:6:33","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8275,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15149:6:33","typeDescriptions":{}}},"id":8278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15149:12:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"15094:67:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15073:88:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"15056:105:33"},{"assignments":[8283],"declarations":[{"constant":false,"id":8283,"mutability":"mutable","name":"expectedLength","nameLocation":"15250:14:33","nodeType":"VariableDeclaration","scope":8327,"src":"15242:22:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8282,"name":"uint256","nodeType":"ElementaryTypeName","src":"15242:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8291,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3430","id":8284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15267:2:33","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8285,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8258,"src":"15272:9:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15282:6:33","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"15272:16:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":8287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15272:18:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":8288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15293:1:33","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15272:22:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15267:27:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15242:52:33"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8292,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8231,"src":"15359:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":8293,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8229,"src":"15365:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15359:11:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8295,"name":"expectedLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8283,"src":"15374:14:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15359:29:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8325,"nodeType":"Block","src":"15639:51:33","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":8318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15661:5:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":8321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15676:1:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8320,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15668:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8319,"name":"address","nodeType":"ElementaryTypeName","src":"15668:7:33","typeDescriptions":{}}},"id":8322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15668:10:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":8323,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15660:19:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8237,"id":8324,"nodeType":"Return","src":"15653:26:33"}]},"id":8326,"nodeType":"IfStatement","src":"15355:335:33","trueBody":{"id":8317,"nodeType":"Block","src":"15390:243:33","statements":[{"assignments":[8298,8300],"declarations":[{"constant":false,"id":8298,"mutability":"mutable","name":"s","nameLocation":"15511:1:33","nodeType":"VariableDeclaration","scope":8317,"src":"15506:6:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8297,"name":"bool","nodeType":"ElementaryTypeName","src":"15506:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8300,"mutability":"mutable","name":"v","nameLocation":"15522:1:33","nodeType":"VariableDeclaration","scope":8317,"src":"15514:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8299,"name":"uint256","nodeType":"ElementaryTypeName","src":"15514:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8306,"initialValue":{"arguments":[{"id":8302,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8227,"src":"15559:5:33","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8303,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8229,"src":"15566:5:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8304,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8231,"src":"15573:3:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8301,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8153,"src":"15527:31:33","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15527:50:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"15505:72:33"},{"expression":{"components":[{"id":8307,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8298,"src":"15599:1:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":8312,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8300,"src":"15618:1:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15610:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":8310,"name":"uint160","nodeType":"ElementaryTypeName","src":"15610:7:33","typeDescriptions":{}}},"id":8313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15610:10:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":8309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15602:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8308,"name":"address","nodeType":"ElementaryTypeName","src":"15602:7:33","typeDescriptions":{}}},"id":8314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15602:19:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":8315,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15598:24:33","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8237,"id":8316,"nodeType":"Return","src":"15591:31:33"}]}}]},"documentation":{"id":8225,"nodeType":"StructuredDocumentation","src":"14599:203:33","text":" @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n formatted address. See {parseAddress} requirements."},"id":8328,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"14816:15:33","nodeType":"FunctionDefinition","parameters":{"id":8232,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8227,"mutability":"mutable","name":"input","nameLocation":"14855:5:33","nodeType":"VariableDeclaration","scope":8328,"src":"14841:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8226,"name":"string","nodeType":"ElementaryTypeName","src":"14841:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8229,"mutability":"mutable","name":"begin","nameLocation":"14878:5:33","nodeType":"VariableDeclaration","scope":8328,"src":"14870:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8228,"name":"uint256","nodeType":"ElementaryTypeName","src":"14870:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8231,"mutability":"mutable","name":"end","nameLocation":"14901:3:33","nodeType":"VariableDeclaration","scope":8328,"src":"14893:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8230,"name":"uint256","nodeType":"ElementaryTypeName","src":"14893:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14831:79:33"},"returnParameters":{"id":8237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8234,"mutability":"mutable","name":"success","nameLocation":"14939:7:33","nodeType":"VariableDeclaration","scope":8328,"src":"14934:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8233,"name":"bool","nodeType":"ElementaryTypeName","src":"14934:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8236,"mutability":"mutable","name":"value","nameLocation":"14956:5:33","nodeType":"VariableDeclaration","scope":8328,"src":"14948:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8235,"name":"address","nodeType":"ElementaryTypeName","src":"14948:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14933:29:33"},"scope":8401,"src":"14807:889:33","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8387,"nodeType":"Block","src":"15765:461:33","statements":[{"assignments":[8336],"declarations":[{"constant":false,"id":8336,"mutability":"mutable","name":"value","nameLocation":"15781:5:33","nodeType":"VariableDeclaration","scope":8387,"src":"15775:11:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8335,"name":"uint8","nodeType":"ElementaryTypeName","src":"15775:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8341,"initialValue":{"arguments":[{"id":8339,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8330,"src":"15795:3:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":8338,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15789:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8337,"name":"uint8","nodeType":"ElementaryTypeName","src":"15789:5:33","typeDescriptions":{}}},"id":8340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15789:10:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"15775:24:33"},{"id":8384,"nodeType":"UncheckedBlock","src":"15959:238:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8342,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"15987:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3437","id":8343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15995:2:33","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"src":"15987:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8345,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16001:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3538","id":8346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16009:2:33","typeDescriptions":{"typeIdentifier":"t_rational_58_by_1","typeString":"int_const 58"},"value":"58"},"src":"16001:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15987:24:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8353,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16047:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":8354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16055:2:33","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"16047:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8356,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16061:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313033","id":8357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16069:3:33","typeDescriptions":{"typeIdentifier":"t_rational_103_by_1","typeString":"int_const 103"},"value":"103"},"src":"16061:11:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16047:25:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8364,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16108:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3634","id":8365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16116:2:33","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"16108:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8367,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16122:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3731","id":8368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16130:2:33","typeDescriptions":{"typeIdentifier":"t_rational_71_by_1","typeString":"int_const 71"},"value":"71"},"src":"16122:10:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16108:24:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"expression":{"arguments":[{"id":8377,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16176:5:33","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8376,"name":"uint8","nodeType":"ElementaryTypeName","src":"16176:5:33","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":8375,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16171:4:33","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16171:11:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":8379,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16183:3:33","memberName":"max","nodeType":"MemberAccess","src":"16171:15:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":8334,"id":8380,"nodeType":"Return","src":"16164:22:33"},"id":8381,"nodeType":"IfStatement","src":"16104:82:33","trueBody":{"expression":{"id":8373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8371,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16134:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3535","id":8372,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16143:2:33","typeDescriptions":{"typeIdentifier":"t_rational_55_by_1","typeString":"int_const 55"},"value":"55"},"src":"16134:11:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":8374,"nodeType":"ExpressionStatement","src":"16134:11:33"}},"id":8382,"nodeType":"IfStatement","src":"16043:143:33","trueBody":{"expression":{"id":8362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8360,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16074:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3837","id":8361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16083:2:33","typeDescriptions":{"typeIdentifier":"t_rational_87_by_1","typeString":"int_const 87"},"value":"87"},"src":"16074:11:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":8363,"nodeType":"ExpressionStatement","src":"16074:11:33"}},"id":8383,"nodeType":"IfStatement","src":"15983:203:33","trueBody":{"expression":{"id":8351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8349,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16013:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3438","id":8350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16022:2:33","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"16013:11:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":8352,"nodeType":"ExpressionStatement","src":"16013:11:33"}}]},{"expression":{"id":8385,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"16214:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":8334,"id":8386,"nodeType":"Return","src":"16207:12:33"}]},"id":8388,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseChr","nameLocation":"15711:12:33","nodeType":"FunctionDefinition","parameters":{"id":8331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8330,"mutability":"mutable","name":"chr","nameLocation":"15731:3:33","nodeType":"VariableDeclaration","scope":8388,"src":"15724:10:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":8329,"name":"bytes1","nodeType":"ElementaryTypeName","src":"15724:6:33","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"15723:12:33"},"returnParameters":{"id":8334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8333,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8388,"src":"15758:5:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8332,"name":"uint8","nodeType":"ElementaryTypeName","src":"15758:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"15757:7:33"},"scope":8401,"src":"15702:524:33","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":8399,"nodeType":"Block","src":"16611:225:33","statements":[{"AST":{"nodeType":"YulBlock","src":"16760:70:33","statements":[{"nodeType":"YulAssignment","src":"16774:46:33","value":{"arguments":[{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"16793:6:33"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16805:4:33","type":"","value":"0x20"},{"name":"offset","nodeType":"YulIdentifier","src":"16811:6:33"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16801:3:33"},"nodeType":"YulFunctionCall","src":"16801:17:33"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16789:3:33"},"nodeType":"YulFunctionCall","src":"16789:30:33"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16783:5:33"},"nodeType":"YulFunctionCall","src":"16783:37:33"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"16774:5:33"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":8391,"isOffset":false,"isSlot":false,"src":"16793:6:33","valueSize":1},{"declaration":8393,"isOffset":false,"isSlot":false,"src":"16811:6:33","valueSize":1},{"declaration":8396,"isOffset":false,"isSlot":false,"src":"16774:5:33","valueSize":1}],"flags":["memory-safe"],"id":8398,"nodeType":"InlineAssembly","src":"16735:95:33"}]},"documentation":{"id":8389,"nodeType":"StructuredDocumentation","src":"16232:268:33","text":" @dev Reads a bytes32 from a bytes array without bounds checking.\n NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n assembly block as such would prevent some optimizations."},"id":8400,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"16514:22:33","nodeType":"FunctionDefinition","parameters":{"id":8394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8391,"mutability":"mutable","name":"buffer","nameLocation":"16550:6:33","nodeType":"VariableDeclaration","scope":8400,"src":"16537:19:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8390,"name":"bytes","nodeType":"ElementaryTypeName","src":"16537:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":8393,"mutability":"mutable","name":"offset","nameLocation":"16566:6:33","nodeType":"VariableDeclaration","scope":8400,"src":"16558:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8392,"name":"uint256","nodeType":"ElementaryTypeName","src":"16558:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16536:37:33"},"returnParameters":{"id":8397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8396,"mutability":"mutable","name":"value","nameLocation":"16604:5:33","nodeType":"VariableDeclaration","scope":8400,"src":"16596:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8395,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16596:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16595:15:33"},"scope":8401,"src":"16505:331:33","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":8402,"src":"297:16541:33","usedErrors":[7225,7228,7231],"usedEvents":[]}],"src":"101:16738:33"},"id":33},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","exportedSymbols":{"ECDSA":[8749]},"id":8750,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8403,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:34"},{"abstract":false,"baseContracts":[],"canonicalName":"ECDSA","contractDependencies":[],"contractKind":"library","documentation":{"id":8404,"nodeType":"StructuredDocumentation","src":"138:205:34","text":" @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n These functions can be used to verify that a message was signed by the holder\n of the private keys of a given address."},"fullyImplemented":true,"id":8749,"linearizedBaseContracts":[8749],"name":"ECDSA","nameLocation":"352:5:34","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ECDSA.RecoverError","id":8409,"members":[{"id":8405,"name":"NoError","nameLocation":"392:7:34","nodeType":"EnumValue","src":"392:7:34"},{"id":8406,"name":"InvalidSignature","nameLocation":"409:16:34","nodeType":"EnumValue","src":"409:16:34"},{"id":8407,"name":"InvalidSignatureLength","nameLocation":"435:22:34","nodeType":"EnumValue","src":"435:22:34"},{"id":8408,"name":"InvalidSignatureS","nameLocation":"467:17:34","nodeType":"EnumValue","src":"467:17:34"}],"name":"RecoverError","nameLocation":"369:12:34","nodeType":"EnumDefinition","src":"364:126:34"},{"documentation":{"id":8410,"nodeType":"StructuredDocumentation","src":"496:63:34","text":" @dev The signature derives the `address(0)`."},"errorSelector":"f645eedf","id":8412,"name":"ECDSAInvalidSignature","nameLocation":"570:21:34","nodeType":"ErrorDefinition","parameters":{"id":8411,"nodeType":"ParameterList","parameters":[],"src":"591:2:34"},"src":"564:30:34"},{"documentation":{"id":8413,"nodeType":"StructuredDocumentation","src":"600:60:34","text":" @dev The signature has an invalid length."},"errorSelector":"fce698f7","id":8417,"name":"ECDSAInvalidSignatureLength","nameLocation":"671:27:34","nodeType":"ErrorDefinition","parameters":{"id":8416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8415,"mutability":"mutable","name":"length","nameLocation":"707:6:34","nodeType":"VariableDeclaration","scope":8417,"src":"699:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8414,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"698:16:34"},"src":"665:50:34"},{"documentation":{"id":8418,"nodeType":"StructuredDocumentation","src":"721:85:34","text":" @dev The signature has an S value that is in the upper half order."},"errorSelector":"d78bce0c","id":8422,"name":"ECDSAInvalidSignatureS","nameLocation":"817:22:34","nodeType":"ErrorDefinition","parameters":{"id":8421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8420,"mutability":"mutable","name":"s","nameLocation":"848:1:34","nodeType":"VariableDeclaration","scope":8422,"src":"840:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8419,"name":"bytes32","nodeType":"ElementaryTypeName","src":"840:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"839:11:34"},"src":"811:40:34"},{"body":{"id":8474,"nodeType":"Block","src":"2285:622:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8437,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8427,"src":"2299:9:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2309:6:34","memberName":"length","nodeType":"MemberAccess","src":"2299:16:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":8439,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2319:2:34","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"2299:22:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8472,"nodeType":"Block","src":"2793:108:34","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":8461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2823:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8460,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2815:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8459,"name":"address","nodeType":"ElementaryTypeName","src":"2815:7:34","typeDescriptions":{}}},"id":8462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2815:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":8463,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"2827:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8464,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2840:22:34","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":8407,"src":"2827:35:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"expression":{"id":8467,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8427,"src":"2872:9:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2882:6:34","memberName":"length","nodeType":"MemberAccess","src":"2872:16:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2864:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8465,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2864:7:34","typeDescriptions":{}}},"id":8469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2864:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":8470,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2814:76:34","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8436,"id":8471,"nodeType":"Return","src":"2807:83:34"}]},"id":8473,"nodeType":"IfStatement","src":"2295:606:34","trueBody":{"id":8458,"nodeType":"Block","src":"2323:464:34","statements":[{"assignments":[8442],"declarations":[{"constant":false,"id":8442,"mutability":"mutable","name":"r","nameLocation":"2345:1:34","nodeType":"VariableDeclaration","scope":8458,"src":"2337:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8441,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2337:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8443,"nodeType":"VariableDeclarationStatement","src":"2337:9:34"},{"assignments":[8445],"declarations":[{"constant":false,"id":8445,"mutability":"mutable","name":"s","nameLocation":"2368:1:34","nodeType":"VariableDeclaration","scope":8458,"src":"2360:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8444,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2360:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8446,"nodeType":"VariableDeclarationStatement","src":"2360:9:34"},{"assignments":[8448],"declarations":[{"constant":false,"id":8448,"mutability":"mutable","name":"v","nameLocation":"2389:1:34","nodeType":"VariableDeclaration","scope":8458,"src":"2383:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8447,"name":"uint8","nodeType":"ElementaryTypeName","src":"2383:5:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8449,"nodeType":"VariableDeclarationStatement","src":"2383:7:34"},{"AST":{"nodeType":"YulBlock","src":"2560:171:34","statements":[{"nodeType":"YulAssignment","src":"2578:32:34","value":{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2593:9:34"},{"kind":"number","nodeType":"YulLiteral","src":"2604:4:34","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2589:3:34"},"nodeType":"YulFunctionCall","src":"2589:20:34"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2583:5:34"},"nodeType":"YulFunctionCall","src":"2583:27:34"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"2578:1:34"}]},{"nodeType":"YulAssignment","src":"2627:32:34","value":{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2642:9:34"},{"kind":"number","nodeType":"YulLiteral","src":"2653:4:34","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2638:3:34"},"nodeType":"YulFunctionCall","src":"2638:20:34"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2632:5:34"},"nodeType":"YulFunctionCall","src":"2632:27:34"},"variableNames":[{"name":"s","nodeType":"YulIdentifier","src":"2627:1:34"}]},{"nodeType":"YulAssignment","src":"2676:41:34","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2686:1:34","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2699:9:34"},{"kind":"number","nodeType":"YulLiteral","src":"2710:4:34","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2695:3:34"},"nodeType":"YulFunctionCall","src":"2695:20:34"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2689:5:34"},"nodeType":"YulFunctionCall","src":"2689:27:34"}],"functionName":{"name":"byte","nodeType":"YulIdentifier","src":"2681:4:34"},"nodeType":"YulFunctionCall","src":"2681:36:34"},"variableNames":[{"name":"v","nodeType":"YulIdentifier","src":"2676:1:34"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":8442,"isOffset":false,"isSlot":false,"src":"2578:1:34","valueSize":1},{"declaration":8445,"isOffset":false,"isSlot":false,"src":"2627:1:34","valueSize":1},{"declaration":8427,"isOffset":false,"isSlot":false,"src":"2593:9:34","valueSize":1},{"declaration":8427,"isOffset":false,"isSlot":false,"src":"2642:9:34","valueSize":1},{"declaration":8427,"isOffset":false,"isSlot":false,"src":"2699:9:34","valueSize":1},{"declaration":8448,"isOffset":false,"isSlot":false,"src":"2676:1:34","valueSize":1}],"flags":["memory-safe"],"id":8450,"nodeType":"InlineAssembly","src":"2535:196:34"},{"expression":{"arguments":[{"id":8452,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8425,"src":"2762:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8453,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8448,"src":"2768:1:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":8454,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8442,"src":"2771:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8455,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8445,"src":"2774:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8451,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[8475,8555,8663],"referencedDeclaration":8663,"src":"2751:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":8456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2751:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8436,"id":8457,"nodeType":"Return","src":"2744:32:34"}]}}]},"documentation":{"id":8423,"nodeType":"StructuredDocumentation","src":"857:1267:34","text":" @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\n return address(0) without also returning an error description. Errors are documented using an enum (error type)\n and a bytes32 providing additional information about the error.\n If no error is returned, then the address can be used for verification purposes.\n The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n Documentation for signature generation:\n - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]"},"id":8475,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"2138:10:34","nodeType":"FunctionDefinition","parameters":{"id":8428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8425,"mutability":"mutable","name":"hash","nameLocation":"2166:4:34","nodeType":"VariableDeclaration","scope":8475,"src":"2158:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8424,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2158:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8427,"mutability":"mutable","name":"signature","nameLocation":"2193:9:34","nodeType":"VariableDeclaration","scope":8475,"src":"2180:22:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8426,"name":"bytes","nodeType":"ElementaryTypeName","src":"2180:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2148:60:34"},"returnParameters":{"id":8436,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8430,"mutability":"mutable","name":"recovered","nameLocation":"2240:9:34","nodeType":"VariableDeclaration","scope":8475,"src":"2232:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8429,"name":"address","nodeType":"ElementaryTypeName","src":"2232:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8433,"mutability":"mutable","name":"err","nameLocation":"2264:3:34","nodeType":"VariableDeclaration","scope":8475,"src":"2251:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8432,"nodeType":"UserDefinedTypeName","pathNode":{"id":8431,"name":"RecoverError","nameLocations":["2251:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"2251:12:34"},"referencedDeclaration":8409,"src":"2251:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8435,"mutability":"mutable","name":"errArg","nameLocation":"2277:6:34","nodeType":"VariableDeclaration","scope":8475,"src":"2269:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8434,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2269:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2231:53:34"},"scope":8749,"src":"2129:778:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8504,"nodeType":"Block","src":"3801:168:34","statements":[{"assignments":[8486,8489,8491],"declarations":[{"constant":false,"id":8486,"mutability":"mutable","name":"recovered","nameLocation":"3820:9:34","nodeType":"VariableDeclaration","scope":8504,"src":"3812:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8485,"name":"address","nodeType":"ElementaryTypeName","src":"3812:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8489,"mutability":"mutable","name":"error","nameLocation":"3844:5:34","nodeType":"VariableDeclaration","scope":8504,"src":"3831:18:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8488,"nodeType":"UserDefinedTypeName","pathNode":{"id":8487,"name":"RecoverError","nameLocations":["3831:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"3831:12:34"},"referencedDeclaration":8409,"src":"3831:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8491,"mutability":"mutable","name":"errorArg","nameLocation":"3859:8:34","nodeType":"VariableDeclaration","scope":8504,"src":"3851:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8490,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3851:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8496,"initialValue":{"arguments":[{"id":8493,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8478,"src":"3882:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8494,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8480,"src":"3888:9:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8492,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[8475,8555,8663],"referencedDeclaration":8475,"src":"3871:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":8495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3871:27:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"3811:87:34"},{"expression":{"arguments":[{"id":8498,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8489,"src":"3920:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"id":8499,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8491,"src":"3927:8:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8497,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8748,"src":"3908:11:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$8409_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":8500,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3908:28:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8501,"nodeType":"ExpressionStatement","src":"3908:28:34"},{"expression":{"id":8502,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8486,"src":"3953:9:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8484,"id":8503,"nodeType":"Return","src":"3946:16:34"}]},"documentation":{"id":8476,"nodeType":"StructuredDocumentation","src":"2913:796:34","text":" @dev Returns the address that signed a hashed message (`hash`) with\n `signature`. This address can then be used for verification purposes.\n The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it."},"id":8505,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"3723:7:34","nodeType":"FunctionDefinition","parameters":{"id":8481,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8478,"mutability":"mutable","name":"hash","nameLocation":"3739:4:34","nodeType":"VariableDeclaration","scope":8505,"src":"3731:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8477,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3731:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8480,"mutability":"mutable","name":"signature","nameLocation":"3758:9:34","nodeType":"VariableDeclaration","scope":8505,"src":"3745:22:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8479,"name":"bytes","nodeType":"ElementaryTypeName","src":"3745:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3730:38:34"},"returnParameters":{"id":8484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8483,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8505,"src":"3792:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8482,"name":"address","nodeType":"ElementaryTypeName","src":"3792:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3791:9:34"},"scope":8749,"src":"3714:255:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8554,"nodeType":"Block","src":"4348:342:34","statements":[{"id":8553,"nodeType":"UncheckedBlock","src":"4358:326:34","statements":[{"assignments":[8523],"declarations":[{"constant":false,"id":8523,"mutability":"mutable","name":"s","nameLocation":"4390:1:34","nodeType":"VariableDeclaration","scope":8553,"src":"4382:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8522,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4382:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8530,"initialValue":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":8529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8524,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8512,"src":"4394:2:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"arguments":[{"hexValue":"307837666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":8527,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4407:66:34","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819967_by_1","typeString":"int_const 5789...(69 digits omitted)...9967"},"value":"0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819967_by_1","typeString":"int_const 5789...(69 digits omitted)...9967"}],"id":8526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4399:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8525,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4399:7:34","typeDescriptions":{}}},"id":8528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4399:75:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4394:80:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"4382:92:34"},{"assignments":[8532],"declarations":[{"constant":false,"id":8532,"mutability":"mutable","name":"v","nameLocation":"4591:1:34","nodeType":"VariableDeclaration","scope":8553,"src":"4585:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8531,"name":"uint8","nodeType":"ElementaryTypeName","src":"4585:5:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8545,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8537,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8512,"src":"4610:2:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4602:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8535,"name":"uint256","nodeType":"ElementaryTypeName","src":"4602:7:34","typeDescriptions":{}}},"id":8538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4602:11:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":8539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4617:3:34","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"4602:18:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8541,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4601:20:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3237","id":8542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4624:2:34","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"4601:25:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8534,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4595:5:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8533,"name":"uint8","nodeType":"ElementaryTypeName","src":"4595:5:34","typeDescriptions":{}}},"id":8544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4595:32:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"4585:42:34"},{"expression":{"arguments":[{"id":8547,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8508,"src":"4659:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8548,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8532,"src":"4665:1:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":8549,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8510,"src":"4668:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8550,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8523,"src":"4671:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8546,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[8475,8555,8663],"referencedDeclaration":8663,"src":"4648:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":8551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4648:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8521,"id":8552,"nodeType":"Return","src":"4641:32:34"}]}]},"documentation":{"id":8506,"nodeType":"StructuredDocumentation","src":"3975:205:34","text":" @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]"},"id":8555,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"4194:10:34","nodeType":"FunctionDefinition","parameters":{"id":8513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8508,"mutability":"mutable","name":"hash","nameLocation":"4222:4:34","nodeType":"VariableDeclaration","scope":8555,"src":"4214:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8507,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4214:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8510,"mutability":"mutable","name":"r","nameLocation":"4244:1:34","nodeType":"VariableDeclaration","scope":8555,"src":"4236:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8509,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4236:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8512,"mutability":"mutable","name":"vs","nameLocation":"4263:2:34","nodeType":"VariableDeclaration","scope":8555,"src":"4255:10:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8511,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4255:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4204:67:34"},"returnParameters":{"id":8521,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8515,"mutability":"mutable","name":"recovered","nameLocation":"4303:9:34","nodeType":"VariableDeclaration","scope":8555,"src":"4295:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8514,"name":"address","nodeType":"ElementaryTypeName","src":"4295:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8518,"mutability":"mutable","name":"err","nameLocation":"4327:3:34","nodeType":"VariableDeclaration","scope":8555,"src":"4314:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8517,"nodeType":"UserDefinedTypeName","pathNode":{"id":8516,"name":"RecoverError","nameLocations":["4314:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"4314:12:34"},"referencedDeclaration":8409,"src":"4314:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8520,"mutability":"mutable","name":"errArg","nameLocation":"4340:6:34","nodeType":"VariableDeclaration","scope":8555,"src":"4332:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8519,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4332:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4294:53:34"},"scope":8749,"src":"4185:505:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8587,"nodeType":"Block","src":"4903:164:34","statements":[{"assignments":[8568,8571,8573],"declarations":[{"constant":false,"id":8568,"mutability":"mutable","name":"recovered","nameLocation":"4922:9:34","nodeType":"VariableDeclaration","scope":8587,"src":"4914:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8567,"name":"address","nodeType":"ElementaryTypeName","src":"4914:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8571,"mutability":"mutable","name":"error","nameLocation":"4946:5:34","nodeType":"VariableDeclaration","scope":8587,"src":"4933:18:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8570,"nodeType":"UserDefinedTypeName","pathNode":{"id":8569,"name":"RecoverError","nameLocations":["4933:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"4933:12:34"},"referencedDeclaration":8409,"src":"4933:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8573,"mutability":"mutable","name":"errorArg","nameLocation":"4961:8:34","nodeType":"VariableDeclaration","scope":8587,"src":"4953:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8572,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4953:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8579,"initialValue":{"arguments":[{"id":8575,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8558,"src":"4984:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8576,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8560,"src":"4990:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8577,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8562,"src":"4993:2:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8574,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[8475,8555,8663],"referencedDeclaration":8555,"src":"4973:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":8578,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4973:23:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"4913:83:34"},{"expression":{"arguments":[{"id":8581,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8571,"src":"5018:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"id":8582,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8573,"src":"5025:8:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8580,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8748,"src":"5006:11:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$8409_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":8583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5006:28:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8584,"nodeType":"ExpressionStatement","src":"5006:28:34"},{"expression":{"id":8585,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8568,"src":"5051:9:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8566,"id":8586,"nodeType":"Return","src":"5044:16:34"}]},"documentation":{"id":8556,"nodeType":"StructuredDocumentation","src":"4696:116:34","text":" @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately."},"id":8588,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"4826:7:34","nodeType":"FunctionDefinition","parameters":{"id":8563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8558,"mutability":"mutable","name":"hash","nameLocation":"4842:4:34","nodeType":"VariableDeclaration","scope":8588,"src":"4834:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8557,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4834:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8560,"mutability":"mutable","name":"r","nameLocation":"4856:1:34","nodeType":"VariableDeclaration","scope":8588,"src":"4848:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8559,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4848:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8562,"mutability":"mutable","name":"vs","nameLocation":"4867:2:34","nodeType":"VariableDeclaration","scope":8588,"src":"4859:10:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8561,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4859:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4833:37:34"},"returnParameters":{"id":8566,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8565,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8588,"src":"4894:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8564,"name":"address","nodeType":"ElementaryTypeName","src":"4894:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4893:9:34"},"scope":8749,"src":"4817:250:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8662,"nodeType":"Block","src":"5382:1372:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8609,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8597,"src":"6278:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8608,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6270:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8607,"name":"uint256","nodeType":"ElementaryTypeName","src":"6270:7:34","typeDescriptions":{}}},"id":8610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6270:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":8611,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6283:66:34","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"6270:79:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8623,"nodeType":"IfStatement","src":"6266:164:34","trueBody":{"id":8622,"nodeType":"Block","src":"6351:79:34","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":8615,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6381:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8614,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6373:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8613,"name":"address","nodeType":"ElementaryTypeName","src":"6373:7:34","typeDescriptions":{}}},"id":8616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6373:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":8617,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"6385:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8618,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6398:17:34","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":8408,"src":"6385:30:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"id":8619,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8597,"src":"6417:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":8620,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6372:47:34","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8606,"id":8621,"nodeType":"Return","src":"6365:54:34"}]}},{"assignments":[8625],"declarations":[{"constant":false,"id":8625,"mutability":"mutable","name":"signer","nameLocation":"6532:6:34","nodeType":"VariableDeclaration","scope":8662,"src":"6524:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8624,"name":"address","nodeType":"ElementaryTypeName","src":"6524:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8632,"initialValue":{"arguments":[{"id":8627,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8591,"src":"6551:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8628,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8593,"src":"6557:1:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":8629,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8595,"src":"6560:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8630,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8597,"src":"6563:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8626,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"6541:9:34","typeDescriptions":{"typeIdentifier":"t_function_ecrecover_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address)"}},"id":8631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6541:24:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6524:41:34"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8633,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8625,"src":"6579:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":8636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6597:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8635,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6589:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8634,"name":"address","nodeType":"ElementaryTypeName","src":"6589:7:34","typeDescriptions":{}}},"id":8637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6589:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6579:20:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8652,"nodeType":"IfStatement","src":"6575:113:34","trueBody":{"id":8651,"nodeType":"Block","src":"6601:87:34","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":8641,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6631:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8640,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6623:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8639,"name":"address","nodeType":"ElementaryTypeName","src":"6623:7:34","typeDescriptions":{}}},"id":8642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6623:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":8643,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"6635:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8644,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6648:16:34","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":8406,"src":"6635:29:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":8647,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6674:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8646,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6666:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8645,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6666:7:34","typeDescriptions":{}}},"id":8648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6666:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":8649,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6622:55:34","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8606,"id":8650,"nodeType":"Return","src":"6615:62:34"}]}},{"expression":{"components":[{"id":8653,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8625,"src":"6706:6:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":8654,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"6714:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8655,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6727:7:34","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"6714:20:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":8658,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6744:1:34","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8657,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6736:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8656,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6736:7:34","typeDescriptions":{}}},"id":8659,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6736:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":8660,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6705:42:34","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":8606,"id":8661,"nodeType":"Return","src":"6698:49:34"}]},"documentation":{"id":8589,"nodeType":"StructuredDocumentation","src":"5073:125:34","text":" @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":8663,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"5212:10:34","nodeType":"FunctionDefinition","parameters":{"id":8598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8591,"mutability":"mutable","name":"hash","nameLocation":"5240:4:34","nodeType":"VariableDeclaration","scope":8663,"src":"5232:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8590,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5232:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8593,"mutability":"mutable","name":"v","nameLocation":"5260:1:34","nodeType":"VariableDeclaration","scope":8663,"src":"5254:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8592,"name":"uint8","nodeType":"ElementaryTypeName","src":"5254:5:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":8595,"mutability":"mutable","name":"r","nameLocation":"5279:1:34","nodeType":"VariableDeclaration","scope":8663,"src":"5271:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8594,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5271:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8597,"mutability":"mutable","name":"s","nameLocation":"5298:1:34","nodeType":"VariableDeclaration","scope":8663,"src":"5290:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8596,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5290:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5222:83:34"},"returnParameters":{"id":8606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8600,"mutability":"mutable","name":"recovered","nameLocation":"5337:9:34","nodeType":"VariableDeclaration","scope":8663,"src":"5329:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8599,"name":"address","nodeType":"ElementaryTypeName","src":"5329:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8603,"mutability":"mutable","name":"err","nameLocation":"5361:3:34","nodeType":"VariableDeclaration","scope":8663,"src":"5348:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8602,"nodeType":"UserDefinedTypeName","pathNode":{"id":8601,"name":"RecoverError","nameLocations":["5348:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"5348:12:34"},"referencedDeclaration":8409,"src":"5348:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8605,"mutability":"mutable","name":"errArg","nameLocation":"5374:6:34","nodeType":"VariableDeclaration","scope":8663,"src":"5366:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8604,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5366:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5328:53:34"},"scope":8749,"src":"5203:1551:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8698,"nodeType":"Block","src":"6981:166:34","statements":[{"assignments":[8678,8681,8683],"declarations":[{"constant":false,"id":8678,"mutability":"mutable","name":"recovered","nameLocation":"7000:9:34","nodeType":"VariableDeclaration","scope":8698,"src":"6992:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8677,"name":"address","nodeType":"ElementaryTypeName","src":"6992:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8681,"mutability":"mutable","name":"error","nameLocation":"7024:5:34","nodeType":"VariableDeclaration","scope":8698,"src":"7011:18:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8680,"nodeType":"UserDefinedTypeName","pathNode":{"id":8679,"name":"RecoverError","nameLocations":["7011:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"7011:12:34"},"referencedDeclaration":8409,"src":"7011:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8683,"mutability":"mutable","name":"errorArg","nameLocation":"7039:8:34","nodeType":"VariableDeclaration","scope":8698,"src":"7031:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8682,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7031:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8690,"initialValue":{"arguments":[{"id":8685,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8666,"src":"7062:4:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8686,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8668,"src":"7068:1:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":8687,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8670,"src":"7071:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8688,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8672,"src":"7074:1:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8684,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[8475,8555,8663],"referencedDeclaration":8663,"src":"7051:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":8689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7051:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"6991:85:34"},{"expression":{"arguments":[{"id":8692,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8681,"src":"7098:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},{"id":8693,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8683,"src":"7105:8:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8691,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8748,"src":"7086:11:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$8409_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":8694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7086:28:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8695,"nodeType":"ExpressionStatement","src":"7086:28:34"},{"expression":{"id":8696,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8678,"src":"7131:9:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8676,"id":8697,"nodeType":"Return","src":"7124:16:34"}]},"documentation":{"id":8664,"nodeType":"StructuredDocumentation","src":"6760:122:34","text":" @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":8699,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"6896:7:34","nodeType":"FunctionDefinition","parameters":{"id":8673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8666,"mutability":"mutable","name":"hash","nameLocation":"6912:4:34","nodeType":"VariableDeclaration","scope":8699,"src":"6904:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8665,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6904:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8668,"mutability":"mutable","name":"v","nameLocation":"6924:1:34","nodeType":"VariableDeclaration","scope":8699,"src":"6918:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8667,"name":"uint8","nodeType":"ElementaryTypeName","src":"6918:5:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":8670,"mutability":"mutable","name":"r","nameLocation":"6935:1:34","nodeType":"VariableDeclaration","scope":8699,"src":"6927:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8669,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6927:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8672,"mutability":"mutable","name":"s","nameLocation":"6946:1:34","nodeType":"VariableDeclaration","scope":8699,"src":"6938:9:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8671,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6938:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6903:45:34"},"returnParameters":{"id":8676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8675,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8699,"src":"6972:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8674,"name":"address","nodeType":"ElementaryTypeName","src":"6972:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6971:9:34"},"scope":8749,"src":"6887:260:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8747,"nodeType":"Block","src":"7352:460:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"id":8711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8708,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8703,"src":"7366:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8709,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"7375:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8710,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7388:7:34","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"7375:20:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"src":"7366:29:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"id":8717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8714,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8703,"src":"7462:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8715,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"7471:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8716,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7484:16:34","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":8406,"src":"7471:29:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"src":"7462:38:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"id":8725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8722,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8703,"src":"7567:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8723,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"7576:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8724,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7589:22:34","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":8407,"src":"7576:35:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"src":"7567:44:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"id":8737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8734,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8703,"src":"7701:5:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8735,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8409,"src":"7710:12:34","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":8736,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7723:17:34","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":8408,"src":"7710:30:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"src":"7701:39:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8743,"nodeType":"IfStatement","src":"7697:109:34","trueBody":{"id":8742,"nodeType":"Block","src":"7742:64:34","statements":[{"errorCall":{"arguments":[{"id":8739,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8705,"src":"7786:8:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8738,"name":"ECDSAInvalidSignatureS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8422,"src":"7763:22:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$__$","typeString":"function (bytes32) pure"}},"id":8740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7763:32:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8741,"nodeType":"RevertStatement","src":"7756:39:34"}]}},"id":8744,"nodeType":"IfStatement","src":"7563:243:34","trueBody":{"id":8733,"nodeType":"Block","src":"7613:78:34","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":8729,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8705,"src":"7670:8:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8728,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7662:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8727,"name":"uint256","nodeType":"ElementaryTypeName","src":"7662:7:34","typeDescriptions":{}}},"id":8730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7662:17:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8726,"name":"ECDSAInvalidSignatureLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8417,"src":"7634:27:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":8731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7634:46:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8732,"nodeType":"RevertStatement","src":"7627:53:34"}]}},"id":8745,"nodeType":"IfStatement","src":"7458:348:34","trueBody":{"id":8721,"nodeType":"Block","src":"7502:55:34","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8718,"name":"ECDSAInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8412,"src":"7523:21:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":8719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7523:23:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8720,"nodeType":"RevertStatement","src":"7516:30:34"}]}},"id":8746,"nodeType":"IfStatement","src":"7362:444:34","trueBody":{"id":8713,"nodeType":"Block","src":"7397:55:34","statements":[{"functionReturnParameters":8707,"id":8712,"nodeType":"Return","src":"7411:7:34"}]}}]},"documentation":{"id":8700,"nodeType":"StructuredDocumentation","src":"7153:122:34","text":" @dev Optionally reverts with the corresponding custom error according to the `error` argument provided."},"id":8748,"implemented":true,"kind":"function","modifiers":[],"name":"_throwError","nameLocation":"7289:11:34","nodeType":"FunctionDefinition","parameters":{"id":8706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8703,"mutability":"mutable","name":"error","nameLocation":"7314:5:34","nodeType":"VariableDeclaration","scope":8748,"src":"7301:18:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":8702,"nodeType":"UserDefinedTypeName","pathNode":{"id":8701,"name":"RecoverError","nameLocations":["7301:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"7301:12:34"},"referencedDeclaration":8409,"src":"7301:12:34","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":8705,"mutability":"mutable","name":"errorArg","nameLocation":"7329:8:34","nodeType":"VariableDeclaration","scope":8748,"src":"7321:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8704,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7321:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7300:38:34"},"returnParameters":{"id":8707,"nodeType":"ParameterList","parameters":[],"src":"7352:0:34"},"scope":8749,"src":"7280:532:34","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":8750,"src":"344:7470:34","usedErrors":[8412,8417,8422],"usedEvents":[]}],"src":"112:7703:34"},"id":34},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","exportedSymbols":{"EIP712":[8976],"IERC5267":[5346],"MessageHashUtils":[9050],"ShortString":[6866],"ShortStrings":[7077]},"id":8977,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8751,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:35"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"./MessageHashUtils.sol","id":8753,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8977,"sourceUnit":9051,"src":"139:56:35","symbolAliases":[{"foreign":{"id":8752,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9050,"src":"147:16:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/ShortStrings.sol","file":"../ShortStrings.sol","id":8756,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8977,"sourceUnit":7078,"src":"196:62:35","symbolAliases":[{"foreign":{"id":8754,"name":"ShortStrings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7077,"src":"204:12:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8755,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6866,"src":"218:11:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","file":"../../interfaces/IERC5267.sol","id":8758,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8977,"sourceUnit":5347,"src":"259:55:35","symbolAliases":[{"foreign":{"id":8757,"name":"IERC5267","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5346,"src":"267:8:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":8760,"name":"IERC5267","nameLocations":["1988:8:35"],"nodeType":"IdentifierPath","referencedDeclaration":5346,"src":"1988:8:35"},"id":8761,"nodeType":"InheritanceSpecifier","src":"1988:8:35"}],"canonicalName":"EIP712","contractDependencies":[],"contractKind":"contract","documentation":{"id":8759,"nodeType":"StructuredDocumentation","src":"316:1643:35","text":" @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data.\n The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose\n encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract\n does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to\n produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.\n This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n ({_hashTypedDataV4}).\n The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n the chain id to protect against replay attacks on an eventual fork of the chain.\n NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain\n separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the\n separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\n @custom:oz-upgrades-unsafe-allow state-variable-immutable"},"fullyImplemented":true,"id":8976,"linearizedBaseContracts":[8976,5346],"name":"EIP712","nameLocation":"1978:6:35","nodeType":"ContractDefinition","nodes":[{"global":false,"id":8763,"libraryName":{"id":8762,"name":"ShortStrings","nameLocations":["2009:12:35"],"nodeType":"IdentifierPath","referencedDeclaration":7077,"src":"2009:12:35"},"nodeType":"UsingForDirective","src":"2003:25:35"},{"constant":true,"id":8768,"mutability":"constant","name":"TYPE_HASH","nameLocation":"2059:9:35","nodeType":"VariableDeclaration","scope":8976,"src":"2034:140:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8764,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2034:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429","id":8766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2089:84:35","typeDescriptions":{"typeIdentifier":"t_stringliteral_8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f","typeString":"literal_string \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\""},"value":"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f","typeString":"literal_string \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\""}],"id":8765,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2079:9:35","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2079:95:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":8770,"mutability":"immutable","name":"_cachedDomainSeparator","nameLocation":"2399:22:35","nodeType":"VariableDeclaration","scope":8976,"src":"2373:48:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8769,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2373:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":8772,"mutability":"immutable","name":"_cachedChainId","nameLocation":"2453:14:35","nodeType":"VariableDeclaration","scope":8976,"src":"2427:40:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8771,"name":"uint256","nodeType":"ElementaryTypeName","src":"2427:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":8774,"mutability":"immutable","name":"_cachedThis","nameLocation":"2499:11:35","nodeType":"VariableDeclaration","scope":8976,"src":"2473:37:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8773,"name":"address","nodeType":"ElementaryTypeName","src":"2473:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"constant":false,"id":8776,"mutability":"immutable","name":"_hashedName","nameLocation":"2543:11:35","nodeType":"VariableDeclaration","scope":8976,"src":"2517:37:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8775,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2517:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":8778,"mutability":"immutable","name":"_hashedVersion","nameLocation":"2586:14:35","nodeType":"VariableDeclaration","scope":8976,"src":"2560:40:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8777,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2560:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":8781,"mutability":"immutable","name":"_name","nameLocation":"2637:5:35","nodeType":"VariableDeclaration","scope":8976,"src":"2607:35:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":8780,"nodeType":"UserDefinedTypeName","pathNode":{"id":8779,"name":"ShortString","nameLocations":["2607:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"2607:11:35"},"referencedDeclaration":6866,"src":"2607:11:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"private"},{"constant":false,"id":8784,"mutability":"immutable","name":"_version","nameLocation":"2678:8:35","nodeType":"VariableDeclaration","scope":8976,"src":"2648:38:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"},"typeName":{"id":8783,"nodeType":"UserDefinedTypeName","pathNode":{"id":8782,"name":"ShortString","nameLocations":["2648:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":6866,"src":"2648:11:35"},"referencedDeclaration":6866,"src":"2648:11:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"visibility":"private"},{"constant":false,"id":8786,"mutability":"mutable","name":"_nameFallback","nameLocation":"2707:13:35","nodeType":"VariableDeclaration","scope":8976,"src":"2692:28:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":8785,"name":"string","nodeType":"ElementaryTypeName","src":"2692:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":8788,"mutability":"mutable","name":"_versionFallback","nameLocation":"2741:16:35","nodeType":"VariableDeclaration","scope":8976,"src":"2726:31:35","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":8787,"name":"string","nodeType":"ElementaryTypeName","src":"2726:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":8845,"nodeType":"Block","src":"3383:376:35","statements":[{"expression":{"id":8801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8796,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8781,"src":"3393:5:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8799,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8786,"src":"3432:13:35","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":8797,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8791,"src":"3401:4:35","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":8798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3406:25:35","memberName":"toShortStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7018,"src":"3401:30:35","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_storage_ptr_$returns$_t_userDefinedValueType$_ShortString_$6866_$attached_to$_t_string_memory_ptr_$","typeString":"function (string memory,string storage pointer) returns (ShortString)"}},"id":8800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3401:45:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"src":"3393:53:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"id":8802,"nodeType":"ExpressionStatement","src":"3393:53:35"},{"expression":{"id":8808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8803,"name":"_version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8784,"src":"3456:8:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8806,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8788,"src":"3501:16:35","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":8804,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8793,"src":"3467:7:35","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":8805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3475:25:35","memberName":"toShortStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7018,"src":"3467:33:35","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_storage_ptr_$returns$_t_userDefinedValueType$_ShortString_$6866_$attached_to$_t_string_memory_ptr_$","typeString":"function (string memory,string storage pointer) returns (ShortString)"}},"id":8807,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3467:51:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"src":"3456:62:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"id":8809,"nodeType":"ExpressionStatement","src":"3456:62:35"},{"expression":{"id":8817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8810,"name":"_hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8776,"src":"3528:11:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":8814,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8791,"src":"3558:4:35","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3552:5:35","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8812,"name":"bytes","nodeType":"ElementaryTypeName","src":"3552:5:35","typeDescriptions":{}}},"id":8815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3552:11:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8811,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3542:9:35","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3542:22:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3528:36:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8818,"nodeType":"ExpressionStatement","src":"3528:36:35"},{"expression":{"id":8826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8819,"name":"_hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8778,"src":"3574:14:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":8823,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8793,"src":"3607:7:35","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8822,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3601:5:35","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8821,"name":"bytes","nodeType":"ElementaryTypeName","src":"3601:5:35","typeDescriptions":{}}},"id":8824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3601:14:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8820,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3591:9:35","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3591:25:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3574:42:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8827,"nodeType":"ExpressionStatement","src":"3574:42:35"},{"expression":{"id":8831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8828,"name":"_cachedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8772,"src":"3627:14:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":8829,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3644:5:35","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3650:7:35","memberName":"chainid","nodeType":"MemberAccess","src":"3644:13:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3627:30:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8832,"nodeType":"ExpressionStatement","src":"3627:30:35"},{"expression":{"id":8836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8833,"name":"_cachedDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8770,"src":"3667:22:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":8834,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8893,"src":"3692:21:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":8835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3692:23:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3667:48:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8837,"nodeType":"ExpressionStatement","src":"3667:48:35"},{"expression":{"id":8843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8838,"name":"_cachedThis","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8774,"src":"3725:11:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8841,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3747:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}],"id":8840,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3739:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8839,"name":"address","nodeType":"ElementaryTypeName","src":"3739:7:35","typeDescriptions":{}}},"id":8842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3739:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3725:27:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":8844,"nodeType":"ExpressionStatement","src":"3725:27:35"}]},"documentation":{"id":8789,"nodeType":"StructuredDocumentation","src":"2764:559:35","text":" @dev Initializes the domain separator and parameter caches.\n The meaning of `name` and `version` is specified in\n https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]:\n - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n - `version`: the current major version of the signing domain.\n NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n contract upgrade]."},"id":8846,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":8794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8791,"mutability":"mutable","name":"name","nameLocation":"3354:4:35","nodeType":"VariableDeclaration","scope":8846,"src":"3340:18:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8790,"name":"string","nodeType":"ElementaryTypeName","src":"3340:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8793,"mutability":"mutable","name":"version","nameLocation":"3374:7:35","nodeType":"VariableDeclaration","scope":8846,"src":"3360:21:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8792,"name":"string","nodeType":"ElementaryTypeName","src":"3360:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3339:43:35"},"returnParameters":{"id":8795,"nodeType":"ParameterList","parameters":[],"src":"3383:0:35"},"scope":8976,"src":"3328:431:35","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":8871,"nodeType":"Block","src":"3907:200:35","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8854,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3929:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}],"id":8853,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3921:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8852,"name":"address","nodeType":"ElementaryTypeName","src":"3921:7:35","typeDescriptions":{}}},"id":8855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3921:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8856,"name":"_cachedThis","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8774,"src":"3938:11:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3921:28:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8858,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3953:5:35","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3959:7:35","memberName":"chainid","nodeType":"MemberAccess","src":"3953:13:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8860,"name":"_cachedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8772,"src":"3970:14:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3953:31:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3921:63:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8869,"nodeType":"Block","src":"4046:55:35","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8866,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8893,"src":"4067:21:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":8867,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4067:23:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8851,"id":8868,"nodeType":"Return","src":"4060:30:35"}]},"id":8870,"nodeType":"IfStatement","src":"3917:184:35","trueBody":{"id":8865,"nodeType":"Block","src":"3986:54:35","statements":[{"expression":{"id":8863,"name":"_cachedDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8770,"src":"4007:22:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8851,"id":8864,"nodeType":"Return","src":"4000:29:35"}]}}]},"documentation":{"id":8847,"nodeType":"StructuredDocumentation","src":"3765:75:35","text":" @dev Returns the domain separator for the current chain."},"id":8872,"implemented":true,"kind":"function","modifiers":[],"name":"_domainSeparatorV4","nameLocation":"3854:18:35","nodeType":"FunctionDefinition","parameters":{"id":8848,"nodeType":"ParameterList","parameters":[],"src":"3872:2:35"},"returnParameters":{"id":8851,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8850,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8872,"src":"3898:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8849,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3898:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3897:9:35"},"scope":8976,"src":"3845:262:35","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8892,"nodeType":"Block","src":"4177:115:35","statements":[{"expression":{"arguments":[{"arguments":[{"id":8880,"name":"TYPE_HASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8768,"src":"4215:9:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8881,"name":"_hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8776,"src":"4226:11:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8882,"name":"_hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8778,"src":"4239:14:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":8883,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4255:5:35","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4261:7:35","memberName":"chainid","nodeType":"MemberAccess","src":"4255:13:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":8887,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4278:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}],"id":8886,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4270:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8885,"name":"address","nodeType":"ElementaryTypeName","src":"4270:7:35","typeDescriptions":{}}},"id":8888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4270:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":8878,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4204:3:35","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":8879,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4208:6:35","memberName":"encode","nodeType":"MemberAccess","src":"4204:10:35","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":8889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4204:80:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8877,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4194:9:35","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4194:91:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8876,"id":8891,"nodeType":"Return","src":"4187:98:35"}]},"id":8893,"implemented":true,"kind":"function","modifiers":[],"name":"_buildDomainSeparator","nameLocation":"4122:21:35","nodeType":"FunctionDefinition","parameters":{"id":8873,"nodeType":"ParameterList","parameters":[],"src":"4143:2:35"},"returnParameters":{"id":8876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8875,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8893,"src":"4168:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8874,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4168:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4167:9:35"},"scope":8976,"src":"4113:179:35","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":8908,"nodeType":"Block","src":"5003:90:35","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8903,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8872,"src":"5053:18:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":8904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5053:20:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8905,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8896,"src":"5075:10:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":8901,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9050,"src":"5020:16:35","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$9050_$","typeString":"type(library MessageHashUtils)"}},"id":8902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5037:15:35","memberName":"toTypedDataHash","nodeType":"MemberAccess","referencedDeclaration":9049,"src":"5020:32:35","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":8906,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5020:66:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8900,"id":8907,"nodeType":"Return","src":"5013:73:35"}]},"documentation":{"id":8894,"nodeType":"StructuredDocumentation","src":"4298:614:35","text":" @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n function returns the hash of the fully encoded EIP712 message for this domain.\n This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n ```solidity\n bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n keccak256(\"Mail(address to,string contents)\"),\n mailTo,\n keccak256(bytes(mailContents))\n )));\n address signer = ECDSA.recover(digest, signature);\n ```"},"id":8909,"implemented":true,"kind":"function","modifiers":[],"name":"_hashTypedDataV4","nameLocation":"4926:16:35","nodeType":"FunctionDefinition","parameters":{"id":8897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8896,"mutability":"mutable","name":"structHash","nameLocation":"4951:10:35","nodeType":"VariableDeclaration","scope":8909,"src":"4943:18:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8895,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4943:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4942:20:35"},"returnParameters":{"id":8900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8899,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8909,"src":"4994:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8898,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4994:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4993:9:35"},"scope":8976,"src":"4917:176:35","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[5345],"body":{"id":8950,"nodeType":"Block","src":"5472:229:35","statements":[{"expression":{"components":[{"hexValue":"0f","id":8928,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"5503:7:35","typeDescriptions":{"typeIdentifier":"t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c","typeString":"literal_string hex\"0f\""},"value":"\u000f"},{"arguments":[],"expression":{"argumentTypes":[],"id":8929,"name":"_EIP712Name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8963,"src":"5533:11:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":8930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5533:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":8931,"name":"_EIP712Version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8975,"src":"5560:14:35","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":8932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5560:16:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":8933,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5590:5:35","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5596:7:35","memberName":"chainid","nodeType":"MemberAccess","src":"5590:13:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":8937,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5625:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$8976","typeString":"contract EIP712"}],"id":8936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5617:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8935,"name":"address","nodeType":"ElementaryTypeName","src":"5617:7:35","typeDescriptions":{}}},"id":8938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5617:13:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":8941,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5652:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8940,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5644:7:35","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8939,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5644:7:35","typeDescriptions":{}}},"id":8942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5644:10:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"hexValue":"30","id":8946,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5682:1:35","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8945,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5668:13:35","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":8943,"name":"uint256","nodeType":"ElementaryTypeName","src":"5672:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8944,"nodeType":"ArrayTypeName","src":"5672:9:35","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":8947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5668:16:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"id":8948,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5489:205:35","typeDescriptions":{"typeIdentifier":"t_tuple$_t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint256_$_t_address_$_t_bytes32_$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"tuple(literal_string hex\"0f\",string memory,string memory,uint256,address,bytes32,uint256[] memory)"}},"functionReturnParameters":8927,"id":8949,"nodeType":"Return","src":"5482:212:35"}]},"documentation":{"id":8910,"nodeType":"StructuredDocumentation","src":"5099:40:35","text":" @dev See {IERC-5267}."},"functionSelector":"84b0196e","id":8951,"implemented":true,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"5153:12:35","nodeType":"FunctionDefinition","parameters":{"id":8911,"nodeType":"ParameterList","parameters":[],"src":"5165:2:35"},"returnParameters":{"id":8927,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8913,"mutability":"mutable","name":"fields","nameLocation":"5249:6:35","nodeType":"VariableDeclaration","scope":8951,"src":"5242:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":8912,"name":"bytes1","nodeType":"ElementaryTypeName","src":"5242:6:35","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":8915,"mutability":"mutable","name":"name","nameLocation":"5283:4:35","nodeType":"VariableDeclaration","scope":8951,"src":"5269:18:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8914,"name":"string","nodeType":"ElementaryTypeName","src":"5269:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8917,"mutability":"mutable","name":"version","nameLocation":"5315:7:35","nodeType":"VariableDeclaration","scope":8951,"src":"5301:21:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8916,"name":"string","nodeType":"ElementaryTypeName","src":"5301:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8919,"mutability":"mutable","name":"chainId","nameLocation":"5344:7:35","nodeType":"VariableDeclaration","scope":8951,"src":"5336:15:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8918,"name":"uint256","nodeType":"ElementaryTypeName","src":"5336:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8921,"mutability":"mutable","name":"verifyingContract","nameLocation":"5373:17:35","nodeType":"VariableDeclaration","scope":8951,"src":"5365:25:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8920,"name":"address","nodeType":"ElementaryTypeName","src":"5365:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8923,"mutability":"mutable","name":"salt","nameLocation":"5412:4:35","nodeType":"VariableDeclaration","scope":8951,"src":"5404:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8922,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5404:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8926,"mutability":"mutable","name":"extensions","nameLocation":"5447:10:35","nodeType":"VariableDeclaration","scope":8951,"src":"5430:27:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":8924,"name":"uint256","nodeType":"ElementaryTypeName","src":"5430:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8925,"nodeType":"ArrayTypeName","src":"5430:9:35","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"5228:239:35"},"scope":8976,"src":"5144:557:35","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":8962,"nodeType":"Block","src":"6082:65:35","statements":[{"expression":{"arguments":[{"id":8959,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8786,"src":"6126:13:35","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":8957,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8781,"src":"6099:5:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"id":8958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6105:20:35","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7045,"src":"6099:26:35","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$6866_$_t_string_storage_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"function (ShortString,string storage pointer) pure returns (string memory)"}},"id":8960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6099:41:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":8956,"id":8961,"nodeType":"Return","src":"6092:48:35"}]},"documentation":{"id":8952,"nodeType":"StructuredDocumentation","src":"5707:256:35","text":" @dev The name parameter for the EIP712 domain.\n NOTE: By default this function reads _name which is an immutable value.\n It only reads from storage if necessary (in case the value is too large to fit in a ShortString)."},"id":8963,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Name","nameLocation":"6030:11:35","nodeType":"FunctionDefinition","parameters":{"id":8953,"nodeType":"ParameterList","parameters":[],"src":"6041:2:35"},"returnParameters":{"id":8956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8955,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8963,"src":"6067:13:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8954,"name":"string","nodeType":"ElementaryTypeName","src":"6067:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6066:15:35"},"scope":8976,"src":"6021:126:35","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8974,"nodeType":"Block","src":"6537:71:35","statements":[{"expression":{"arguments":[{"id":8971,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8788,"src":"6584:16:35","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":8969,"name":"_version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8784,"src":"6554:8:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$6866","typeString":"ShortString"}},"id":8970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6563:20:35","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7045,"src":"6554:29:35","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$6866_$_t_string_storage_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_ShortString_$6866_$","typeString":"function (ShortString,string storage pointer) pure returns (string memory)"}},"id":8972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6554:47:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":8968,"id":8973,"nodeType":"Return","src":"6547:54:35"}]},"documentation":{"id":8964,"nodeType":"StructuredDocumentation","src":"6153:262:35","text":" @dev The version parameter for the EIP712 domain.\n NOTE: By default this function reads _version which is an immutable value.\n It only reads from storage if necessary (in case the value is too large to fit in a ShortString)."},"id":8975,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Version","nameLocation":"6482:14:35","nodeType":"FunctionDefinition","parameters":{"id":8965,"nodeType":"ParameterList","parameters":[],"src":"6496:2:35"},"returnParameters":{"id":8968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8967,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8975,"src":"6522:13:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8966,"name":"string","nodeType":"ElementaryTypeName","src":"6522:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6521:15:35"},"scope":8976,"src":"6473:135:35","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":8977,"src":"1960:4650:35","usedErrors":[6874,6876],"usedEvents":[5326]}],"src":"113:6498:35"},"id":35},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","exportedSymbols":{"MessageHashUtils":[9050],"Strings":[8401]},"id":9051,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8978,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:36"},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../Strings.sol","id":8980,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9051,"sourceUnit":8402,"src":"149:39:36","symbolAliases":[{"foreign":{"id":8979,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8401,"src":"157:7:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"MessageHashUtils","contractDependencies":[],"contractKind":"library","documentation":{"id":8981,"nodeType":"StructuredDocumentation","src":"190:330:36","text":" @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\n The library provides methods for generating a hash of a message that conforms to the\n https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\n specifications."},"fullyImplemented":true,"id":9050,"linearizedBaseContracts":[9050],"name":"MessageHashUtils","nameLocation":"529:16:36","nodeType":"ContractDefinition","nodes":[{"body":{"id":8990,"nodeType":"Block","src":"1314:341:36","statements":[{"AST":{"nodeType":"YulBlock","src":"1349:300:36","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1370:4:36","type":"","value":"0x00"},{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a3332","kind":"string","nodeType":"YulLiteral","src":"1376:34:36","type":"","value":"\u0019Ethereum Signed Message:\n32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1363:6:36"},"nodeType":"YulFunctionCall","src":"1363:48:36"},"nodeType":"YulExpressionStatement","src":"1363:48:36"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1472:4:36","type":"","value":"0x1c"},{"name":"messageHash","nodeType":"YulIdentifier","src":"1478:11:36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1465:6:36"},"nodeType":"YulFunctionCall","src":"1465:25:36"},"nodeType":"YulExpressionStatement","src":"1465:25:36"},{"nodeType":"YulAssignment","src":"1544:31:36","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1564:4:36","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"1570:4:36","type":"","value":"0x3c"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"1554:9:36"},"nodeType":"YulFunctionCall","src":"1554:21:36"},"variableNames":[{"name":"digest","nodeType":"YulIdentifier","src":"1544:6:36"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":8987,"isOffset":false,"isSlot":false,"src":"1544:6:36","valueSize":1},{"declaration":8984,"isOffset":false,"isSlot":false,"src":"1478:11:36","valueSize":1}],"flags":["memory-safe"],"id":8989,"nodeType":"InlineAssembly","src":"1324:325:36"}]},"documentation":{"id":8982,"nodeType":"StructuredDocumentation","src":"552:665:36","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x45` (`personal_sign` messages).\n The digest is calculated by prefixing a bytes32 `messageHash` with\n `\"\\x19Ethereum Signed Message:\\n32\"` and hashing the result. It corresponds with the\n hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\n keccak256, although any bytes32 value can be safely used because the final digest will\n be re-hashed.\n See {ECDSA-recover}."},"id":8991,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"1231:22:36","nodeType":"FunctionDefinition","parameters":{"id":8985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8984,"mutability":"mutable","name":"messageHash","nameLocation":"1262:11:36","nodeType":"VariableDeclaration","scope":8991,"src":"1254:19:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8983,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1254:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1253:21:36"},"returnParameters":{"id":8988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8987,"mutability":"mutable","name":"digest","nameLocation":"1306:6:36","nodeType":"VariableDeclaration","scope":8991,"src":"1298:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8986,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1298:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1297:16:36"},"scope":9050,"src":"1222:433:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9016,"nodeType":"Block","src":"2207:143:36","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a","id":9003,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2259:32:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},"value":"\u0019Ethereum Signed Message:\n"},{"arguments":[{"arguments":[{"expression":{"id":9008,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8994,"src":"2316:7:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2324:6:36","memberName":"length","nodeType":"MemberAccess","src":"2316:14:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9006,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8401,"src":"2299:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$8401_$","typeString":"type(library Strings)"}},"id":9007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2307:8:36","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":7279,"src":"2299:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":9010,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2299:32:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9005,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2293:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9004,"name":"bytes","nodeType":"ElementaryTypeName","src":"2293:5:36","typeDescriptions":{}}},"id":9011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2293:39:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9012,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8994,"src":"2334:7:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9001,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2246:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9000,"name":"bytes","nodeType":"ElementaryTypeName","src":"2246:5:36","typeDescriptions":{}}},"id":9002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2252:6:36","memberName":"concat","nodeType":"MemberAccess","src":"2246:12:36","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2246:96:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8999,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2236:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2236:107:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8998,"id":9015,"nodeType":"Return","src":"2217:126:36"}]},"documentation":{"id":8992,"nodeType":"StructuredDocumentation","src":"1661:455:36","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x45` (`personal_sign` messages).\n The digest is calculated by prefixing an arbitrary `message` with\n `\"\\x19Ethereum Signed Message:\\n\" + len(message)` and hashing the result. It corresponds with the\n hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n See {ECDSA-recover}."},"id":9017,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"2130:22:36","nodeType":"FunctionDefinition","parameters":{"id":8995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8994,"mutability":"mutable","name":"message","nameLocation":"2166:7:36","nodeType":"VariableDeclaration","scope":9017,"src":"2153:20:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8993,"name":"bytes","nodeType":"ElementaryTypeName","src":"2153:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2152:22:36"},"returnParameters":{"id":8998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8997,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9017,"src":"2198:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8996,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2198:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2197:9:36"},"scope":9050,"src":"2121:229:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9036,"nodeType":"Block","src":"2804:80:36","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"1900","id":9030,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"2848:10:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},"value":"\u0019\u0000"},{"id":9031,"name":"validator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9020,"src":"2860:9:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9032,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9022,"src":"2871:4:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9028,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2831:3:36","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9029,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2835:12:36","memberName":"encodePacked","nodeType":"MemberAccess","src":"2831:16:36","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2831:45:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9027,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2821:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2821:56:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":9026,"id":9035,"nodeType":"Return","src":"2814:63:36"}]},"documentation":{"id":9018,"nodeType":"StructuredDocumentation","src":"2356:332:36","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x00` (data with intended validator).\n The digest is calculated by prefixing an arbitrary `data` with `\"\\x19\\x00\"` and the intended\n `validator` address. Then hashing the result.\n See {ECDSA-recover}."},"id":9037,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"2702:31:36","nodeType":"FunctionDefinition","parameters":{"id":9023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9020,"mutability":"mutable","name":"validator","nameLocation":"2742:9:36","nodeType":"VariableDeclaration","scope":9037,"src":"2734:17:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9019,"name":"address","nodeType":"ElementaryTypeName","src":"2734:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9022,"mutability":"mutable","name":"data","nameLocation":"2766:4:36","nodeType":"VariableDeclaration","scope":9037,"src":"2753:17:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9021,"name":"bytes","nodeType":"ElementaryTypeName","src":"2753:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2733:38:36"},"returnParameters":{"id":9026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9025,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9037,"src":"2795:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9024,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2795:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2794:9:36"},"scope":9050,"src":"2693:191:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9048,"nodeType":"Block","src":"3435:265:36","statements":[{"AST":{"nodeType":"YulBlock","src":"3470:224:36","statements":[{"nodeType":"YulVariableDeclaration","src":"3484:22:36","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3501:4:36","type":"","value":"0x40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3495:5:36"},"nodeType":"YulFunctionCall","src":"3495:11:36"},"variables":[{"name":"ptr","nodeType":"YulTypedName","src":"3488:3:36","type":""}]},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"3526:3:36"},{"hexValue":"1901","kind":"string","nodeType":"YulLiteral","src":"3531:10:36","type":"","value":"\u0019\u0001"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3519:6:36"},"nodeType":"YulFunctionCall","src":"3519:23:36"},"nodeType":"YulExpressionStatement","src":"3519:23:36"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"3566:3:36"},{"kind":"number","nodeType":"YulLiteral","src":"3571:4:36","type":"","value":"0x02"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3562:3:36"},"nodeType":"YulFunctionCall","src":"3562:14:36"},{"name":"domainSeparator","nodeType":"YulIdentifier","src":"3578:15:36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3555:6:36"},"nodeType":"YulFunctionCall","src":"3555:39:36"},"nodeType":"YulExpressionStatement","src":"3555:39:36"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"3618:3:36"},{"kind":"number","nodeType":"YulLiteral","src":"3623:4:36","type":"","value":"0x22"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3614:3:36"},"nodeType":"YulFunctionCall","src":"3614:14:36"},{"name":"structHash","nodeType":"YulIdentifier","src":"3630:10:36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3607:6:36"},"nodeType":"YulFunctionCall","src":"3607:34:36"},"nodeType":"YulExpressionStatement","src":"3607:34:36"},{"nodeType":"YulAssignment","src":"3654:30:36","value":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"3674:3:36"},{"kind":"number","nodeType":"YulLiteral","src":"3679:4:36","type":"","value":"0x42"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"3664:9:36"},"nodeType":"YulFunctionCall","src":"3664:20:36"},"variableNames":[{"name":"digest","nodeType":"YulIdentifier","src":"3654:6:36"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9045,"isOffset":false,"isSlot":false,"src":"3654:6:36","valueSize":1},{"declaration":9040,"isOffset":false,"isSlot":false,"src":"3578:15:36","valueSize":1},{"declaration":9042,"isOffset":false,"isSlot":false,"src":"3630:10:36","valueSize":1}],"flags":["memory-safe"],"id":9047,"nodeType":"InlineAssembly","src":"3445:249:36"}]},"documentation":{"id":9038,"nodeType":"StructuredDocumentation","src":"2890:431:36","text":" @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).\n The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\n `\\x19\\x01` and hashing the result. It corresponds to the hash signed by the\n https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\n See {ECDSA-recover}."},"id":9049,"implemented":true,"kind":"function","modifiers":[],"name":"toTypedDataHash","nameLocation":"3335:15:36","nodeType":"FunctionDefinition","parameters":{"id":9043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9040,"mutability":"mutable","name":"domainSeparator","nameLocation":"3359:15:36","nodeType":"VariableDeclaration","scope":9049,"src":"3351:23:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9039,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3351:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9042,"mutability":"mutable","name":"structHash","nameLocation":"3384:10:36","nodeType":"VariableDeclaration","scope":9049,"src":"3376:18:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9041,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3376:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3350:45:36"},"returnParameters":{"id":9046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9045,"mutability":"mutable","name":"digest","nameLocation":"3427:6:36","nodeType":"VariableDeclaration","scope":9049,"src":"3419:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9044,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3419:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3418:16:36"},"scope":9050,"src":"3326:374:36","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":9051,"src":"521:3181:36","usedErrors":[],"usedEvents":[]}],"src":"123:3580:36"},"id":36},"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol","exportedSymbols":{"ECDSA":[8749],"IERC1271":[5317],"SignatureChecker":[9158]},"id":9159,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9052,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:37"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"./ECDSA.sol","id":9054,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9159,"sourceUnit":8750,"src":"149:34:37","symbolAliases":[{"foreign":{"id":9053,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"157:5:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1271.sol","file":"../../interfaces/IERC1271.sol","id":9056,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9159,"sourceUnit":5318,"src":"184:55:37","symbolAliases":[{"foreign":{"id":9055,"name":"IERC1271","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5317,"src":"192:8:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignatureChecker","contractDependencies":[],"contractKind":"library","documentation":{"id":9057,"nodeType":"StructuredDocumentation","src":"241:290:37","text":" @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA\n signatures from externally owned accounts (EOAs) as well as ERC-1271 signatures from smart contract wallets like\n Argent and Safe Wallet (previously Gnosis Safe)."},"fullyImplemented":true,"id":9158,"linearizedBaseContracts":[9158],"name":"SignatureChecker","nameLocation":"540:16:37","nodeType":"ContractDefinition","nodes":[{"body":{"id":9104,"nodeType":"Block","src":"1153:317:37","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9069,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9060,"src":"1167:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1174:4:37","memberName":"code","nodeType":"MemberAccess","src":"1167:11:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1179:6:37","memberName":"length","nodeType":"MemberAccess","src":"1167:18:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1189:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1167:23:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9102,"nodeType":"Block","src":"1381:83:37","statements":[{"expression":{"arguments":[{"id":9097,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9060,"src":"1429:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9098,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9062,"src":"1437:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9099,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9064,"src":"1443:9:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9096,"name":"isValidERC1271SignatureNow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9157,"src":"1402:26:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,bytes32,bytes memory) view returns (bool)"}},"id":9100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1402:51:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9068,"id":9101,"nodeType":"Return","src":"1395:58:37"}]},"id":9103,"nodeType":"IfStatement","src":"1163:301:37","trueBody":{"id":9095,"nodeType":"Block","src":"1192:183:37","statements":[{"assignments":[9075,9078,null],"declarations":[{"constant":false,"id":9075,"mutability":"mutable","name":"recovered","nameLocation":"1215:9:37","nodeType":"VariableDeclaration","scope":9095,"src":"1207:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9074,"name":"address","nodeType":"ElementaryTypeName","src":"1207:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9078,"mutability":"mutable","name":"err","nameLocation":"1245:3:37","nodeType":"VariableDeclaration","scope":9095,"src":"1226:22:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":9077,"nodeType":"UserDefinedTypeName","pathNode":{"id":9076,"name":"ECDSA.RecoverError","nameLocations":["1226:5:37","1232:12:37"],"nodeType":"IdentifierPath","referencedDeclaration":8409,"src":"1226:18:37"},"referencedDeclaration":8409,"src":"1226:18:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},null],"id":9084,"initialValue":{"arguments":[{"id":9081,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9062,"src":"1271:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9082,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9064,"src":"1277:9:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9079,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"1254:5:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$8749_$","typeString":"type(library ECDSA)"}},"id":9080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1260:10:37","memberName":"tryRecover","nodeType":"MemberAccess","referencedDeclaration":8475,"src":"1254:16:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":9083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1254:33:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$8409_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"1206:81:37"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"},"id":9089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9085,"name":"err","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9078,"src":"1308:3:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9086,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"1315:5:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$8749_$","typeString":"type(library ECDSA)"}},"id":9087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1321:12:37","memberName":"RecoverError","nodeType":"MemberAccess","referencedDeclaration":8409,"src":"1315:18:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$8409_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9088,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1334:7:37","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"1315:26:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$8409","typeString":"enum ECDSA.RecoverError"}},"src":"1308:33:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9090,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9075,"src":"1345:9:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":9091,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9060,"src":"1358:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1345:19:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1308:56:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9068,"id":9094,"nodeType":"Return","src":"1301:63:37"}]}}]},"documentation":{"id":9058,"nodeType":"StructuredDocumentation","src":"563:473:37","text":" @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the\n signature is validated against that smart contract using ERC-1271, otherwise it's validated using `ECDSA.recover`.\n NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n change through time. It could return true at block N and false at block N+1 (or the opposite)."},"id":9105,"implemented":true,"kind":"function","modifiers":[],"name":"isValidSignatureNow","nameLocation":"1050:19:37","nodeType":"FunctionDefinition","parameters":{"id":9065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9060,"mutability":"mutable","name":"signer","nameLocation":"1078:6:37","nodeType":"VariableDeclaration","scope":9105,"src":"1070:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9059,"name":"address","nodeType":"ElementaryTypeName","src":"1070:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9062,"mutability":"mutable","name":"hash","nameLocation":"1094:4:37","nodeType":"VariableDeclaration","scope":9105,"src":"1086:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9061,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1086:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9064,"mutability":"mutable","name":"signature","nameLocation":"1113:9:37","nodeType":"VariableDeclaration","scope":9105,"src":"1100:22:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9063,"name":"bytes","nodeType":"ElementaryTypeName","src":"1100:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1069:54:37"},"returnParameters":{"id":9068,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9067,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9105,"src":"1147:4:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9066,"name":"bool","nodeType":"ElementaryTypeName","src":"1147:4:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1146:6:37"},"scope":9158,"src":"1041:429:37","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9156,"nodeType":"Block","src":"2026:309:37","statements":[{"assignments":[9118,9120],"declarations":[{"constant":false,"id":9118,"mutability":"mutable","name":"success","nameLocation":"2042:7:37","nodeType":"VariableDeclaration","scope":9156,"src":"2037:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9117,"name":"bool","nodeType":"ElementaryTypeName","src":"2037:4:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9120,"mutability":"mutable","name":"result","nameLocation":"2064:6:37","nodeType":"VariableDeclaration","scope":9156,"src":"2051:19:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9119,"name":"bytes","nodeType":"ElementaryTypeName","src":"2051:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":9132,"initialValue":{"arguments":[{"arguments":[{"expression":{"id":9125,"name":"IERC1271","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5317,"src":"2120:8:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1271_$5317_$","typeString":"type(contract IERC1271)"}},"id":9126,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2129:16:37","memberName":"isValidSignature","nodeType":"MemberAccess","referencedDeclaration":5316,"src":"2120:25:37","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function IERC1271.isValidSignature(bytes32,bytes memory) view returns (bytes4)"}},{"components":[{"id":9127,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9110,"src":"2148:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9128,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9112,"src":"2154:9:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":9129,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2147:17:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes32_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes32,bytes memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_view$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function IERC1271.isValidSignature(bytes32,bytes memory) view returns (bytes4)"},{"typeIdentifier":"t_tuple$_t_bytes32_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes32,bytes memory)"}],"expression":{"id":9123,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2105:3:37","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9124,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2109:10:37","memberName":"encodeCall","nodeType":"MemberAccess","src":"2105:14:37","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2105:60:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9121,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9108,"src":"2074:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2081:10:37","memberName":"staticcall","nodeType":"MemberAccess","src":"2074:17:37","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":9131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2074:101:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2036:139:37"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9133,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9118,"src":"2193:7:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9134,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9120,"src":"2216:6:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2223:6:37","memberName":"length","nodeType":"MemberAccess","src":"2216:13:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3332","id":9136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2233:2:37","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"2216:19:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2193:42:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":9152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9141,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9120,"src":"2262:6:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":9143,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2271:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9142,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2271:7:37","typeDescriptions":{}}}],"id":9144,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2270:9:37","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"}],"expression":{"id":9139,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2251:3:37","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9140,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2255:6:37","memberName":"decode","nodeType":"MemberAccess","src":"2251:10:37","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":9145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2251:29:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"expression":{"id":9148,"name":"IERC1271","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5317,"src":"2292:8:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1271_$5317_$","typeString":"type(contract IERC1271)"}},"id":9149,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2301:16:37","memberName":"isValidSignature","nodeType":"MemberAccess","referencedDeclaration":5316,"src":"2292:25:37","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function IERC1271.isValidSignature(bytes32,bytes memory) view returns (bytes4)"}},"id":9150,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2318:8:37","memberName":"selector","nodeType":"MemberAccess","src":"2292:34:37","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":9147,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2284:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9146,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2284:7:37","typeDescriptions":{}}},"id":9151,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2284:43:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2251:76:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2193:134:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":9154,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2192:136:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9116,"id":9155,"nodeType":"Return","src":"2185:143:37"}]},"documentation":{"id":9106,"nodeType":"StructuredDocumentation","src":"1476:396:37","text":" @dev Checks if a signature is valid for a given signer and data hash. The signature is validated\n against the signer smart contract using ERC-1271.\n NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n change through time. It could return true at block N and false at block N+1 (or the opposite)."},"id":9157,"implemented":true,"kind":"function","modifiers":[],"name":"isValidERC1271SignatureNow","nameLocation":"1886:26:37","nodeType":"FunctionDefinition","parameters":{"id":9113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9108,"mutability":"mutable","name":"signer","nameLocation":"1930:6:37","nodeType":"VariableDeclaration","scope":9157,"src":"1922:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9107,"name":"address","nodeType":"ElementaryTypeName","src":"1922:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9110,"mutability":"mutable","name":"hash","nameLocation":"1954:4:37","nodeType":"VariableDeclaration","scope":9157,"src":"1946:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9109,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1946:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9112,"mutability":"mutable","name":"signature","nameLocation":"1981:9:37","nodeType":"VariableDeclaration","scope":9157,"src":"1968:22:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9111,"name":"bytes","nodeType":"ElementaryTypeName","src":"1968:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1912:84:37"},"returnParameters":{"id":9116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9115,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9157,"src":"2020:4:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9114,"name":"bool","nodeType":"ElementaryTypeName","src":"2020:4:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2019:6:37"},"scope":9158,"src":"1877:458:37","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":9159,"src":"532:1805:37","usedErrors":[],"usedEvents":[]}],"src":"123:2215:37"},"id":37},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","exportedSymbols":{"ERC165":[9182],"IERC165":[9194]},"id":9183,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9160,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"114:24:38"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":9162,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9183,"sourceUnit":9195,"src":"140:38:38","symbolAliases":[{"foreign":{"id":9161,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"148:7:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9164,"name":"IERC165","nameLocations":["688:7:38"],"nodeType":"IdentifierPath","referencedDeclaration":9194,"src":"688:7:38"},"id":9165,"nodeType":"InheritanceSpecifier","src":"688:7:38"}],"canonicalName":"ERC165","contractDependencies":[],"contractKind":"contract","documentation":{"id":9163,"nodeType":"StructuredDocumentation","src":"180:479:38","text":" @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n for the additional interface id that will be supported. For example:\n ```solidity\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n }\n ```"},"fullyImplemented":true,"id":9182,"linearizedBaseContracts":[9182,9194],"name":"ERC165","nameLocation":"678:6:38","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[9193],"body":{"id":9180,"nodeType":"Block","src":"845:64:38","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":9178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9173,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9168,"src":"862:11:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":9175,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"882:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$9194_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$9194_$","typeString":"type(contract IERC165)"}],"id":9174,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"877:4:38","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"877:13:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$9194","typeString":"type(contract IERC165)"}},"id":9177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"891:11:38","memberName":"interfaceId","nodeType":"MemberAccess","src":"877:25:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"862:40:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9172,"id":9179,"nodeType":"Return","src":"855:47:38"}]},"documentation":{"id":9166,"nodeType":"StructuredDocumentation","src":"702:56:38","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":9181,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"772:17:38","nodeType":"FunctionDefinition","parameters":{"id":9169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9168,"mutability":"mutable","name":"interfaceId","nameLocation":"797:11:38","nodeType":"VariableDeclaration","scope":9181,"src":"790:18:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9167,"name":"bytes4","nodeType":"ElementaryTypeName","src":"790:6:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"789:20:38"},"returnParameters":{"id":9172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9171,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9181,"src":"839:4:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9170,"name":"bool","nodeType":"ElementaryTypeName","src":"839:4:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"838:6:38"},"scope":9182,"src":"763:146:38","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":9183,"src":"660:251:38","usedErrors":[],"usedEvents":[]}],"src":"114:798:38"},"id":38},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[9194]},"id":9195,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9184,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"115:24:39"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":9185,"nodeType":"StructuredDocumentation","src":"141:280:39","text":" @dev Interface of the ERC-165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[ERC].\n Implementers can declare support of contract interfaces, which can then be\n queried by others ({ERC165Checker}).\n For an implementation, see {ERC165}."},"fullyImplemented":false,"id":9194,"linearizedBaseContracts":[9194],"name":"IERC165","nameLocation":"432:7:39","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9186,"nodeType":"StructuredDocumentation","src":"446:340:39","text":" @dev Returns true if this contract implements the interface defined by\n `interfaceId`. See the corresponding\n https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n to learn more about how these ids are created.\n This function call must use less than 30 000 gas."},"functionSelector":"01ffc9a7","id":9193,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"800:17:39","nodeType":"FunctionDefinition","parameters":{"id":9189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9188,"mutability":"mutable","name":"interfaceId","nameLocation":"825:11:39","nodeType":"VariableDeclaration","scope":9193,"src":"818:18:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9187,"name":"bytes4","nodeType":"ElementaryTypeName","src":"818:6:39","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"817:20:39"},"returnParameters":{"id":9192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9191,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9193,"src":"861:4:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9190,"name":"bool","nodeType":"ElementaryTypeName","src":"861:4:39","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"860:6:39"},"scope":9194,"src":"791:76:39","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":9195,"src":"422:447:39","usedErrors":[],"usedEvents":[]}],"src":"115:755:39"},"id":39},"@openzeppelin/contracts/utils/math/Math.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","exportedSymbols":{"Math":[10800],"Panic":[6860],"SafeCast":[12565]},"id":10801,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9196,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:40"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":9198,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10801,"sourceUnit":6861,"src":"129:35:40","symbolAliases":[{"foreign":{"id":9197,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"137:5:40","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":9200,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10801,"sourceUnit":12566,"src":"165:40:40","symbolAliases":[{"foreign":{"id":9199,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"173:8:40","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Math","contractDependencies":[],"contractKind":"library","documentation":{"id":9201,"nodeType":"StructuredDocumentation","src":"207:73:40","text":" @dev Standard math utilities missing in the Solidity language."},"fullyImplemented":true,"id":10800,"linearizedBaseContracts":[10800],"name":"Math","nameLocation":"289:4:40","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Math.Rounding","id":9206,"members":[{"id":9202,"name":"Floor","nameLocation":"324:5:40","nodeType":"EnumValue","src":"324:5:40"},{"id":9203,"name":"Ceil","nameLocation":"367:4:40","nodeType":"EnumValue","src":"367:4:40"},{"id":9204,"name":"Trunc","nameLocation":"409:5:40","nodeType":"EnumValue","src":"409:5:40"},{"id":9205,"name":"Expand","nameLocation":"439:6:40","nodeType":"EnumValue","src":"439:6:40"}],"name":"Rounding","nameLocation":"305:8:40","nodeType":"EnumDefinition","src":"300:169:40"},{"body":{"id":9237,"nodeType":"Block","src":"677:140:40","statements":[{"id":9236,"nodeType":"UncheckedBlock","src":"687:124:40","statements":[{"assignments":[9219],"declarations":[{"constant":false,"id":9219,"mutability":"mutable","name":"c","nameLocation":"719:1:40","nodeType":"VariableDeclaration","scope":9236,"src":"711:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9218,"name":"uint256","nodeType":"ElementaryTypeName","src":"711:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9223,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9220,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9209,"src":"723:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":9221,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9211,"src":"727:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"723:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"711:17:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9224,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9219,"src":"746:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":9225,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9209,"src":"750:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"746:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9231,"nodeType":"IfStatement","src":"742:28:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"761:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"768:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9229,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"760:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9217,"id":9230,"nodeType":"Return","src":"753:17:40"}},{"expression":{"components":[{"hexValue":"74727565","id":9232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"792:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":9233,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9219,"src":"798:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9234,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"791:9:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":9217,"id":9235,"nodeType":"Return","src":"784:16:40"}]}]},"documentation":{"id":9207,"nodeType":"StructuredDocumentation","src":"475:106:40","text":" @dev Returns the addition of two unsigned integers, with an success flag (no overflow)."},"id":9238,"implemented":true,"kind":"function","modifiers":[],"name":"tryAdd","nameLocation":"595:6:40","nodeType":"FunctionDefinition","parameters":{"id":9212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9209,"mutability":"mutable","name":"a","nameLocation":"610:1:40","nodeType":"VariableDeclaration","scope":9238,"src":"602:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9208,"name":"uint256","nodeType":"ElementaryTypeName","src":"602:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9211,"mutability":"mutable","name":"b","nameLocation":"621:1:40","nodeType":"VariableDeclaration","scope":9238,"src":"613:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9210,"name":"uint256","nodeType":"ElementaryTypeName","src":"613:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"601:22:40"},"returnParameters":{"id":9217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9214,"mutability":"mutable","name":"success","nameLocation":"652:7:40","nodeType":"VariableDeclaration","scope":9238,"src":"647:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9213,"name":"bool","nodeType":"ElementaryTypeName","src":"647:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9216,"mutability":"mutable","name":"result","nameLocation":"669:6:40","nodeType":"VariableDeclaration","scope":9238,"src":"661:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9215,"name":"uint256","nodeType":"ElementaryTypeName","src":"661:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"646:30:40"},"scope":10800,"src":"586:231:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9265,"nodeType":"Block","src":"1028:113:40","statements":[{"id":9264,"nodeType":"UncheckedBlock","src":"1038:97:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9250,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9243,"src":"1066:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":9251,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9241,"src":"1070:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1066:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9257,"nodeType":"IfStatement","src":"1062:28:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1081:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1088:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9255,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1080:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9249,"id":9256,"nodeType":"Return","src":"1073:17:40"}},{"expression":{"components":[{"hexValue":"74727565","id":9258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1112:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9259,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9241,"src":"1118:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":9260,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9243,"src":"1122:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1118:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9262,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1111:13:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":9249,"id":9263,"nodeType":"Return","src":"1104:20:40"}]}]},"documentation":{"id":9239,"nodeType":"StructuredDocumentation","src":"823:109:40","text":" @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow)."},"id":9266,"implemented":true,"kind":"function","modifiers":[],"name":"trySub","nameLocation":"946:6:40","nodeType":"FunctionDefinition","parameters":{"id":9244,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9241,"mutability":"mutable","name":"a","nameLocation":"961:1:40","nodeType":"VariableDeclaration","scope":9266,"src":"953:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9240,"name":"uint256","nodeType":"ElementaryTypeName","src":"953:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9243,"mutability":"mutable","name":"b","nameLocation":"972:1:40","nodeType":"VariableDeclaration","scope":9266,"src":"964:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9242,"name":"uint256","nodeType":"ElementaryTypeName","src":"964:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"952:22:40"},"returnParameters":{"id":9249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9246,"mutability":"mutable","name":"success","nameLocation":"1003:7:40","nodeType":"VariableDeclaration","scope":9266,"src":"998:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9245,"name":"bool","nodeType":"ElementaryTypeName","src":"998:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9248,"mutability":"mutable","name":"result","nameLocation":"1020:6:40","nodeType":"VariableDeclaration","scope":9266,"src":"1012:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9247,"name":"uint256","nodeType":"ElementaryTypeName","src":"1012:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"997:30:40"},"scope":10800,"src":"937:204:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9307,"nodeType":"Block","src":"1355:417:40","statements":[{"id":9306,"nodeType":"UncheckedBlock","src":"1365:401:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9278,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9269,"src":"1623:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1628:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1623:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9285,"nodeType":"IfStatement","src":"1619:28:40","trueBody":{"expression":{"components":[{"hexValue":"74727565","id":9281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1639:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"hexValue":"30","id":9282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1645:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9283,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1638:9:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9277,"id":9284,"nodeType":"Return","src":"1631:16:40"}},{"assignments":[9287],"declarations":[{"constant":false,"id":9287,"mutability":"mutable","name":"c","nameLocation":"1669:1:40","nodeType":"VariableDeclaration","scope":9306,"src":"1661:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9286,"name":"uint256","nodeType":"ElementaryTypeName","src":"1661:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9291,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9288,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9269,"src":"1673:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9289,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9271,"src":"1677:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1673:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1661:17:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9292,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9287,"src":"1696:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9293,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9269,"src":"1700:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1696:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9295,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9271,"src":"1705:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1696:10:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9301,"nodeType":"IfStatement","src":"1692:33:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1716:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1723:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9299,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1715:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9277,"id":9300,"nodeType":"Return","src":"1708:17:40"}},{"expression":{"components":[{"hexValue":"74727565","id":9302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1747:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":9303,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9287,"src":"1753:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9304,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1746:9:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":9277,"id":9305,"nodeType":"Return","src":"1739:16:40"}]}]},"documentation":{"id":9267,"nodeType":"StructuredDocumentation","src":"1147:112:40","text":" @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow)."},"id":9308,"implemented":true,"kind":"function","modifiers":[],"name":"tryMul","nameLocation":"1273:6:40","nodeType":"FunctionDefinition","parameters":{"id":9272,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9269,"mutability":"mutable","name":"a","nameLocation":"1288:1:40","nodeType":"VariableDeclaration","scope":9308,"src":"1280:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9268,"name":"uint256","nodeType":"ElementaryTypeName","src":"1280:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9271,"mutability":"mutable","name":"b","nameLocation":"1299:1:40","nodeType":"VariableDeclaration","scope":9308,"src":"1291:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9270,"name":"uint256","nodeType":"ElementaryTypeName","src":"1291:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1279:22:40"},"returnParameters":{"id":9277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9274,"mutability":"mutable","name":"success","nameLocation":"1330:7:40","nodeType":"VariableDeclaration","scope":9308,"src":"1325:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9273,"name":"bool","nodeType":"ElementaryTypeName","src":"1325:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9276,"mutability":"mutable","name":"result","nameLocation":"1347:6:40","nodeType":"VariableDeclaration","scope":9308,"src":"1339:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9275,"name":"uint256","nodeType":"ElementaryTypeName","src":"1339:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1324:30:40"},"scope":10800,"src":"1264:508:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9335,"nodeType":"Block","src":"1987:114:40","statements":[{"id":9334,"nodeType":"UncheckedBlock","src":"1997:98:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9320,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9313,"src":"2025:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2030:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2025:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9327,"nodeType":"IfStatement","src":"2021:29:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2041:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9324,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2048:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9325,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2040:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9319,"id":9326,"nodeType":"Return","src":"2033:17:40"}},{"expression":{"components":[{"hexValue":"74727565","id":9328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2072:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9329,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9311,"src":"2078:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9330,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9313,"src":"2082:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2078:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9332,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2071:13:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":9319,"id":9333,"nodeType":"Return","src":"2064:20:40"}]}]},"documentation":{"id":9309,"nodeType":"StructuredDocumentation","src":"1778:113:40","text":" @dev Returns the division of two unsigned integers, with a success flag (no division by zero)."},"id":9336,"implemented":true,"kind":"function","modifiers":[],"name":"tryDiv","nameLocation":"1905:6:40","nodeType":"FunctionDefinition","parameters":{"id":9314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9311,"mutability":"mutable","name":"a","nameLocation":"1920:1:40","nodeType":"VariableDeclaration","scope":9336,"src":"1912:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9310,"name":"uint256","nodeType":"ElementaryTypeName","src":"1912:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9313,"mutability":"mutable","name":"b","nameLocation":"1931:1:40","nodeType":"VariableDeclaration","scope":9336,"src":"1923:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9312,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1911:22:40"},"returnParameters":{"id":9319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9316,"mutability":"mutable","name":"success","nameLocation":"1962:7:40","nodeType":"VariableDeclaration","scope":9336,"src":"1957:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9315,"name":"bool","nodeType":"ElementaryTypeName","src":"1957:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9318,"mutability":"mutable","name":"result","nameLocation":"1979:6:40","nodeType":"VariableDeclaration","scope":9336,"src":"1971:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9317,"name":"uint256","nodeType":"ElementaryTypeName","src":"1971:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1956:30:40"},"scope":10800,"src":"1896:205:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9363,"nodeType":"Block","src":"2326:114:40","statements":[{"id":9362,"nodeType":"UncheckedBlock","src":"2336:98:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9348,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9341,"src":"2364:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2369:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2364:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9355,"nodeType":"IfStatement","src":"2360:29:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2380:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9352,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2387:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9353,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2379:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9347,"id":9354,"nodeType":"Return","src":"2372:17:40"}},{"expression":{"components":[{"hexValue":"74727565","id":9356,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2411:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9357,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9339,"src":"2417:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":9358,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9341,"src":"2421:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2417:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9360,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2410:13:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":9347,"id":9361,"nodeType":"Return","src":"2403:20:40"}]}]},"documentation":{"id":9337,"nodeType":"StructuredDocumentation","src":"2107:123:40","text":" @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero)."},"id":9364,"implemented":true,"kind":"function","modifiers":[],"name":"tryMod","nameLocation":"2244:6:40","nodeType":"FunctionDefinition","parameters":{"id":9342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9339,"mutability":"mutable","name":"a","nameLocation":"2259:1:40","nodeType":"VariableDeclaration","scope":9364,"src":"2251:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9338,"name":"uint256","nodeType":"ElementaryTypeName","src":"2251:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9341,"mutability":"mutable","name":"b","nameLocation":"2270:1:40","nodeType":"VariableDeclaration","scope":9364,"src":"2262:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9340,"name":"uint256","nodeType":"ElementaryTypeName","src":"2262:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2250:22:40"},"returnParameters":{"id":9347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9344,"mutability":"mutable","name":"success","nameLocation":"2301:7:40","nodeType":"VariableDeclaration","scope":9364,"src":"2296:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9343,"name":"bool","nodeType":"ElementaryTypeName","src":"2296:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9346,"mutability":"mutable","name":"result","nameLocation":"2318:6:40","nodeType":"VariableDeclaration","scope":9364,"src":"2310:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9345,"name":"uint256","nodeType":"ElementaryTypeName","src":"2310:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2295:30:40"},"scope":10800,"src":"2235:205:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9390,"nodeType":"Block","src":"2912:207:40","statements":[{"id":9389,"nodeType":"UncheckedBlock","src":"2922:191:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9376,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9371,"src":"3060:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9377,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9369,"src":"3066:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":9378,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9371,"src":"3070:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3066:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9380,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3065:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":9383,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9367,"src":"3091:9:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":9381,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"3075:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":9382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3084:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"3075:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":9384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3075:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3065:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9386,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3064:38:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3060:42:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9375,"id":9388,"nodeType":"Return","src":"3053:49:40"}]}]},"documentation":{"id":9365,"nodeType":"StructuredDocumentation","src":"2446:374:40","text":" @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n one branch when needed, making this function more expensive."},"id":9391,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"2834:7:40","nodeType":"FunctionDefinition","parameters":{"id":9372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9367,"mutability":"mutable","name":"condition","nameLocation":"2847:9:40","nodeType":"VariableDeclaration","scope":9391,"src":"2842:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9366,"name":"bool","nodeType":"ElementaryTypeName","src":"2842:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9369,"mutability":"mutable","name":"a","nameLocation":"2866:1:40","nodeType":"VariableDeclaration","scope":9391,"src":"2858:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9368,"name":"uint256","nodeType":"ElementaryTypeName","src":"2858:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9371,"mutability":"mutable","name":"b","nameLocation":"2877:1:40","nodeType":"VariableDeclaration","scope":9391,"src":"2869:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9370,"name":"uint256","nodeType":"ElementaryTypeName","src":"2869:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2841:38:40"},"returnParameters":{"id":9375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9374,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9391,"src":"2903:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9373,"name":"uint256","nodeType":"ElementaryTypeName","src":"2903:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2902:9:40"},"scope":10800,"src":"2825:294:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9409,"nodeType":"Block","src":"3256:44:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9402,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9394,"src":"3281:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":9403,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9396,"src":"3285:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3281:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":9405,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9394,"src":"3288:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9406,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9396,"src":"3291:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9401,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9391,"src":"3273:7:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":9407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3273:20:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9400,"id":9408,"nodeType":"Return","src":"3266:27:40"}]},"documentation":{"id":9392,"nodeType":"StructuredDocumentation","src":"3125:59:40","text":" @dev Returns the largest of two numbers."},"id":9410,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"3198:3:40","nodeType":"FunctionDefinition","parameters":{"id":9397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9394,"mutability":"mutable","name":"a","nameLocation":"3210:1:40","nodeType":"VariableDeclaration","scope":9410,"src":"3202:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9393,"name":"uint256","nodeType":"ElementaryTypeName","src":"3202:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9396,"mutability":"mutable","name":"b","nameLocation":"3221:1:40","nodeType":"VariableDeclaration","scope":9410,"src":"3213:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9395,"name":"uint256","nodeType":"ElementaryTypeName","src":"3213:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3201:22:40"},"returnParameters":{"id":9400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9399,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9410,"src":"3247:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9398,"name":"uint256","nodeType":"ElementaryTypeName","src":"3247:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3246:9:40"},"scope":10800,"src":"3189:111:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9428,"nodeType":"Block","src":"3438:44:40","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9421,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9413,"src":"3463:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":9422,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9415,"src":"3467:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3463:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":9424,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9413,"src":"3470:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9425,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9415,"src":"3473:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9420,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9391,"src":"3455:7:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":9426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3455:20:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9419,"id":9427,"nodeType":"Return","src":"3448:27:40"}]},"documentation":{"id":9411,"nodeType":"StructuredDocumentation","src":"3306:60:40","text":" @dev Returns the smallest of two numbers."},"id":9429,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"3380:3:40","nodeType":"FunctionDefinition","parameters":{"id":9416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9413,"mutability":"mutable","name":"a","nameLocation":"3392:1:40","nodeType":"VariableDeclaration","scope":9429,"src":"3384:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9412,"name":"uint256","nodeType":"ElementaryTypeName","src":"3384:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9415,"mutability":"mutable","name":"b","nameLocation":"3403:1:40","nodeType":"VariableDeclaration","scope":9429,"src":"3395:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9414,"name":"uint256","nodeType":"ElementaryTypeName","src":"3395:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3383:22:40"},"returnParameters":{"id":9419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9418,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9429,"src":"3429:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9417,"name":"uint256","nodeType":"ElementaryTypeName","src":"3429:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3428:9:40"},"scope":10800,"src":"3371:111:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9451,"nodeType":"Block","src":"3666:82:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9439,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9432,"src":"3721:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":9440,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9434,"src":"3725:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3721:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9442,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3720:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9443,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9432,"src":"3731:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":9444,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9434,"src":"3735:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3731:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9446,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3730:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":9447,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3740:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"3730:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3720:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9438,"id":9450,"nodeType":"Return","src":"3713:28:40"}]},"documentation":{"id":9430,"nodeType":"StructuredDocumentation","src":"3488:102:40","text":" @dev Returns the average of two numbers. The result is rounded towards\n zero."},"id":9452,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"3604:7:40","nodeType":"FunctionDefinition","parameters":{"id":9435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9432,"mutability":"mutable","name":"a","nameLocation":"3620:1:40","nodeType":"VariableDeclaration","scope":9452,"src":"3612:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9431,"name":"uint256","nodeType":"ElementaryTypeName","src":"3612:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9434,"mutability":"mutable","name":"b","nameLocation":"3631:1:40","nodeType":"VariableDeclaration","scope":9452,"src":"3623:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9433,"name":"uint256","nodeType":"ElementaryTypeName","src":"3623:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3611:22:40"},"returnParameters":{"id":9438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9437,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9452,"src":"3657:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9436,"name":"uint256","nodeType":"ElementaryTypeName","src":"3657:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3656:9:40"},"scope":10800,"src":"3595:153:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9492,"nodeType":"Block","src":"4040:633:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9462,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9457,"src":"4054:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9463,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4059:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4054:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9473,"nodeType":"IfStatement","src":"4050:150:40","trueBody":{"id":9472,"nodeType":"Block","src":"4062:138:40","statements":[{"expression":{"arguments":[{"expression":{"id":9468,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4166:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9469,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4172:16:40","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":6827,"src":"4166:22:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9465,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4154:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4160:5:40","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"4154:11:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":9470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4154:35:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9471,"nodeType":"ExpressionStatement","src":"4154:35:40"}]}},{"id":9491,"nodeType":"UncheckedBlock","src":"4583:84:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9476,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9455,"src":"4630:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9477,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4634:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4630:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":9474,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"4614:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":9475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4623:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"4614:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":9479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4614:22:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9480,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9455,"src":"4641:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":9481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4645:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4641:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9483,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4640:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9484,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9457,"src":"4650:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4640:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":9486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4654:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4640:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9488,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4639:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4614:42:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9461,"id":9490,"nodeType":"Return","src":"4607:49:40"}]}]},"documentation":{"id":9453,"nodeType":"StructuredDocumentation","src":"3754:210:40","text":" @dev Returns the ceiling of the division of two numbers.\n This differs from standard division with `/` in that it rounds towards infinity instead\n of rounding towards zero."},"id":9493,"implemented":true,"kind":"function","modifiers":[],"name":"ceilDiv","nameLocation":"3978:7:40","nodeType":"FunctionDefinition","parameters":{"id":9458,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9455,"mutability":"mutable","name":"a","nameLocation":"3994:1:40","nodeType":"VariableDeclaration","scope":9493,"src":"3986:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9454,"name":"uint256","nodeType":"ElementaryTypeName","src":"3986:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9457,"mutability":"mutable","name":"b","nameLocation":"4005:1:40","nodeType":"VariableDeclaration","scope":9493,"src":"3997:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9456,"name":"uint256","nodeType":"ElementaryTypeName","src":"3997:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3985:22:40"},"returnParameters":{"id":9461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9460,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9493,"src":"4031:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9459,"name":"uint256","nodeType":"ElementaryTypeName","src":"4031:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4030:9:40"},"scope":10800,"src":"3969:704:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9629,"nodeType":"Block","src":"5094:4128:40","statements":[{"id":9628,"nodeType":"UncheckedBlock","src":"5104:4112:40","statements":[{"assignments":[9506],"declarations":[{"constant":false,"id":9506,"mutability":"mutable","name":"prod0","nameLocation":"5441:5:40","nodeType":"VariableDeclaration","scope":9628,"src":"5433:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9505,"name":"uint256","nodeType":"ElementaryTypeName","src":"5433:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9510,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9507,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9496,"src":"5449:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9508,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9498,"src":"5453:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5449:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5433:21:40"},{"assignments":[9512],"declarations":[{"constant":false,"id":9512,"mutability":"mutable","name":"prod1","nameLocation":"5521:5:40","nodeType":"VariableDeclaration","scope":9628,"src":"5513:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9511,"name":"uint256","nodeType":"ElementaryTypeName","src":"5513:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9513,"nodeType":"VariableDeclarationStatement","src":"5513:13:40"},{"AST":{"nodeType":"YulBlock","src":"5593:122:40","statements":[{"nodeType":"YulVariableDeclaration","src":"5611:30:40","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"5628:1:40"},{"name":"y","nodeType":"YulIdentifier","src":"5631:1:40"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5638:1:40","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"5634:3:40"},"nodeType":"YulFunctionCall","src":"5634:6:40"}],"functionName":{"name":"mulmod","nodeType":"YulIdentifier","src":"5621:6:40"},"nodeType":"YulFunctionCall","src":"5621:20:40"},"variables":[{"name":"mm","nodeType":"YulTypedName","src":"5615:2:40","type":""}]},{"nodeType":"YulAssignment","src":"5658:43:40","value":{"arguments":[{"arguments":[{"name":"mm","nodeType":"YulIdentifier","src":"5675:2:40"},{"name":"prod0","nodeType":"YulIdentifier","src":"5679:5:40"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5671:3:40"},"nodeType":"YulFunctionCall","src":"5671:14:40"},{"arguments":[{"name":"mm","nodeType":"YulIdentifier","src":"5690:2:40"},{"name":"prod0","nodeType":"YulIdentifier","src":"5694:5:40"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"5687:2:40"},"nodeType":"YulFunctionCall","src":"5687:13:40"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5667:3:40"},"nodeType":"YulFunctionCall","src":"5667:34:40"},"variableNames":[{"name":"prod1","nodeType":"YulIdentifier","src":"5658:5:40"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9506,"isOffset":false,"isSlot":false,"src":"5679:5:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"5694:5:40","valueSize":1},{"declaration":9512,"isOffset":false,"isSlot":false,"src":"5658:5:40","valueSize":1},{"declaration":9496,"isOffset":false,"isSlot":false,"src":"5628:1:40","valueSize":1},{"declaration":9498,"isOffset":false,"isSlot":false,"src":"5631:1:40","valueSize":1}],"id":9514,"nodeType":"InlineAssembly","src":"5584:131:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9515,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9512,"src":"5796:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9516,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5805:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5796:10:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9523,"nodeType":"IfStatement","src":"5792:368:40","trueBody":{"id":9522,"nodeType":"Block","src":"5808:352:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9518,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9506,"src":"6126:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9519,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"6134:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6126:19:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9504,"id":9521,"nodeType":"Return","src":"6119:26:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9524,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"6270:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":9525,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9512,"src":"6285:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6270:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9542,"nodeType":"IfStatement","src":"6266:143:40","trueBody":{"id":9541,"nodeType":"Block","src":"6292:117:40","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9533,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9531,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"6330:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9532,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6345:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6330:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"expression":{"id":9534,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"6348:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9535,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6354:16:40","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":6827,"src":"6348:22:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":9536,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"6372:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9537,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6378:14:40","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":6823,"src":"6372:20:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9530,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9391,"src":"6322:7:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":9538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6322:71:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9527,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"6310:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6316:5:40","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"6310:11:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":9539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6310:84:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9540,"nodeType":"ExpressionStatement","src":"6310:84:40"}]}},{"assignments":[9544],"declarations":[{"constant":false,"id":9544,"mutability":"mutable","name":"remainder","nameLocation":"6672:9:40","nodeType":"VariableDeclaration","scope":9628,"src":"6664:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9543,"name":"uint256","nodeType":"ElementaryTypeName","src":"6664:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9545,"nodeType":"VariableDeclarationStatement","src":"6664:17:40"},{"AST":{"nodeType":"YulBlock","src":"6704:291:40","statements":[{"nodeType":"YulAssignment","src":"6773:38:40","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6793:1:40"},{"name":"y","nodeType":"YulIdentifier","src":"6796:1:40"},{"name":"denominator","nodeType":"YulIdentifier","src":"6799:11:40"}],"functionName":{"name":"mulmod","nodeType":"YulIdentifier","src":"6786:6:40"},"nodeType":"YulFunctionCall","src":"6786:25:40"},"variableNames":[{"name":"remainder","nodeType":"YulIdentifier","src":"6773:9:40"}]},{"nodeType":"YulAssignment","src":"6893:41:40","value":{"arguments":[{"name":"prod1","nodeType":"YulIdentifier","src":"6906:5:40"},{"arguments":[{"name":"remainder","nodeType":"YulIdentifier","src":"6916:9:40"},{"name":"prod0","nodeType":"YulIdentifier","src":"6927:5:40"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6913:2:40"},"nodeType":"YulFunctionCall","src":"6913:20:40"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6902:3:40"},"nodeType":"YulFunctionCall","src":"6902:32:40"},"variableNames":[{"name":"prod1","nodeType":"YulIdentifier","src":"6893:5:40"}]},{"nodeType":"YulAssignment","src":"6951:30:40","value":{"arguments":[{"name":"prod0","nodeType":"YulIdentifier","src":"6964:5:40"},{"name":"remainder","nodeType":"YulIdentifier","src":"6971:9:40"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6960:3:40"},"nodeType":"YulFunctionCall","src":"6960:21:40"},"variableNames":[{"name":"prod0","nodeType":"YulIdentifier","src":"6951:5:40"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9500,"isOffset":false,"isSlot":false,"src":"6799:11:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"6927:5:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"6951:5:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"6964:5:40","valueSize":1},{"declaration":9512,"isOffset":false,"isSlot":false,"src":"6893:5:40","valueSize":1},{"declaration":9512,"isOffset":false,"isSlot":false,"src":"6906:5:40","valueSize":1},{"declaration":9544,"isOffset":false,"isSlot":false,"src":"6773:9:40","valueSize":1},{"declaration":9544,"isOffset":false,"isSlot":false,"src":"6916:9:40","valueSize":1},{"declaration":9544,"isOffset":false,"isSlot":false,"src":"6971:9:40","valueSize":1},{"declaration":9496,"isOffset":false,"isSlot":false,"src":"6793:1:40","valueSize":1},{"declaration":9498,"isOffset":false,"isSlot":false,"src":"6796:1:40","valueSize":1}],"id":9546,"nodeType":"InlineAssembly","src":"6695:300:40"},{"assignments":[9548],"declarations":[{"constant":false,"id":9548,"mutability":"mutable","name":"twos","nameLocation":"7207:4:40","nodeType":"VariableDeclaration","scope":9628,"src":"7199:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9547,"name":"uint256","nodeType":"ElementaryTypeName","src":"7199:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9555,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9549,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"7214:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"30","id":9550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7229:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":9551,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"7233:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7229:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9553,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7228:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7214:31:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7199:46:40"},{"AST":{"nodeType":"YulBlock","src":"7268:366:40","statements":[{"nodeType":"YulAssignment","src":"7333:37:40","value":{"arguments":[{"name":"denominator","nodeType":"YulIdentifier","src":"7352:11:40"},{"name":"twos","nodeType":"YulIdentifier","src":"7365:4:40"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"7348:3:40"},"nodeType":"YulFunctionCall","src":"7348:22:40"},"variableNames":[{"name":"denominator","nodeType":"YulIdentifier","src":"7333:11:40"}]},{"nodeType":"YulAssignment","src":"7437:25:40","value":{"arguments":[{"name":"prod0","nodeType":"YulIdentifier","src":"7450:5:40"},{"name":"twos","nodeType":"YulIdentifier","src":"7457:4:40"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"7446:3:40"},"nodeType":"YulFunctionCall","src":"7446:16:40"},"variableNames":[{"name":"prod0","nodeType":"YulIdentifier","src":"7437:5:40"}]},{"nodeType":"YulAssignment","src":"7581:39:40","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7601:1:40","type":"","value":"0"},{"name":"twos","nodeType":"YulIdentifier","src":"7604:4:40"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7597:3:40"},"nodeType":"YulFunctionCall","src":"7597:12:40"},{"name":"twos","nodeType":"YulIdentifier","src":"7611:4:40"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"7593:3:40"},"nodeType":"YulFunctionCall","src":"7593:23:40"},{"kind":"number","nodeType":"YulLiteral","src":"7618:1:40","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7589:3:40"},"nodeType":"YulFunctionCall","src":"7589:31:40"},"variableNames":[{"name":"twos","nodeType":"YulIdentifier","src":"7581:4:40"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9500,"isOffset":false,"isSlot":false,"src":"7333:11:40","valueSize":1},{"declaration":9500,"isOffset":false,"isSlot":false,"src":"7352:11:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"7437:5:40","valueSize":1},{"declaration":9506,"isOffset":false,"isSlot":false,"src":"7450:5:40","valueSize":1},{"declaration":9548,"isOffset":false,"isSlot":false,"src":"7365:4:40","valueSize":1},{"declaration":9548,"isOffset":false,"isSlot":false,"src":"7457:4:40","valueSize":1},{"declaration":9548,"isOffset":false,"isSlot":false,"src":"7581:4:40","valueSize":1},{"declaration":9548,"isOffset":false,"isSlot":false,"src":"7604:4:40","valueSize":1},{"declaration":9548,"isOffset":false,"isSlot":false,"src":"7611:4:40","valueSize":1}],"id":9556,"nodeType":"InlineAssembly","src":"7259:375:40"},{"expression":{"id":9561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9557,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9506,"src":"7700:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9558,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9512,"src":"7709:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9559,"name":"twos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9548,"src":"7717:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7709:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7700:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9562,"nodeType":"ExpressionStatement","src":"7700:21:40"},{"assignments":[9564],"declarations":[{"constant":false,"id":9564,"mutability":"mutable","name":"inverse","nameLocation":"8064:7:40","nodeType":"VariableDeclaration","scope":9628,"src":"8056:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9563,"name":"uint256","nodeType":"ElementaryTypeName","src":"8056:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9571,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":9565,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8075:1:40","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9566,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8079:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8075:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9568,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8074:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"hexValue":"32","id":9569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8094:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"8074:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8056:39:40"},{"expression":{"id":9578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9572,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8312:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8323:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9574,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8327:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9575,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8341:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8327:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8323:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8312:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9579,"nodeType":"ExpressionStatement","src":"8312:36:40"},{"expression":{"id":9586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9580,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8382:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9581,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8393:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9582,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8397:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9583,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8411:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8397:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8393:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8382:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9587,"nodeType":"ExpressionStatement","src":"8382:36:40"},{"expression":{"id":9594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9588,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8454:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9589,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8465:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9590,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8469:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9591,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8483:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8469:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8465:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8454:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9595,"nodeType":"ExpressionStatement","src":"8454:36:40"},{"expression":{"id":9602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9596,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8525:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8536:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9598,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8540:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9599,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8554:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8540:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8536:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8525:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9603,"nodeType":"ExpressionStatement","src":"8525:36:40"},{"expression":{"id":9610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9604,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8598:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8609:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9606,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8613:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9607,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8627:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8613:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8609:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8598:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9611,"nodeType":"ExpressionStatement","src":"8598:36:40"},{"expression":{"id":9618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9612,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8672:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":9613,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8683:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9614,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"8687:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9615,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"8701:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8687:21:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8683:25:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8672:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9619,"nodeType":"ExpressionStatement","src":"8672:36:40"},{"expression":{"id":9624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9620,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9503,"src":"9154:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9621,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9506,"src":"9163:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9622,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9564,"src":"9171:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9163:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9154:24:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9625,"nodeType":"ExpressionStatement","src":"9154:24:40"},{"expression":{"id":9626,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9503,"src":"9199:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9504,"id":9627,"nodeType":"Return","src":"9192:13:40"}]}]},"documentation":{"id":9494,"nodeType":"StructuredDocumentation","src":"4679:312:40","text":" @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n denominator == 0.\n Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n Uniswap Labs also under MIT license."},"id":9630,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"5005:6:40","nodeType":"FunctionDefinition","parameters":{"id":9501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9496,"mutability":"mutable","name":"x","nameLocation":"5020:1:40","nodeType":"VariableDeclaration","scope":9630,"src":"5012:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9495,"name":"uint256","nodeType":"ElementaryTypeName","src":"5012:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9498,"mutability":"mutable","name":"y","nameLocation":"5031:1:40","nodeType":"VariableDeclaration","scope":9630,"src":"5023:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9497,"name":"uint256","nodeType":"ElementaryTypeName","src":"5023:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9500,"mutability":"mutable","name":"denominator","nameLocation":"5042:11:40","nodeType":"VariableDeclaration","scope":9630,"src":"5034:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9499,"name":"uint256","nodeType":"ElementaryTypeName","src":"5034:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5011:43:40"},"returnParameters":{"id":9504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9503,"mutability":"mutable","name":"result","nameLocation":"5086:6:40","nodeType":"VariableDeclaration","scope":9630,"src":"5078:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9502,"name":"uint256","nodeType":"ElementaryTypeName","src":"5078:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5077:16:40"},"scope":10800,"src":"4996:4226:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9666,"nodeType":"Block","src":"9461:128:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9646,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9633,"src":"9485:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9647,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9635,"src":"9488:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9648,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9637,"src":"9491:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9645,"name":"mulDiv","nodeType":"Identifier","overloadedDeclarations":[9630,9667],"referencedDeclaration":9630,"src":"9478:6:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":9649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9478:25:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9653,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9640,"src":"9539:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":9652,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"9522:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9206_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":9654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9522:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9656,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9633,"src":"9559:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9657,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9635,"src":"9562:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9658,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9637,"src":"9565:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9655,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"9552:6:40","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":9659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9552:25:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9660,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9580:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9552:29:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9522:59:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":9650,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"9506:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":9651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9515:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"9506:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":9663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9506:76:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9478:104:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9644,"id":9665,"nodeType":"Return","src":"9471:111:40"}]},"documentation":{"id":9631,"nodeType":"StructuredDocumentation","src":"9228:118:40","text":" @dev Calculates x * y / denominator with full precision, following the selected rounding direction."},"id":9667,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"9360:6:40","nodeType":"FunctionDefinition","parameters":{"id":9641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9633,"mutability":"mutable","name":"x","nameLocation":"9375:1:40","nodeType":"VariableDeclaration","scope":9667,"src":"9367:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9632,"name":"uint256","nodeType":"ElementaryTypeName","src":"9367:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9635,"mutability":"mutable","name":"y","nameLocation":"9386:1:40","nodeType":"VariableDeclaration","scope":9667,"src":"9378:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9634,"name":"uint256","nodeType":"ElementaryTypeName","src":"9378:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9637,"mutability":"mutable","name":"denominator","nameLocation":"9397:11:40","nodeType":"VariableDeclaration","scope":9667,"src":"9389:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9636,"name":"uint256","nodeType":"ElementaryTypeName","src":"9389:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9640,"mutability":"mutable","name":"rounding","nameLocation":"9419:8:40","nodeType":"VariableDeclaration","scope":9667,"src":"9410:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":9639,"nodeType":"UserDefinedTypeName","pathNode":{"id":9638,"name":"Rounding","nameLocations":["9410:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"9410:8:40"},"referencedDeclaration":9206,"src":"9410:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"9366:62:40"},"returnParameters":{"id":9644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9643,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9667,"src":"9452:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9642,"name":"uint256","nodeType":"ElementaryTypeName","src":"9452:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9451:9:40"},"scope":10800,"src":"9351:238:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9763,"nodeType":"Block","src":"10223:1849:40","statements":[{"id":9762,"nodeType":"UncheckedBlock","src":"10233:1833:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9677,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9672,"src":"10261:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10266:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10261:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9682,"nodeType":"IfStatement","src":"10257:20:40","trueBody":{"expression":{"hexValue":"30","id":9680,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10276:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":9676,"id":9681,"nodeType":"Return","src":"10269:8:40"}},{"assignments":[9684],"declarations":[{"constant":false,"id":9684,"mutability":"mutable","name":"remainder","nameLocation":"10756:9:40","nodeType":"VariableDeclaration","scope":9762,"src":"10748:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9683,"name":"uint256","nodeType":"ElementaryTypeName","src":"10748:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9688,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9685,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9670,"src":"10768:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":9686,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9672,"src":"10772:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10768:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10748:25:40"},{"assignments":[9690],"declarations":[{"constant":false,"id":9690,"mutability":"mutable","name":"gcd","nameLocation":"10795:3:40","nodeType":"VariableDeclaration","scope":9762,"src":"10787:11:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9689,"name":"uint256","nodeType":"ElementaryTypeName","src":"10787:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9692,"initialValue":{"id":9691,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9672,"src":"10801:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10787:15:40"},{"assignments":[9694],"declarations":[{"constant":false,"id":9694,"mutability":"mutable","name":"x","nameLocation":"10945:1:40","nodeType":"VariableDeclaration","scope":9762,"src":"10938:8:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":9693,"name":"int256","nodeType":"ElementaryTypeName","src":"10938:6:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":9696,"initialValue":{"hexValue":"30","id":9695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10949:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10938:12:40"},{"assignments":[9698],"declarations":[{"constant":false,"id":9698,"mutability":"mutable","name":"y","nameLocation":"10971:1:40","nodeType":"VariableDeclaration","scope":9762,"src":"10964:8:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":9697,"name":"int256","nodeType":"ElementaryTypeName","src":"10964:6:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":9700,"initialValue":{"hexValue":"31","id":9699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10975:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"10964:12:40"},{"body":{"id":9737,"nodeType":"Block","src":"11014:882:40","statements":[{"assignments":[9705],"declarations":[{"constant":false,"id":9705,"mutability":"mutable","name":"quotient","nameLocation":"11040:8:40","nodeType":"VariableDeclaration","scope":9737,"src":"11032:16:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9704,"name":"uint256","nodeType":"ElementaryTypeName","src":"11032:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9709,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9706,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9690,"src":"11051:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9707,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"11057:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11051:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11032:34:40"},{"expression":{"id":9720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":9710,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9690,"src":"11086:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9711,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"11091:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9712,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"11085:16:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":9713,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"11191:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9714,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9690,"src":"11436:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9715,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"11442:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9716,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9705,"src":"11454:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11442:20:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11436:26:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9719,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11104:376:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"11085:395:40","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9721,"nodeType":"ExpressionStatement","src":"11085:395:40"},{"expression":{"id":9735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":9722,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"11500:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":9723,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9698,"src":"11503:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":9724,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"11499:6:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":9725,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9698,"src":"11585:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":9733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9726,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"11839:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":9732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9727,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9698,"src":"11843:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":9730,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9705,"src":"11854:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9729,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11847:6:40","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":9728,"name":"int256","nodeType":"ElementaryTypeName","src":"11847:6:40","typeDescriptions":{}}},"id":9731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11847:16:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11843:20:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11839:24:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":9734,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11508:373:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"src":"11499:382:40","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9736,"nodeType":"ExpressionStatement","src":"11499:382:40"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9701,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"10998:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":9702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11011:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10998:14:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9738,"nodeType":"WhileStatement","src":"10991:905:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9739,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9690,"src":"11914:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":9740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11921:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11914:8:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9744,"nodeType":"IfStatement","src":"11910:22:40","trueBody":{"expression":{"hexValue":"30","id":9742,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11931:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":9676,"id":9743,"nodeType":"Return","src":"11924:8:40"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":9748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9746,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"11983:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":9747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11987:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11983:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9749,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9672,"src":"11990:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":9753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"12002:2:40","subExpression":{"id":9752,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"12003:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":9751,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11994:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":9750,"name":"uint256","nodeType":"ElementaryTypeName","src":"11994:7:40","typeDescriptions":{}}},"id":9754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11994:11:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11990:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":9758,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"12015:1:40","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":9757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12007:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":9756,"name":"uint256","nodeType":"ElementaryTypeName","src":"12007:7:40","typeDescriptions":{}}},"id":9759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12007:10:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9745,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9391,"src":"11975:7:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":9760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11975:43:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9676,"id":9761,"nodeType":"Return","src":"11968:50:40"}]}]},"documentation":{"id":9668,"nodeType":"StructuredDocumentation","src":"9595:553:40","text":" @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n If the input value is not inversible, 0 is returned.\n NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}."},"id":9764,"implemented":true,"kind":"function","modifiers":[],"name":"invMod","nameLocation":"10162:6:40","nodeType":"FunctionDefinition","parameters":{"id":9673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9670,"mutability":"mutable","name":"a","nameLocation":"10177:1:40","nodeType":"VariableDeclaration","scope":9764,"src":"10169:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9669,"name":"uint256","nodeType":"ElementaryTypeName","src":"10169:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9672,"mutability":"mutable","name":"n","nameLocation":"10188:1:40","nodeType":"VariableDeclaration","scope":9764,"src":"10180:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9671,"name":"uint256","nodeType":"ElementaryTypeName","src":"10180:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10168:22:40"},"returnParameters":{"id":9676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9675,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9764,"src":"10214:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9674,"name":"uint256","nodeType":"ElementaryTypeName","src":"10214:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10213:9:40"},"scope":10800,"src":"10153:1919:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9784,"nodeType":"Block","src":"12672:82:40","statements":[{"id":9783,"nodeType":"UncheckedBlock","src":"12682:66:40","statements":[{"expression":{"arguments":[{"id":9776,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9767,"src":"12725:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9777,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9769,"src":"12728:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":9778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12732:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"12728:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9780,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9769,"src":"12735:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9774,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"12713:4:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":9775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12718:6:40","memberName":"modExp","nodeType":"MemberAccess","referencedDeclaration":9821,"src":"12713:11:40","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (uint256)"}},"id":9781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12713:24:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9773,"id":9782,"nodeType":"Return","src":"12706:31:40"}]}]},"documentation":{"id":9765,"nodeType":"StructuredDocumentation","src":"12078:514:40","text":" @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n NOTE: this function does NOT check that `p` is a prime greater than `2`."},"id":9785,"implemented":true,"kind":"function","modifiers":[],"name":"invModPrime","nameLocation":"12606:11:40","nodeType":"FunctionDefinition","parameters":{"id":9770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9767,"mutability":"mutable","name":"a","nameLocation":"12626:1:40","nodeType":"VariableDeclaration","scope":9785,"src":"12618:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9766,"name":"uint256","nodeType":"ElementaryTypeName","src":"12618:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9769,"mutability":"mutable","name":"p","nameLocation":"12637:1:40","nodeType":"VariableDeclaration","scope":9785,"src":"12629:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9768,"name":"uint256","nodeType":"ElementaryTypeName","src":"12629:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12617:22:40"},"returnParameters":{"id":9773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9772,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9785,"src":"12663:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9771,"name":"uint256","nodeType":"ElementaryTypeName","src":"12663:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12662:9:40"},"scope":10800,"src":"12597:157:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9820,"nodeType":"Block","src":"13524:174:40","statements":[{"assignments":[9798,9800],"declarations":[{"constant":false,"id":9798,"mutability":"mutable","name":"success","nameLocation":"13540:7:40","nodeType":"VariableDeclaration","scope":9820,"src":"13535:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9797,"name":"bool","nodeType":"ElementaryTypeName","src":"13535:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9800,"mutability":"mutable","name":"result","nameLocation":"13557:6:40","nodeType":"VariableDeclaration","scope":9820,"src":"13549:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9799,"name":"uint256","nodeType":"ElementaryTypeName","src":"13549:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9806,"initialValue":{"arguments":[{"id":9802,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9788,"src":"13577:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9803,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9790,"src":"13580:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9804,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9792,"src":"13583:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9801,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[9845,9927],"referencedDeclaration":9845,"src":"13567:9:40","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (bool,uint256)"}},"id":9805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13567:18:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"13534:51:40"},{"condition":{"id":9808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"13599:8:40","subExpression":{"id":9807,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9798,"src":"13600:7:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9817,"nodeType":"IfStatement","src":"13595:74:40","trueBody":{"id":9816,"nodeType":"Block","src":"13609:60:40","statements":[{"expression":{"arguments":[{"expression":{"id":9812,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"13635:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13641:16:40","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":6827,"src":"13635:22:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9809,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"13623:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13629:5:40","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"13623:11:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":9814,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13623:35:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9815,"nodeType":"ExpressionStatement","src":"13623:35:40"}]}},{"expression":{"id":9818,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9800,"src":"13685:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9796,"id":9819,"nodeType":"Return","src":"13678:13:40"}]},"documentation":{"id":9786,"nodeType":"StructuredDocumentation","src":"12760:678:40","text":" @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n Requirements:\n - modulus can't be zero\n - underlying staticcall to precompile must succeed\n IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n sure the chain you're using it on supports the precompiled contract for modular exponentiation\n at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n interpreted as 0."},"id":9821,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"13452:6:40","nodeType":"FunctionDefinition","parameters":{"id":9793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9788,"mutability":"mutable","name":"b","nameLocation":"13467:1:40","nodeType":"VariableDeclaration","scope":9821,"src":"13459:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9787,"name":"uint256","nodeType":"ElementaryTypeName","src":"13459:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9790,"mutability":"mutable","name":"e","nameLocation":"13478:1:40","nodeType":"VariableDeclaration","scope":9821,"src":"13470:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9789,"name":"uint256","nodeType":"ElementaryTypeName","src":"13470:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9792,"mutability":"mutable","name":"m","nameLocation":"13489:1:40","nodeType":"VariableDeclaration","scope":9821,"src":"13481:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9791,"name":"uint256","nodeType":"ElementaryTypeName","src":"13481:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13458:33:40"},"returnParameters":{"id":9796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9795,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9821,"src":"13515:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9794,"name":"uint256","nodeType":"ElementaryTypeName","src":"13515:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13514:9:40"},"scope":10800,"src":"13443:255:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9844,"nodeType":"Block","src":"14552:1493:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9835,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9828,"src":"14566:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9836,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14571:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14566:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9842,"nodeType":"IfStatement","src":"14562:29:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9838,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"14582:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":9839,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14589:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":9840,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"14581:10:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":9834,"id":9841,"nodeType":"Return","src":"14574:17:40"}},{"AST":{"nodeType":"YulBlock","src":"14626:1413:40","statements":[{"nodeType":"YulVariableDeclaration","src":"14640:22:40","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14657:4:40","type":"","value":"0x40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14651:5:40"},"nodeType":"YulFunctionCall","src":"14651:11:40"},"variables":[{"name":"ptr","nodeType":"YulTypedName","src":"14644:3:40","type":""}]},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15570:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15575:4:40","type":"","value":"0x20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15563:6:40"},"nodeType":"YulFunctionCall","src":"15563:17:40"},"nodeType":"YulExpressionStatement","src":"15563:17:40"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15604:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15609:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15600:3:40"},"nodeType":"YulFunctionCall","src":"15600:14:40"},{"kind":"number","nodeType":"YulLiteral","src":"15616:4:40","type":"","value":"0x20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15593:6:40"},"nodeType":"YulFunctionCall","src":"15593:28:40"},"nodeType":"YulExpressionStatement","src":"15593:28:40"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15645:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15650:4:40","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15641:3:40"},"nodeType":"YulFunctionCall","src":"15641:14:40"},{"kind":"number","nodeType":"YulLiteral","src":"15657:4:40","type":"","value":"0x20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15634:6:40"},"nodeType":"YulFunctionCall","src":"15634:28:40"},"nodeType":"YulExpressionStatement","src":"15634:28:40"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15686:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15691:4:40","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15682:3:40"},"nodeType":"YulFunctionCall","src":"15682:14:40"},{"name":"b","nodeType":"YulIdentifier","src":"15698:1:40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15675:6:40"},"nodeType":"YulFunctionCall","src":"15675:25:40"},"nodeType":"YulExpressionStatement","src":"15675:25:40"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15724:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15729:4:40","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15720:3:40"},"nodeType":"YulFunctionCall","src":"15720:14:40"},{"name":"e","nodeType":"YulIdentifier","src":"15736:1:40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15713:6:40"},"nodeType":"YulFunctionCall","src":"15713:25:40"},"nodeType":"YulExpressionStatement","src":"15713:25:40"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"15762:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15767:4:40","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15758:3:40"},"nodeType":"YulFunctionCall","src":"15758:14:40"},{"name":"m","nodeType":"YulIdentifier","src":"15774:1:40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15751:6:40"},"nodeType":"YulFunctionCall","src":"15751:25:40"},"nodeType":"YulExpressionStatement","src":"15751:25:40"},{"nodeType":"YulAssignment","src":"15938:57:40","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"15960:3:40"},"nodeType":"YulFunctionCall","src":"15960:5:40"},{"kind":"number","nodeType":"YulLiteral","src":"15967:4:40","type":"","value":"0x05"},{"name":"ptr","nodeType":"YulIdentifier","src":"15973:3:40"},{"kind":"number","nodeType":"YulLiteral","src":"15978:4:40","type":"","value":"0xc0"},{"kind":"number","nodeType":"YulLiteral","src":"15984:4:40","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"15990:4:40","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nodeType":"YulIdentifier","src":"15949:10:40"},"nodeType":"YulFunctionCall","src":"15949:46:40"},"variableNames":[{"name":"success","nodeType":"YulIdentifier","src":"15938:7:40"}]},{"nodeType":"YulAssignment","src":"16008:21:40","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16024:4:40","type":"","value":"0x00"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16018:5:40"},"nodeType":"YulFunctionCall","src":"16018:11:40"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"16008:6:40"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9824,"isOffset":false,"isSlot":false,"src":"15698:1:40","valueSize":1},{"declaration":9826,"isOffset":false,"isSlot":false,"src":"15736:1:40","valueSize":1},{"declaration":9828,"isOffset":false,"isSlot":false,"src":"15774:1:40","valueSize":1},{"declaration":9833,"isOffset":false,"isSlot":false,"src":"16008:6:40","valueSize":1},{"declaration":9831,"isOffset":false,"isSlot":false,"src":"15938:7:40","valueSize":1}],"flags":["memory-safe"],"id":9843,"nodeType":"InlineAssembly","src":"14601:1438:40"}]},"documentation":{"id":9822,"nodeType":"StructuredDocumentation","src":"13704:738:40","text":" @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n to operate modulo 0 or if the underlying precompile reverted.\n IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n of a revert, but the result may be incorrectly interpreted as 0."},"id":9845,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"14456:9:40","nodeType":"FunctionDefinition","parameters":{"id":9829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9824,"mutability":"mutable","name":"b","nameLocation":"14474:1:40","nodeType":"VariableDeclaration","scope":9845,"src":"14466:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9823,"name":"uint256","nodeType":"ElementaryTypeName","src":"14466:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9826,"mutability":"mutable","name":"e","nameLocation":"14485:1:40","nodeType":"VariableDeclaration","scope":9845,"src":"14477:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9825,"name":"uint256","nodeType":"ElementaryTypeName","src":"14477:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9828,"mutability":"mutable","name":"m","nameLocation":"14496:1:40","nodeType":"VariableDeclaration","scope":9845,"src":"14488:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9827,"name":"uint256","nodeType":"ElementaryTypeName","src":"14488:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14465:33:40"},"returnParameters":{"id":9834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9831,"mutability":"mutable","name":"success","nameLocation":"14527:7:40","nodeType":"VariableDeclaration","scope":9845,"src":"14522:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9830,"name":"bool","nodeType":"ElementaryTypeName","src":"14522:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9833,"mutability":"mutable","name":"result","nameLocation":"14544:6:40","nodeType":"VariableDeclaration","scope":9845,"src":"14536:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9832,"name":"uint256","nodeType":"ElementaryTypeName","src":"14536:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14521:30:40"},"scope":10800,"src":"14447:1598:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9880,"nodeType":"Block","src":"16242:179:40","statements":[{"assignments":[9858,9860],"declarations":[{"constant":false,"id":9858,"mutability":"mutable","name":"success","nameLocation":"16258:7:40","nodeType":"VariableDeclaration","scope":9880,"src":"16253:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9857,"name":"bool","nodeType":"ElementaryTypeName","src":"16253:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9860,"mutability":"mutable","name":"result","nameLocation":"16280:6:40","nodeType":"VariableDeclaration","scope":9880,"src":"16267:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9859,"name":"bytes","nodeType":"ElementaryTypeName","src":"16267:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":9866,"initialValue":{"arguments":[{"id":9862,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9848,"src":"16300:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9863,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9850,"src":"16303:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9864,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9852,"src":"16306:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9861,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[9845,9927],"referencedDeclaration":9927,"src":"16290:9:40","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,bytes memory,bytes memory) view returns (bool,bytes memory)"}},"id":9865,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16290:18:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"16252:56:40"},{"condition":{"id":9868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16322:8:40","subExpression":{"id":9867,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9858,"src":"16323:7:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9877,"nodeType":"IfStatement","src":"16318:74:40","trueBody":{"id":9876,"nodeType":"Block","src":"16332:60:40","statements":[{"expression":{"arguments":[{"expression":{"id":9872,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"16358:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9873,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16364:16:40","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":6827,"src":"16358:22:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9869,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"16346:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":9871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16352:5:40","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"16346:11:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":9874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16346:35:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9875,"nodeType":"ExpressionStatement","src":"16346:35:40"}]}},{"expression":{"id":9878,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9860,"src":"16408:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":9856,"id":9879,"nodeType":"Return","src":"16401:13:40"}]},"documentation":{"id":9846,"nodeType":"StructuredDocumentation","src":"16051:85:40","text":" @dev Variant of {modExp} that supports inputs of arbitrary length."},"id":9881,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"16150:6:40","nodeType":"FunctionDefinition","parameters":{"id":9853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9848,"mutability":"mutable","name":"b","nameLocation":"16170:1:40","nodeType":"VariableDeclaration","scope":9881,"src":"16157:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9847,"name":"bytes","nodeType":"ElementaryTypeName","src":"16157:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9850,"mutability":"mutable","name":"e","nameLocation":"16186:1:40","nodeType":"VariableDeclaration","scope":9881,"src":"16173:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9849,"name":"bytes","nodeType":"ElementaryTypeName","src":"16173:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9852,"mutability":"mutable","name":"m","nameLocation":"16202:1:40","nodeType":"VariableDeclaration","scope":9881,"src":"16189:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9851,"name":"bytes","nodeType":"ElementaryTypeName","src":"16189:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16156:48:40"},"returnParameters":{"id":9856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9855,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9881,"src":"16228:12:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9854,"name":"bytes","nodeType":"ElementaryTypeName","src":"16228:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16227:14:40"},"scope":10800,"src":"16141:280:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9926,"nodeType":"Block","src":"16675:771:40","statements":[{"condition":{"arguments":[{"id":9896,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9888,"src":"16700:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9895,"name":"_zeroBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9960,"src":"16689:10:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (bytes memory) pure returns (bool)"}},"id":9897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16689:13:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9905,"nodeType":"IfStatement","src":"16685:47:40","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":9898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16712:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":9901,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16729:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9900,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"16719:9:40","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":9899,"name":"bytes","nodeType":"ElementaryTypeName","src":"16723:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":9902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16719:12:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":9903,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"16711:21:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"functionReturnParameters":9894,"id":9904,"nodeType":"Return","src":"16704:28:40"}},{"assignments":[9907],"declarations":[{"constant":false,"id":9907,"mutability":"mutable","name":"mLen","nameLocation":"16751:4:40","nodeType":"VariableDeclaration","scope":9926,"src":"16743:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9906,"name":"uint256","nodeType":"ElementaryTypeName","src":"16743:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9910,"initialValue":{"expression":{"id":9908,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9888,"src":"16758:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16760:6:40","memberName":"length","nodeType":"MemberAccess","src":"16758:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16743:23:40"},{"expression":{"id":9923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9911,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9893,"src":"16848:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":9914,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9884,"src":"16874:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16876:6:40","memberName":"length","nodeType":"MemberAccess","src":"16874:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":9916,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9886,"src":"16884:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16886:6:40","memberName":"length","nodeType":"MemberAccess","src":"16884:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9918,"name":"mLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9907,"src":"16894:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9919,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9884,"src":"16900:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9920,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9886,"src":"16903:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9921,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9888,"src":"16906:1:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9912,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"16857:3:40","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9913,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16861:12:40","memberName":"encodePacked","nodeType":"MemberAccess","src":"16857:16:40","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16857:51:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"16848:60:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9924,"nodeType":"ExpressionStatement","src":"16848:60:40"},{"AST":{"nodeType":"YulBlock","src":"16944:496:40","statements":[{"nodeType":"YulVariableDeclaration","src":"16958:32:40","value":{"arguments":[{"name":"result","nodeType":"YulIdentifier","src":"16977:6:40"},{"kind":"number","nodeType":"YulLiteral","src":"16985:4:40","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16973:3:40"},"nodeType":"YulFunctionCall","src":"16973:17:40"},"variables":[{"name":"dataPtr","nodeType":"YulTypedName","src":"16962:7:40","type":""}]},{"nodeType":"YulAssignment","src":"17080:73:40","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"17102:3:40"},"nodeType":"YulFunctionCall","src":"17102:5:40"},{"kind":"number","nodeType":"YulLiteral","src":"17109:4:40","type":"","value":"0x05"},{"name":"dataPtr","nodeType":"YulIdentifier","src":"17115:7:40"},{"arguments":[{"name":"result","nodeType":"YulIdentifier","src":"17130:6:40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17124:5:40"},"nodeType":"YulFunctionCall","src":"17124:13:40"},{"name":"dataPtr","nodeType":"YulIdentifier","src":"17139:7:40"},{"name":"mLen","nodeType":"YulIdentifier","src":"17148:4:40"}],"functionName":{"name":"staticcall","nodeType":"YulIdentifier","src":"17091:10:40"},"nodeType":"YulFunctionCall","src":"17091:62:40"},"variableNames":[{"name":"success","nodeType":"YulIdentifier","src":"17080:7:40"}]},{"expression":{"arguments":[{"name":"result","nodeType":"YulIdentifier","src":"17309:6:40"},{"name":"mLen","nodeType":"YulIdentifier","src":"17317:4:40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17302:6:40"},"nodeType":"YulFunctionCall","src":"17302:20:40"},"nodeType":"YulExpressionStatement","src":"17302:20:40"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17405:4:40","type":"","value":"0x40"},{"arguments":[{"name":"dataPtr","nodeType":"YulIdentifier","src":"17415:7:40"},{"name":"mLen","nodeType":"YulIdentifier","src":"17424:4:40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17411:3:40"},"nodeType":"YulFunctionCall","src":"17411:18:40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17398:6:40"},"nodeType":"YulFunctionCall","src":"17398:32:40"},"nodeType":"YulExpressionStatement","src":"17398:32:40"}]},"evmVersion":"paris","externalReferences":[{"declaration":9907,"isOffset":false,"isSlot":false,"src":"17148:4:40","valueSize":1},{"declaration":9907,"isOffset":false,"isSlot":false,"src":"17317:4:40","valueSize":1},{"declaration":9907,"isOffset":false,"isSlot":false,"src":"17424:4:40","valueSize":1},{"declaration":9893,"isOffset":false,"isSlot":false,"src":"16977:6:40","valueSize":1},{"declaration":9893,"isOffset":false,"isSlot":false,"src":"17130:6:40","valueSize":1},{"declaration":9893,"isOffset":false,"isSlot":false,"src":"17309:6:40","valueSize":1},{"declaration":9891,"isOffset":false,"isSlot":false,"src":"17080:7:40","valueSize":1}],"flags":["memory-safe"],"id":9925,"nodeType":"InlineAssembly","src":"16919:521:40"}]},"documentation":{"id":9882,"nodeType":"StructuredDocumentation","src":"16427:88:40","text":" @dev Variant of {tryModExp} that supports inputs of arbitrary length."},"id":9927,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"16529:9:40","nodeType":"FunctionDefinition","parameters":{"id":9889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9884,"mutability":"mutable","name":"b","nameLocation":"16561:1:40","nodeType":"VariableDeclaration","scope":9927,"src":"16548:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9883,"name":"bytes","nodeType":"ElementaryTypeName","src":"16548:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9886,"mutability":"mutable","name":"e","nameLocation":"16585:1:40","nodeType":"VariableDeclaration","scope":9927,"src":"16572:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9885,"name":"bytes","nodeType":"ElementaryTypeName","src":"16572:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9888,"mutability":"mutable","name":"m","nameLocation":"16609:1:40","nodeType":"VariableDeclaration","scope":9927,"src":"16596:14:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9887,"name":"bytes","nodeType":"ElementaryTypeName","src":"16596:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16538:78:40"},"returnParameters":{"id":9894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9891,"mutability":"mutable","name":"success","nameLocation":"16645:7:40","nodeType":"VariableDeclaration","scope":9927,"src":"16640:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9890,"name":"bool","nodeType":"ElementaryTypeName","src":"16640:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9893,"mutability":"mutable","name":"result","nameLocation":"16667:6:40","nodeType":"VariableDeclaration","scope":9927,"src":"16654:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9892,"name":"bytes","nodeType":"ElementaryTypeName","src":"16654:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16639:35:40"},"scope":10800,"src":"16520:926:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9959,"nodeType":"Block","src":"17601:176:40","statements":[{"body":{"id":9955,"nodeType":"Block","src":"17658:92:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":9950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":9946,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9930,"src":"17676:9:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9948,"indexExpression":{"id":9947,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9936,"src":"17686:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17676:12:40","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":9949,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17692:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17676:17:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9954,"nodeType":"IfStatement","src":"17672:68:40","trueBody":{"id":9953,"nodeType":"Block","src":"17695:45:40","statements":[{"expression":{"hexValue":"66616c7365","id":9951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17720:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":9934,"id":9952,"nodeType":"Return","src":"17713:12:40"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9939,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9936,"src":"17631:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":9940,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9930,"src":"17635:9:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17645:6:40","memberName":"length","nodeType":"MemberAccess","src":"17635:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17631:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9956,"initializationExpression":{"assignments":[9936],"declarations":[{"constant":false,"id":9936,"mutability":"mutable","name":"i","nameLocation":"17624:1:40","nodeType":"VariableDeclaration","scope":9956,"src":"17616:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9935,"name":"uint256","nodeType":"ElementaryTypeName","src":"17616:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9938,"initialValue":{"hexValue":"30","id":9937,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17628:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17616:13:40"},"loopExpression":{"expression":{"id":9944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"17653:3:40","subExpression":{"id":9943,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9936,"src":"17655:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9945,"nodeType":"ExpressionStatement","src":"17653:3:40"},"nodeType":"ForStatement","src":"17611:139:40"},{"expression":{"hexValue":"74727565","id":9957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17766:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":9934,"id":9958,"nodeType":"Return","src":"17759:11:40"}]},"documentation":{"id":9928,"nodeType":"StructuredDocumentation","src":"17452:72:40","text":" @dev Returns whether the provided byte array is zero."},"id":9960,"implemented":true,"kind":"function","modifiers":[],"name":"_zeroBytes","nameLocation":"17538:10:40","nodeType":"FunctionDefinition","parameters":{"id":9931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9930,"mutability":"mutable","name":"byteArray","nameLocation":"17562:9:40","nodeType":"VariableDeclaration","scope":9960,"src":"17549:22:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9929,"name":"bytes","nodeType":"ElementaryTypeName","src":"17549:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"17548:24:40"},"returnParameters":{"id":9934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9933,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9960,"src":"17595:4:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9932,"name":"bool","nodeType":"ElementaryTypeName","src":"17595:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"17594:6:40"},"scope":10800,"src":"17529:248:40","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":10178,"nodeType":"Block","src":"18137:5124:40","statements":[{"id":10177,"nodeType":"UncheckedBlock","src":"18147:5108:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9968,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"18241:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"31","id":9969,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18246:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"18241:6:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9974,"nodeType":"IfStatement","src":"18237:53:40","trueBody":{"id":9973,"nodeType":"Block","src":"18249:41:40","statements":[{"expression":{"id":9971,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"18274:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9967,"id":9972,"nodeType":"Return","src":"18267:8:40"}]}},{"assignments":[9976],"declarations":[{"constant":false,"id":9976,"mutability":"mutable","name":"aa","nameLocation":"19225:2:40","nodeType":"VariableDeclaration","scope":10177,"src":"19217:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9975,"name":"uint256","nodeType":"ElementaryTypeName","src":"19217:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9978,"initialValue":{"id":9977,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"19230:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19217:14:40"},{"assignments":[9980],"declarations":[{"constant":false,"id":9980,"mutability":"mutable","name":"xn","nameLocation":"19253:2:40","nodeType":"VariableDeclaration","scope":10177,"src":"19245:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9979,"name":"uint256","nodeType":"ElementaryTypeName","src":"19245:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9982,"initialValue":{"hexValue":"31","id":9981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19258:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"19245:14:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9983,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19278:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":9986,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":9984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19285:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":9985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19290:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"19285:8:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":9987,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19284:10:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"src":"19278:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9998,"nodeType":"IfStatement","src":"19274:92:40","trueBody":{"id":9997,"nodeType":"Block","src":"19296:70:40","statements":[{"expression":{"id":9991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9989,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19314:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":9990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19321:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"19314:10:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9992,"nodeType":"ExpressionStatement","src":"19314:10:40"},{"expression":{"id":9995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9993,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19342:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3634","id":9994,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19349:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19342:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9996,"nodeType":"ExpressionStatement","src":"19342:9:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9999,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19383:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":10002,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10000,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19390:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":10001,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19395:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19390:7:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":10003,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19389:9:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"src":"19383:15:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10014,"nodeType":"IfStatement","src":"19379:90:40","trueBody":{"id":10013,"nodeType":"Block","src":"19400:69:40","statements":[{"expression":{"id":10007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10005,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19418:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":10006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19425:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19418:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10008,"nodeType":"ExpressionStatement","src":"19418:9:40"},{"expression":{"id":10011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10009,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19445:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3332","id":10010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19452:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19445:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10012,"nodeType":"ExpressionStatement","src":"19445:9:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10015,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19486:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":10018,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10016,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19493:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":10017,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19498:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19493:7:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":10019,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19492:9:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"src":"19486:15:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10030,"nodeType":"IfStatement","src":"19482:90:40","trueBody":{"id":10029,"nodeType":"Block","src":"19503:69:40","statements":[{"expression":{"id":10023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10021,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19521:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":10022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19528:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19521:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10024,"nodeType":"ExpressionStatement","src":"19521:9:40"},{"expression":{"id":10027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10025,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19548:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3136","id":10026,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19555:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19548:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10028,"nodeType":"ExpressionStatement","src":"19548:9:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10031,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19589:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":10034,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10032,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19596:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19601:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19596:7:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":10035,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19595:9:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"src":"19589:15:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10046,"nodeType":"IfStatement","src":"19585:89:40","trueBody":{"id":10045,"nodeType":"Block","src":"19606:68:40","statements":[{"expression":{"id":10039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10037,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19624:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":10038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19631:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19624:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10040,"nodeType":"ExpressionStatement","src":"19624:9:40"},{"expression":{"id":10043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10041,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19651:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"38","id":10042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19658:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19651:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10044,"nodeType":"ExpressionStatement","src":"19651:8:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10047,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19691:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":10050,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19698:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10049,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19703:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19698:6:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":10051,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19697:8:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"src":"19691:14:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10062,"nodeType":"IfStatement","src":"19687:87:40","trueBody":{"id":10061,"nodeType":"Block","src":"19707:67:40","statements":[{"expression":{"id":10055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10053,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19725:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"38","id":10054,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19732:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19725:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10056,"nodeType":"ExpressionStatement","src":"19725:8:40"},{"expression":{"id":10059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10057,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19751:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"34","id":10058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19758:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19751:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10060,"nodeType":"ExpressionStatement","src":"19751:8:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10063,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19791:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":10066,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10064,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19798:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":10065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19803:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19798:6:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":10067,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19797:8:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"src":"19791:14:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10078,"nodeType":"IfStatement","src":"19787:87:40","trueBody":{"id":10077,"nodeType":"Block","src":"19807:67:40","statements":[{"expression":{"id":10071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10069,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19825:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":10070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19832:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19825:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10072,"nodeType":"ExpressionStatement","src":"19825:8:40"},{"expression":{"id":10075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10073,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19851:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"32","id":10074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19858:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"19851:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10076,"nodeType":"ExpressionStatement","src":"19851:8:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10079,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9976,"src":"19891:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":10082,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10080,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19898:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":10081,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19903:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"19898:6:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":10083,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19897:8:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"src":"19891:14:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10090,"nodeType":"IfStatement","src":"19887:61:40","trueBody":{"id":10089,"nodeType":"Block","src":"19907:41:40","statements":[{"expression":{"id":10087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10085,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"19925:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"31","id":10086,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19932:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"19925:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10088,"nodeType":"ExpressionStatement","src":"19925:8:40"}]}},{"expression":{"id":10098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10091,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"20368:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10097,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":10092,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20374:1:40","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10093,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"20378:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20374:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10095,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20373:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20385:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20373:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20368:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10099,"nodeType":"ExpressionStatement","src":"20368:18:40"},{"expression":{"id":10109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10100,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22273:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10101,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22279:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10102,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22284:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10103,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22288:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22284:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22279:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10106,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22278:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22295:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22278:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22273:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10110,"nodeType":"ExpressionStatement","src":"22273:23:40"},{"expression":{"id":10120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10111,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22382:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10112,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22388:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10113,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22393:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10114,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22397:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22393:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22388:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10117,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22387:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22404:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22387:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22382:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10121,"nodeType":"ExpressionStatement","src":"22382:23:40"},{"expression":{"id":10131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10122,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22493:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10123,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22499:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10124,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22504:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10125,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22508:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22504:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22499:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10128,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22498:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10129,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22515:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22498:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22493:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10132,"nodeType":"ExpressionStatement","src":"22493:23:40"},{"expression":{"id":10142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10133,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22602:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10134,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22608:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10135,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22613:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10136,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22617:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22613:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22608:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10139,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22607:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22624:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22607:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22602:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10143,"nodeType":"ExpressionStatement","src":"22602:23:40"},{"expression":{"id":10153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10144,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22712:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10145,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22718:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10146,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22723:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10147,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22727:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22723:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22718:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10150,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22717:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10151,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22734:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22717:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22712:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10154,"nodeType":"ExpressionStatement","src":"22712:23:40"},{"expression":{"id":10164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10155,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22822:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10156,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22828:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10157,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"22833:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10158,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"22837:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22833:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22828:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10161,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22827:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10162,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22844:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22827:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22822:23:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10165,"nodeType":"ExpressionStatement","src":"22822:23:40"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10166,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"23211:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10169,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"23232:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10170,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"23237:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10171,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9980,"src":"23241:2:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23237:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23232:11:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10167,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"23216:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23225:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"23216:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23216:28:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23211:33:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9967,"id":10176,"nodeType":"Return","src":"23204:40:40"}]}]},"documentation":{"id":9961,"nodeType":"StructuredDocumentation","src":"17783:292:40","text":" @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n towards zero.\n This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n using integer operations."},"id":10179,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"18089:4:40","nodeType":"FunctionDefinition","parameters":{"id":9964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9963,"mutability":"mutable","name":"a","nameLocation":"18102:1:40","nodeType":"VariableDeclaration","scope":10179,"src":"18094:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9962,"name":"uint256","nodeType":"ElementaryTypeName","src":"18094:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18093:11:40"},"returnParameters":{"id":9967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9966,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10179,"src":"18128:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9965,"name":"uint256","nodeType":"ElementaryTypeName","src":"18128:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18127:9:40"},"scope":10800,"src":"18080:5181:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10212,"nodeType":"Block","src":"23434:171:40","statements":[{"id":10211,"nodeType":"UncheckedBlock","src":"23444:155:40","statements":[{"assignments":[10191],"declarations":[{"constant":false,"id":10191,"mutability":"mutable","name":"result","nameLocation":"23476:6:40","nodeType":"VariableDeclaration","scope":10211,"src":"23468:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10190,"name":"uint256","nodeType":"ElementaryTypeName","src":"23468:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10195,"initialValue":{"arguments":[{"id":10193,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10182,"src":"23490:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10192,"name":"sqrt","nodeType":"Identifier","overloadedDeclarations":[10179,10213],"referencedDeclaration":10179,"src":"23485:4:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":10194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23485:7:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23468:24:40"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10196,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10191,"src":"23513:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10200,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10185,"src":"23555:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":10199,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"23538:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9206_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":10201,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23538:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10202,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10191,"src":"23568:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10203,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10191,"src":"23577:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23568:15:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10205,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10182,"src":"23586:1:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23568:19:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"23538:49:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10197,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"23522:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23531:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"23522:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23522:66:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23513:75:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10189,"id":10210,"nodeType":"Return","src":"23506:82:40"}]}]},"documentation":{"id":10180,"nodeType":"StructuredDocumentation","src":"23267:86:40","text":" @dev Calculates sqrt(a), following the selected rounding direction."},"id":10213,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"23367:4:40","nodeType":"FunctionDefinition","parameters":{"id":10186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10182,"mutability":"mutable","name":"a","nameLocation":"23380:1:40","nodeType":"VariableDeclaration","scope":10213,"src":"23372:9:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10181,"name":"uint256","nodeType":"ElementaryTypeName","src":"23372:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10185,"mutability":"mutable","name":"rounding","nameLocation":"23392:8:40","nodeType":"VariableDeclaration","scope":10213,"src":"23383:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":10184,"nodeType":"UserDefinedTypeName","pathNode":{"id":10183,"name":"Rounding","nameLocations":["23383:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"23383:8:40"},"referencedDeclaration":9206,"src":"23383:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"23371:30:40"},"returnParameters":{"id":10189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10188,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10213,"src":"23425:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10187,"name":"uint256","nodeType":"ElementaryTypeName","src":"23425:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23424:9:40"},"scope":10800,"src":"23358:247:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10408,"nodeType":"Block","src":"23796:981:40","statements":[{"assignments":[10222],"declarations":[{"constant":false,"id":10222,"mutability":"mutable","name":"result","nameLocation":"23814:6:40","nodeType":"VariableDeclaration","scope":10408,"src":"23806:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10221,"name":"uint256","nodeType":"ElementaryTypeName","src":"23806:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10224,"initialValue":{"hexValue":"30","id":10223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23823:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"23806:18:40"},{"assignments":[10226],"declarations":[{"constant":false,"id":10226,"mutability":"mutable","name":"exp","nameLocation":"23842:3:40","nodeType":"VariableDeclaration","scope":10408,"src":"23834:11:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10225,"name":"uint256","nodeType":"ElementaryTypeName","src":"23834:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10227,"nodeType":"VariableDeclarationStatement","src":"23834:11:40"},{"id":10405,"nodeType":"UncheckedBlock","src":"23855:893:40","statements":[{"expression":{"id":10242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10228,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"23879:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"313238","id":10229,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23885:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10232,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"23907:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"id":10238,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":10235,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23916:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":10234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23921:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"23916:8:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":10236,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"23915:10:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23928:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"23915:14:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"}},"src":"23907:22:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10230,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"23891:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23900:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"23891:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23891:39:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23885:45:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23879:51:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10243,"nodeType":"ExpressionStatement","src":"23879:51:40"},{"expression":{"id":10246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10244,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"23944:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10245,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"23954:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23944:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10247,"nodeType":"ExpressionStatement","src":"23944:13:40"},{"expression":{"id":10250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10248,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"23971:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10249,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"23981:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23971:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10251,"nodeType":"ExpressionStatement","src":"23971:13:40"},{"expression":{"id":10266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10252,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"23999:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3634","id":10253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24005:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10256,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24026:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"id":10262,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":10259,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10257,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24035:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":10258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24040:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"24035:7:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":10260,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24034:9:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24046:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24034:13:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"}},"src":"24026:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10254,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24010:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24019:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24010:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24010:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24005:43:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23999:49:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10267,"nodeType":"ExpressionStatement","src":"23999:49:40"},{"expression":{"id":10270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10268,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24062:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10269,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24072:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24062:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10271,"nodeType":"ExpressionStatement","src":"24062:13:40"},{"expression":{"id":10274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10272,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24089:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10273,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24099:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24089:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10275,"nodeType":"ExpressionStatement","src":"24089:13:40"},{"expression":{"id":10290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10276,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24117:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3332","id":10277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24123:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10280,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24144:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"id":10286,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":10283,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24153:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":10282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24158:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"24153:7:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":10284,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24152:9:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10285,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24164:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24152:13:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"}},"src":"24144:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10278,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24128:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24137:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24128:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24128:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24123:43:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24117:49:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10291,"nodeType":"ExpressionStatement","src":"24117:49:40"},{"expression":{"id":10294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10292,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24180:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10293,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24190:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24180:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10295,"nodeType":"ExpressionStatement","src":"24180:13:40"},{"expression":{"id":10298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10296,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24207:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10297,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24217:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24207:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10299,"nodeType":"ExpressionStatement","src":"24207:13:40"},{"expression":{"id":10314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10300,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24235:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3136","id":10301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24241:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10304,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24262:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"id":10310,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":10307,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24271:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24276:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"24271:7:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":10308,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24270:9:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24282:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24270:13:40","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"}},"src":"24262:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10302,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24246:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24255:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24246:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24246:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24241:43:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24235:49:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10315,"nodeType":"ExpressionStatement","src":"24235:49:40"},{"expression":{"id":10318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10316,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24298:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10317,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24308:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24298:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10319,"nodeType":"ExpressionStatement","src":"24298:13:40"},{"expression":{"id":10322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10320,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24325:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10321,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24335:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24325:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10323,"nodeType":"ExpressionStatement","src":"24325:13:40"},{"expression":{"id":10338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10324,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24353:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"38","id":10325,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24359:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10328,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24379:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"id":10334,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":10331,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24388:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24393:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"24388:6:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":10332,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24387:8:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24398:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24387:12:40","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"}},"src":"24379:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10326,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24363:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24372:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24363:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24363:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24359:41:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24353:47:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10339,"nodeType":"ExpressionStatement","src":"24353:47:40"},{"expression":{"id":10342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10340,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24414:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10341,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24424:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24414:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10343,"nodeType":"ExpressionStatement","src":"24414:13:40"},{"expression":{"id":10346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10344,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24441:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10345,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24451:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24441:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10347,"nodeType":"ExpressionStatement","src":"24441:13:40"},{"expression":{"id":10362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10348,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24469:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"34","id":10349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24475:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10352,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24495:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"id":10358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":10355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24504:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":10354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24509:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"24504:6:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":10356,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24503:8:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24514:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24503:12:40","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"}},"src":"24495:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10350,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24479:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24488:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24479:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24479:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24475:41:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24469:47:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10363,"nodeType":"ExpressionStatement","src":"24469:47:40"},{"expression":{"id":10366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10364,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24530:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10365,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24540:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24530:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10367,"nodeType":"ExpressionStatement","src":"24530:13:40"},{"expression":{"id":10370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10368,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24557:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10369,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24567:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24557:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10371,"nodeType":"ExpressionStatement","src":"24557:13:40"},{"expression":{"id":10386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10372,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24585:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":10373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24591:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10376,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24611:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"id":10382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":10379,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10377,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24620:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":10378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24625:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"24620:6:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":10380,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24619:8:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24630:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24619:12:40","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"}},"src":"24611:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10374,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24595:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24604:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24595:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24595:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24591:41:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24585:47:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10387,"nodeType":"ExpressionStatement","src":"24585:47:40"},{"expression":{"id":10390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10388,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24646:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":10389,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24656:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24646:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10391,"nodeType":"ExpressionStatement","src":"24646:13:40"},{"expression":{"id":10394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10392,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24673:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10393,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10226,"src":"24683:3:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24673:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10395,"nodeType":"ExpressionStatement","src":"24673:13:40"},{"expression":{"id":10403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10396,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24701:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10399,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"24727:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":10400,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24735:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24727:9:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10397,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"24711:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24720:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"24711:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10402,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24711:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24701:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10404,"nodeType":"ExpressionStatement","src":"24701:36:40"}]},{"expression":{"id":10406,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"24764:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10220,"id":10407,"nodeType":"Return","src":"24757:13:40"}]},"documentation":{"id":10214,"nodeType":"StructuredDocumentation","src":"23611:119:40","text":" @dev Return the log in base 2 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":10409,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"23744:4:40","nodeType":"FunctionDefinition","parameters":{"id":10217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10216,"mutability":"mutable","name":"value","nameLocation":"23757:5:40","nodeType":"VariableDeclaration","scope":10409,"src":"23749:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10215,"name":"uint256","nodeType":"ElementaryTypeName","src":"23749:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23748:15:40"},"returnParameters":{"id":10220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10219,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10409,"src":"23787:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10218,"name":"uint256","nodeType":"ElementaryTypeName","src":"23787:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23786:9:40"},"scope":10800,"src":"23735:1042:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10442,"nodeType":"Block","src":"25010:175:40","statements":[{"id":10441,"nodeType":"UncheckedBlock","src":"25020:159:40","statements":[{"assignments":[10421],"declarations":[{"constant":false,"id":10421,"mutability":"mutable","name":"result","nameLocation":"25052:6:40","nodeType":"VariableDeclaration","scope":10441,"src":"25044:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10420,"name":"uint256","nodeType":"ElementaryTypeName","src":"25044:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10425,"initialValue":{"arguments":[{"id":10423,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10412,"src":"25066:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10422,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[10409,10443],"referencedDeclaration":10409,"src":"25061:4:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":10424,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25061:11:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25044:28:40"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10426,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10421,"src":"25093:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10430,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10415,"src":"25135:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":10429,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"25118:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9206_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":10431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25118:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10432,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25148:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":10433,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10421,"src":"25153:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25148:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10435,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10412,"src":"25162:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25148:19:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25118:49:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10427,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"25102:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25111:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"25102:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25102:66:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25093:75:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10419,"id":10440,"nodeType":"Return","src":"25086:82:40"}]}]},"documentation":{"id":10410,"nodeType":"StructuredDocumentation","src":"24783:142:40","text":" @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":10443,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"24939:4:40","nodeType":"FunctionDefinition","parameters":{"id":10416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10412,"mutability":"mutable","name":"value","nameLocation":"24952:5:40","nodeType":"VariableDeclaration","scope":10443,"src":"24944:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10411,"name":"uint256","nodeType":"ElementaryTypeName","src":"24944:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10415,"mutability":"mutable","name":"rounding","nameLocation":"24968:8:40","nodeType":"VariableDeclaration","scope":10443,"src":"24959:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":10414,"nodeType":"UserDefinedTypeName","pathNode":{"id":10413,"name":"Rounding","nameLocations":["24959:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"24959:8:40"},"referencedDeclaration":9206,"src":"24959:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"24943:34:40"},"returnParameters":{"id":10419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10418,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10443,"src":"25001:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10417,"name":"uint256","nodeType":"ElementaryTypeName","src":"25001:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25000:9:40"},"scope":10800,"src":"24930:255:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10571,"nodeType":"Block","src":"25378:854:40","statements":[{"assignments":[10452],"declarations":[{"constant":false,"id":10452,"mutability":"mutable","name":"result","nameLocation":"25396:6:40","nodeType":"VariableDeclaration","scope":10571,"src":"25388:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10451,"name":"uint256","nodeType":"ElementaryTypeName","src":"25388:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10454,"initialValue":{"hexValue":"30","id":10453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25405:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"25388:18:40"},{"id":10568,"nodeType":"UncheckedBlock","src":"25416:787:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10455,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25444:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"},"id":10458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10456,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25453:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":10457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25459:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25453:8:40","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"25444:17:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10471,"nodeType":"IfStatement","src":"25440:103:40","trueBody":{"id":10470,"nodeType":"Block","src":"25463:80:40","statements":[{"expression":{"id":10464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10460,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25481:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"},"id":10463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25490:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":10462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25496:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25490:8:40","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"25481:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10465,"nodeType":"ExpressionStatement","src":"25481:17:40"},{"expression":{"id":10468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10466,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"25516:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":10467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25526:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25516:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10469,"nodeType":"ExpressionStatement","src":"25516:12:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10472,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25560:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"},"id":10475,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25569:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":10474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25575:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25569:8:40","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"25560:17:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10488,"nodeType":"IfStatement","src":"25556:103:40","trueBody":{"id":10487,"nodeType":"Block","src":"25579:80:40","statements":[{"expression":{"id":10481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10477,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25597:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"},"id":10480,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25606:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":10479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25612:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25606:8:40","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"25597:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10482,"nodeType":"ExpressionStatement","src":"25597:17:40"},{"expression":{"id":10485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10483,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"25632:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":10484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25642:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25632:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10486,"nodeType":"ExpressionStatement","src":"25632:12:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10489,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25676:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":10492,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25685:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":10491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25691:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25685:8:40","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"25676:17:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10505,"nodeType":"IfStatement","src":"25672:103:40","trueBody":{"id":10504,"nodeType":"Block","src":"25695:80:40","statements":[{"expression":{"id":10498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10494,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25713:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":10497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10495,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25722:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":10496,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25728:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25722:8:40","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"25713:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10499,"nodeType":"ExpressionStatement","src":"25713:17:40"},{"expression":{"id":10502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10500,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"25748:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":10501,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25758:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25748:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10503,"nodeType":"ExpressionStatement","src":"25748:12:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10506,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25792:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":10509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10507,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25801:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":10508,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25807:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25801:7:40","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"25792:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10522,"nodeType":"IfStatement","src":"25788:100:40","trueBody":{"id":10521,"nodeType":"Block","src":"25810:78:40","statements":[{"expression":{"id":10515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10511,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25828:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":10514,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25837:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":10513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25843:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25837:7:40","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"25828:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10516,"nodeType":"ExpressionStatement","src":"25828:16:40"},{"expression":{"id":10519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10517,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"25862:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":10518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25872:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25862:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10520,"nodeType":"ExpressionStatement","src":"25862:11:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10523,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25905:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":10526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25914:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":10525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25920:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25914:7:40","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"25905:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10539,"nodeType":"IfStatement","src":"25901:100:40","trueBody":{"id":10538,"nodeType":"Block","src":"25923:78:40","statements":[{"expression":{"id":10532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10528,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"25941:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":10531,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10529,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25950:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":10530,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25956:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25950:7:40","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"25941:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10533,"nodeType":"ExpressionStatement","src":"25941:16:40"},{"expression":{"id":10536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10534,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"25975:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":10535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25985:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25975:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10537,"nodeType":"ExpressionStatement","src":"25975:11:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10540,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"26018:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":10543,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10541,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26027:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":10542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26033:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26027:7:40","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"26018:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10556,"nodeType":"IfStatement","src":"26014:100:40","trueBody":{"id":10555,"nodeType":"Block","src":"26036:78:40","statements":[{"expression":{"id":10549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10545,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"26054:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":10548,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26063:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":10547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26069:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26063:7:40","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"26054:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10550,"nodeType":"ExpressionStatement","src":"26054:16:40"},{"expression":{"id":10553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10551,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"26088:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":10552,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26098:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26088:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10554,"nodeType":"ExpressionStatement","src":"26088:11:40"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10557,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10446,"src":"26131:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"id":10560,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10558,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26140:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"31","id":10559,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26146:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"26140:7:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"}},"src":"26131:16:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10567,"nodeType":"IfStatement","src":"26127:66:40","trueBody":{"id":10566,"nodeType":"Block","src":"26149:44:40","statements":[{"expression":{"id":10564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10562,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"26167:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":10563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26177:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"26167:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10565,"nodeType":"ExpressionStatement","src":"26167:11:40"}]}}]},{"expression":{"id":10569,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10452,"src":"26219:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10450,"id":10570,"nodeType":"Return","src":"26212:13:40"}]},"documentation":{"id":10444,"nodeType":"StructuredDocumentation","src":"25191:120:40","text":" @dev Return the log in base 10 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":10572,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"25325:5:40","nodeType":"FunctionDefinition","parameters":{"id":10447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10446,"mutability":"mutable","name":"value","nameLocation":"25339:5:40","nodeType":"VariableDeclaration","scope":10572,"src":"25331:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10445,"name":"uint256","nodeType":"ElementaryTypeName","src":"25331:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25330:15:40"},"returnParameters":{"id":10450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10572,"src":"25369:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10448,"name":"uint256","nodeType":"ElementaryTypeName","src":"25369:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25368:9:40"},"scope":10800,"src":"25316:916:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10605,"nodeType":"Block","src":"26467:177:40","statements":[{"id":10604,"nodeType":"UncheckedBlock","src":"26477:161:40","statements":[{"assignments":[10584],"declarations":[{"constant":false,"id":10584,"mutability":"mutable","name":"result","nameLocation":"26509:6:40","nodeType":"VariableDeclaration","scope":10604,"src":"26501:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10583,"name":"uint256","nodeType":"ElementaryTypeName","src":"26501:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10588,"initialValue":{"arguments":[{"id":10586,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10575,"src":"26524:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10585,"name":"log10","nodeType":"Identifier","overloadedDeclarations":[10572,10606],"referencedDeclaration":10572,"src":"26518:5:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":10587,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26518:12:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26501:29:40"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10589,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10584,"src":"26551:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10593,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10578,"src":"26593:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":10592,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"26576:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9206_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":10594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26576:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":10595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26606:2:40","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":10596,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10584,"src":"26612:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26606:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10598,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10575,"src":"26621:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26606:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26576:50:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10590,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"26560:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26569:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"26560:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26560:67:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26551:76:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10582,"id":10603,"nodeType":"Return","src":"26544:83:40"}]}]},"documentation":{"id":10573,"nodeType":"StructuredDocumentation","src":"26238:143:40","text":" @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":10606,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"26395:5:40","nodeType":"FunctionDefinition","parameters":{"id":10579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10575,"mutability":"mutable","name":"value","nameLocation":"26409:5:40","nodeType":"VariableDeclaration","scope":10606,"src":"26401:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10574,"name":"uint256","nodeType":"ElementaryTypeName","src":"26401:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10578,"mutability":"mutable","name":"rounding","nameLocation":"26425:8:40","nodeType":"VariableDeclaration","scope":10606,"src":"26416:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":10577,"nodeType":"UserDefinedTypeName","pathNode":{"id":10576,"name":"Rounding","nameLocations":["26416:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"26416:8:40"},"referencedDeclaration":9206,"src":"26416:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"26400:34:40"},"returnParameters":{"id":10582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10581,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10606,"src":"26458:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10580,"name":"uint256","nodeType":"ElementaryTypeName","src":"26458:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26457:9:40"},"scope":10800,"src":"26386:258:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10742,"nodeType":"Block","src":"26964:674:40","statements":[{"assignments":[10615],"declarations":[{"constant":false,"id":10615,"mutability":"mutable","name":"result","nameLocation":"26982:6:40","nodeType":"VariableDeclaration","scope":10742,"src":"26974:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10614,"name":"uint256","nodeType":"ElementaryTypeName","src":"26974:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10617,"initialValue":{"hexValue":"30","id":10616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26991:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"26974:18:40"},{"assignments":[10619],"declarations":[{"constant":false,"id":10619,"mutability":"mutable","name":"isGt","nameLocation":"27010:4:40","nodeType":"VariableDeclaration","scope":10742,"src":"27002:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10618,"name":"uint256","nodeType":"ElementaryTypeName","src":"27002:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10620,"nodeType":"VariableDeclarationStatement","src":"27002:12:40"},{"id":10739,"nodeType":"UncheckedBlock","src":"27024:585:40","statements":[{"expression":{"id":10633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10621,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27048:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10624,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27071:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"id":10630,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":10627,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27080:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":10626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27085:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"27080:8:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":10628,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27079:10:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10629,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27092:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27079:14:40","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"}},"src":"27071:22:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10622,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27055:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27064:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27055:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10632,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27055:39:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27048:46:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10634,"nodeType":"ExpressionStatement","src":"27048:46:40"},{"expression":{"id":10639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10635,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27108:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10636,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27118:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"313238","id":10637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27125:3:40","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"27118:10:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27108:20:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10640,"nodeType":"ExpressionStatement","src":"27108:20:40"},{"expression":{"id":10645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10641,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27142:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10642,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27152:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3136","id":10643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27159:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27152:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27142:19:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10646,"nodeType":"ExpressionStatement","src":"27142:19:40"},{"expression":{"id":10659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10647,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27176:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10650,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27199:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"id":10656,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":10653,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27208:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":10652,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27213:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"27208:7:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":10654,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27207:9:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27219:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27207:13:40","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"}},"src":"27199:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10648,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27183:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27192:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27183:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10658,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27183:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27176:45:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10660,"nodeType":"ExpressionStatement","src":"27176:45:40"},{"expression":{"id":10665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10661,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27235:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10662,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27245:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3634","id":10663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27252:2:40","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"27245:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27235:19:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10666,"nodeType":"ExpressionStatement","src":"27235:19:40"},{"expression":{"id":10671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10667,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27268:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10668,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27278:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"38","id":10669,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27285:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"27278:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27268:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10672,"nodeType":"ExpressionStatement","src":"27268:18:40"},{"expression":{"id":10685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10673,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27301:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10676,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27324:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"id":10682,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":10679,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10677,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27333:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":10678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27338:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"27333:7:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":10680,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27332:9:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10681,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27344:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27332:13:40","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"}},"src":"27324:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10674,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27308:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27317:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27308:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27308:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27301:45:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10686,"nodeType":"ExpressionStatement","src":"27301:45:40"},{"expression":{"id":10691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10687,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27360:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10688,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27370:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":10689,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27377:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"27370:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27360:19:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10692,"nodeType":"ExpressionStatement","src":"27360:19:40"},{"expression":{"id":10697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10693,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27393:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10694,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27403:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"34","id":10695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27410:1:40","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"27403:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27393:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10698,"nodeType":"ExpressionStatement","src":"27393:18:40"},{"expression":{"id":10711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10699,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27426:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10702,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27449:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"id":10708,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":10705,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27458:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27463:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27458:7:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":10706,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27457:9:40","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10707,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27469:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27457:13:40","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"}},"src":"27449:21:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10700,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27433:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27442:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27433:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27433:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27426:45:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10712,"nodeType":"ExpressionStatement","src":"27426:45:40"},{"expression":{"id":10717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10713,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27485:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10714,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27495:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3136","id":10715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27502:2:40","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27495:9:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27485:19:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10718,"nodeType":"ExpressionStatement","src":"27485:19:40"},{"expression":{"id":10723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10719,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27518:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10720,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"27528:4:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":10721,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27535:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"27528:8:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27518:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10724,"nodeType":"ExpressionStatement","src":"27518:18:40"},{"expression":{"id":10737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10725,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27551:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10728,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10609,"src":"27577:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"id":10734,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":10731,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27586:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27591:1:40","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"27586:6:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":10732,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27585:8:40","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10733,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27596:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27585:12:40","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"}},"src":"27577:20:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10726,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27561:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27570:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27561:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27561:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27551:47:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10738,"nodeType":"ExpressionStatement","src":"27551:47:40"}]},{"expression":{"id":10740,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10615,"src":"27625:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10613,"id":10741,"nodeType":"Return","src":"27618:13:40"}]},"documentation":{"id":10607,"nodeType":"StructuredDocumentation","src":"26650:246:40","text":" @dev Return the log in base 256 of a positive value rounded towards zero.\n Returns 0 if given 0.\n Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string."},"id":10743,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"26910:6:40","nodeType":"FunctionDefinition","parameters":{"id":10610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10609,"mutability":"mutable","name":"value","nameLocation":"26925:5:40","nodeType":"VariableDeclaration","scope":10743,"src":"26917:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10608,"name":"uint256","nodeType":"ElementaryTypeName","src":"26917:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26916:15:40"},"returnParameters":{"id":10613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10612,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10743,"src":"26955:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10611,"name":"uint256","nodeType":"ElementaryTypeName","src":"26955:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26954:9:40"},"scope":10800,"src":"26901:737:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10779,"nodeType":"Block","src":"27875:184:40","statements":[{"id":10778,"nodeType":"UncheckedBlock","src":"27885:168:40","statements":[{"assignments":[10755],"declarations":[{"constant":false,"id":10755,"mutability":"mutable","name":"result","nameLocation":"27917:6:40","nodeType":"VariableDeclaration","scope":10778,"src":"27909:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10754,"name":"uint256","nodeType":"ElementaryTypeName","src":"27909:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10759,"initialValue":{"arguments":[{"id":10757,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10746,"src":"27933:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10756,"name":"log256","nodeType":"Identifier","overloadedDeclarations":[10743,10780],"referencedDeclaration":10743,"src":"27926:6:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":10758,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27926:13:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"27909:30:40"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10760,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10755,"src":"27960:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10764,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"28002:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":10763,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"27985:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9206_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":10765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27985:26:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28015:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10767,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10755,"src":"28021:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":10768,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28031:1:40","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"28021:11:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10770,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28020:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28015:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10772,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10746,"src":"28036:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28015:26:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27985:56:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10761,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"27969:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":10762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27978:6:40","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"27969:15:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10775,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27969:73:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27960:82:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10753,"id":10777,"nodeType":"Return","src":"27953:89:40"}]}]},"documentation":{"id":10744,"nodeType":"StructuredDocumentation","src":"27644:144:40","text":" @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":10780,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"27802:6:40","nodeType":"FunctionDefinition","parameters":{"id":10750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10746,"mutability":"mutable","name":"value","nameLocation":"27817:5:40","nodeType":"VariableDeclaration","scope":10780,"src":"27809:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10745,"name":"uint256","nodeType":"ElementaryTypeName","src":"27809:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10749,"mutability":"mutable","name":"rounding","nameLocation":"27833:8:40","nodeType":"VariableDeclaration","scope":10780,"src":"27824:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":10748,"nodeType":"UserDefinedTypeName","pathNode":{"id":10747,"name":"Rounding","nameLocations":["27824:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"27824:8:40"},"referencedDeclaration":9206,"src":"27824:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"27808:34:40"},"returnParameters":{"id":10753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10752,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10780,"src":"27866:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10751,"name":"uint256","nodeType":"ElementaryTypeName","src":"27866:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27865:9:40"},"scope":10800,"src":"27793:266:40","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10798,"nodeType":"Block","src":"28257:48:40","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":10796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":10794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10791,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"28280:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}],"id":10790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28274:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":10789,"name":"uint8","nodeType":"ElementaryTypeName","src":"28274:5:40","typeDescriptions":{}}},"id":10792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28274:15:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"32","id":10793,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28292:1:40","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"28274:19:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":10795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28297:1:40","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"28274:24:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":10788,"id":10797,"nodeType":"Return","src":"28267:31:40"}]},"documentation":{"id":10781,"nodeType":"StructuredDocumentation","src":"28065:113:40","text":" @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers."},"id":10799,"implemented":true,"kind":"function","modifiers":[],"name":"unsignedRoundsUp","nameLocation":"28192:16:40","nodeType":"FunctionDefinition","parameters":{"id":10785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10784,"mutability":"mutable","name":"rounding","nameLocation":"28218:8:40","nodeType":"VariableDeclaration","scope":10799,"src":"28209:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"},"typeName":{"id":10783,"nodeType":"UserDefinedTypeName","pathNode":{"id":10782,"name":"Rounding","nameLocations":["28209:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":9206,"src":"28209:8:40"},"referencedDeclaration":9206,"src":"28209:8:40","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9206","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"28208:19:40"},"returnParameters":{"id":10788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10787,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10799,"src":"28251:4:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10786,"name":"bool","nodeType":"ElementaryTypeName","src":"28251:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"28250:6:40"},"scope":10800,"src":"28183:122:40","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":10801,"src":"281:28026:40","usedErrors":[],"usedEvents":[]}],"src":"103:28205:40"},"id":40},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","exportedSymbols":{"SafeCast":[12565]},"id":12566,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10802,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"192:24:41"},{"abstract":false,"baseContracts":[],"canonicalName":"SafeCast","contractDependencies":[],"contractKind":"library","documentation":{"id":10803,"nodeType":"StructuredDocumentation","src":"218:550:41","text":" @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow\n checks.\n Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n easily result in undesired exploitation or bugs, since developers usually\n assume that overflows raise errors. `SafeCast` restores this intuition by\n reverting the transaction when such an operation overflows.\n Using this library instead of the unchecked operations eliminates an entire\n class of bugs, so it's recommended to use it always."},"fullyImplemented":true,"id":12565,"linearizedBaseContracts":[12565],"name":"SafeCast","nameLocation":"777:8:41","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10804,"nodeType":"StructuredDocumentation","src":"792:68:41","text":" @dev Value doesn't fit in an uint of `bits` size."},"errorSelector":"6dfcc650","id":10810,"name":"SafeCastOverflowedUintDowncast","nameLocation":"871:30:41","nodeType":"ErrorDefinition","parameters":{"id":10809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10806,"mutability":"mutable","name":"bits","nameLocation":"908:4:41","nodeType":"VariableDeclaration","scope":10810,"src":"902:10:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10805,"name":"uint8","nodeType":"ElementaryTypeName","src":"902:5:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":10808,"mutability":"mutable","name":"value","nameLocation":"922:5:41","nodeType":"VariableDeclaration","scope":10810,"src":"914:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10807,"name":"uint256","nodeType":"ElementaryTypeName","src":"914:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"901:27:41"},"src":"865:64:41"},{"documentation":{"id":10811,"nodeType":"StructuredDocumentation","src":"935:75:41","text":" @dev An int value doesn't fit in an uint of `bits` size."},"errorSelector":"a8ce4432","id":10815,"name":"SafeCastOverflowedIntToUint","nameLocation":"1021:27:41","nodeType":"ErrorDefinition","parameters":{"id":10814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10813,"mutability":"mutable","name":"value","nameLocation":"1056:5:41","nodeType":"VariableDeclaration","scope":10815,"src":"1049:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":10812,"name":"int256","nodeType":"ElementaryTypeName","src":"1049:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1048:14:41"},"src":"1015:48:41"},{"documentation":{"id":10816,"nodeType":"StructuredDocumentation","src":"1069:67:41","text":" @dev Value doesn't fit in an int of `bits` size."},"errorSelector":"327269a7","id":10822,"name":"SafeCastOverflowedIntDowncast","nameLocation":"1147:29:41","nodeType":"ErrorDefinition","parameters":{"id":10821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10818,"mutability":"mutable","name":"bits","nameLocation":"1183:4:41","nodeType":"VariableDeclaration","scope":10822,"src":"1177:10:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10817,"name":"uint8","nodeType":"ElementaryTypeName","src":"1177:5:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":10820,"mutability":"mutable","name":"value","nameLocation":"1196:5:41","nodeType":"VariableDeclaration","scope":10822,"src":"1189:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":10819,"name":"int256","nodeType":"ElementaryTypeName","src":"1189:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1176:26:41"},"src":"1141:62:41"},{"documentation":{"id":10823,"nodeType":"StructuredDocumentation","src":"1209:75:41","text":" @dev An uint value doesn't fit in an int of `bits` size."},"errorSelector":"24775e06","id":10827,"name":"SafeCastOverflowedUintToInt","nameLocation":"1295:27:41","nodeType":"ErrorDefinition","parameters":{"id":10826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10825,"mutability":"mutable","name":"value","nameLocation":"1331:5:41","nodeType":"VariableDeclaration","scope":10827,"src":"1323:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10824,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1322:15:41"},"src":"1289:49:41"},{"body":{"id":10854,"nodeType":"Block","src":"1695:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10835,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10830,"src":"1709:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10838,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1722:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":10837,"name":"uint248","nodeType":"ElementaryTypeName","src":"1722:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"}],"id":10836,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1717:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10839,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1717:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint248","typeString":"type(uint248)"}},"id":10840,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1731:3:41","memberName":"max","nodeType":"MemberAccess","src":"1717:17:41","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"src":"1709:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10848,"nodeType":"IfStatement","src":"1705:105:41","trueBody":{"id":10847,"nodeType":"Block","src":"1736:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":10843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1788:3:41","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":10844,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10830,"src":"1793:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10842,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"1757:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1757:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10846,"nodeType":"RevertStatement","src":"1750:49:41"}]}},{"expression":{"arguments":[{"id":10851,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10830,"src":"1834:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10850,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1826:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":10849,"name":"uint248","nodeType":"ElementaryTypeName","src":"1826:7:41","typeDescriptions":{}}},"id":10852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1826:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"functionReturnParameters":10834,"id":10853,"nodeType":"Return","src":"1819:21:41"}]},"documentation":{"id":10828,"nodeType":"StructuredDocumentation","src":"1344:280:41","text":" @dev Returns the downcasted uint248 from uint256, reverting on\n overflow (when the input is greater than largest uint248).\n Counterpart to Solidity's `uint248` operator.\n Requirements:\n - input must fit into 248 bits"},"id":10855,"implemented":true,"kind":"function","modifiers":[],"name":"toUint248","nameLocation":"1638:9:41","nodeType":"FunctionDefinition","parameters":{"id":10831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10830,"mutability":"mutable","name":"value","nameLocation":"1656:5:41","nodeType":"VariableDeclaration","scope":10855,"src":"1648:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10829,"name":"uint256","nodeType":"ElementaryTypeName","src":"1648:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1647:15:41"},"returnParameters":{"id":10834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10833,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10855,"src":"1686:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"},"typeName":{"id":10832,"name":"uint248","nodeType":"ElementaryTypeName","src":"1686:7:41","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"visibility":"internal"}],"src":"1685:9:41"},"scope":12565,"src":"1629:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10882,"nodeType":"Block","src":"2204:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10863,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10858,"src":"2218:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10866,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2231:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":10865,"name":"uint240","nodeType":"ElementaryTypeName","src":"2231:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"}],"id":10864,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2226:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10867,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2226:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint240","typeString":"type(uint240)"}},"id":10868,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2240:3:41","memberName":"max","nodeType":"MemberAccess","src":"2226:17:41","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"src":"2218:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10876,"nodeType":"IfStatement","src":"2214:105:41","trueBody":{"id":10875,"nodeType":"Block","src":"2245:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":10871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2297:3:41","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":10872,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10858,"src":"2302:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10870,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"2266:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2266:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10874,"nodeType":"RevertStatement","src":"2259:49:41"}]}},{"expression":{"arguments":[{"id":10879,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10858,"src":"2343:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10878,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2335:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":10877,"name":"uint240","nodeType":"ElementaryTypeName","src":"2335:7:41","typeDescriptions":{}}},"id":10880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2335:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"functionReturnParameters":10862,"id":10881,"nodeType":"Return","src":"2328:21:41"}]},"documentation":{"id":10856,"nodeType":"StructuredDocumentation","src":"1853:280:41","text":" @dev Returns the downcasted uint240 from uint256, reverting on\n overflow (when the input is greater than largest uint240).\n Counterpart to Solidity's `uint240` operator.\n Requirements:\n - input must fit into 240 bits"},"id":10883,"implemented":true,"kind":"function","modifiers":[],"name":"toUint240","nameLocation":"2147:9:41","nodeType":"FunctionDefinition","parameters":{"id":10859,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10858,"mutability":"mutable","name":"value","nameLocation":"2165:5:41","nodeType":"VariableDeclaration","scope":10883,"src":"2157:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10857,"name":"uint256","nodeType":"ElementaryTypeName","src":"2157:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2156:15:41"},"returnParameters":{"id":10862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10861,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10883,"src":"2195:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"},"typeName":{"id":10860,"name":"uint240","nodeType":"ElementaryTypeName","src":"2195:7:41","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"visibility":"internal"}],"src":"2194:9:41"},"scope":12565,"src":"2138:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10910,"nodeType":"Block","src":"2713:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10891,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10886,"src":"2727:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10894,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2740:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":10893,"name":"uint232","nodeType":"ElementaryTypeName","src":"2740:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"}],"id":10892,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2735:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2735:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint232","typeString":"type(uint232)"}},"id":10896,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2749:3:41","memberName":"max","nodeType":"MemberAccess","src":"2735:17:41","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"src":"2727:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10904,"nodeType":"IfStatement","src":"2723:105:41","trueBody":{"id":10903,"nodeType":"Block","src":"2754:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":10899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2806:3:41","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":10900,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10886,"src":"2811:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10898,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"2775:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2775:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10902,"nodeType":"RevertStatement","src":"2768:49:41"}]}},{"expression":{"arguments":[{"id":10907,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10886,"src":"2852:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10906,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2844:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":10905,"name":"uint232","nodeType":"ElementaryTypeName","src":"2844:7:41","typeDescriptions":{}}},"id":10908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"functionReturnParameters":10890,"id":10909,"nodeType":"Return","src":"2837:21:41"}]},"documentation":{"id":10884,"nodeType":"StructuredDocumentation","src":"2362:280:41","text":" @dev Returns the downcasted uint232 from uint256, reverting on\n overflow (when the input is greater than largest uint232).\n Counterpart to Solidity's `uint232` operator.\n Requirements:\n - input must fit into 232 bits"},"id":10911,"implemented":true,"kind":"function","modifiers":[],"name":"toUint232","nameLocation":"2656:9:41","nodeType":"FunctionDefinition","parameters":{"id":10887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10886,"mutability":"mutable","name":"value","nameLocation":"2674:5:41","nodeType":"VariableDeclaration","scope":10911,"src":"2666:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10885,"name":"uint256","nodeType":"ElementaryTypeName","src":"2666:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:15:41"},"returnParameters":{"id":10890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10889,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10911,"src":"2704:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"},"typeName":{"id":10888,"name":"uint232","nodeType":"ElementaryTypeName","src":"2704:7:41","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"visibility":"internal"}],"src":"2703:9:41"},"scope":12565,"src":"2647:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10938,"nodeType":"Block","src":"3222:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10919,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10914,"src":"3236:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10922,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3249:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":10921,"name":"uint224","nodeType":"ElementaryTypeName","src":"3249:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"}],"id":10920,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3244:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10923,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3244:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint224","typeString":"type(uint224)"}},"id":10924,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3258:3:41","memberName":"max","nodeType":"MemberAccess","src":"3244:17:41","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"3236:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10932,"nodeType":"IfStatement","src":"3232:105:41","trueBody":{"id":10931,"nodeType":"Block","src":"3263:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":10927,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3315:3:41","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":10928,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10914,"src":"3320:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10926,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"3284:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10929,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3284:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10930,"nodeType":"RevertStatement","src":"3277:49:41"}]}},{"expression":{"arguments":[{"id":10935,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10914,"src":"3361:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10934,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3353:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":10933,"name":"uint224","nodeType":"ElementaryTypeName","src":"3353:7:41","typeDescriptions":{}}},"id":10936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3353:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":10918,"id":10937,"nodeType":"Return","src":"3346:21:41"}]},"documentation":{"id":10912,"nodeType":"StructuredDocumentation","src":"2871:280:41","text":" @dev Returns the downcasted uint224 from uint256, reverting on\n overflow (when the input is greater than largest uint224).\n Counterpart to Solidity's `uint224` operator.\n Requirements:\n - input must fit into 224 bits"},"id":10939,"implemented":true,"kind":"function","modifiers":[],"name":"toUint224","nameLocation":"3165:9:41","nodeType":"FunctionDefinition","parameters":{"id":10915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10914,"mutability":"mutable","name":"value","nameLocation":"3183:5:41","nodeType":"VariableDeclaration","scope":10939,"src":"3175:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10913,"name":"uint256","nodeType":"ElementaryTypeName","src":"3175:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3174:15:41"},"returnParameters":{"id":10918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10917,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10939,"src":"3213:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":10916,"name":"uint224","nodeType":"ElementaryTypeName","src":"3213:7:41","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3212:9:41"},"scope":12565,"src":"3156:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10966,"nodeType":"Block","src":"3731:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10947,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10942,"src":"3745:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10950,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3758:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":10949,"name":"uint216","nodeType":"ElementaryTypeName","src":"3758:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"}],"id":10948,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3753:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3753:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint216","typeString":"type(uint216)"}},"id":10952,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3767:3:41","memberName":"max","nodeType":"MemberAccess","src":"3753:17:41","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"3745:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10960,"nodeType":"IfStatement","src":"3741:105:41","trueBody":{"id":10959,"nodeType":"Block","src":"3772:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":10955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3824:3:41","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":10956,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10942,"src":"3829:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10954,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"3793:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3793:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10958,"nodeType":"RevertStatement","src":"3786:49:41"}]}},{"expression":{"arguments":[{"id":10963,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10942,"src":"3870:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3862:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":10961,"name":"uint216","nodeType":"ElementaryTypeName","src":"3862:7:41","typeDescriptions":{}}},"id":10964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3862:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":10946,"id":10965,"nodeType":"Return","src":"3855:21:41"}]},"documentation":{"id":10940,"nodeType":"StructuredDocumentation","src":"3380:280:41","text":" @dev Returns the downcasted uint216 from uint256, reverting on\n overflow (when the input is greater than largest uint216).\n Counterpart to Solidity's `uint216` operator.\n Requirements:\n - input must fit into 216 bits"},"id":10967,"implemented":true,"kind":"function","modifiers":[],"name":"toUint216","nameLocation":"3674:9:41","nodeType":"FunctionDefinition","parameters":{"id":10943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10942,"mutability":"mutable","name":"value","nameLocation":"3692:5:41","nodeType":"VariableDeclaration","scope":10967,"src":"3684:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10941,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3683:15:41"},"returnParameters":{"id":10946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10945,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10967,"src":"3722:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":10944,"name":"uint216","nodeType":"ElementaryTypeName","src":"3722:7:41","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"3721:9:41"},"scope":12565,"src":"3665:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10994,"nodeType":"Block","src":"4240:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10975,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10970,"src":"4254:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":10978,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4267:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":10977,"name":"uint208","nodeType":"ElementaryTypeName","src":"4267:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":10976,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4262:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4262:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":10980,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4276:3:41","memberName":"max","nodeType":"MemberAccess","src":"4262:17:41","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"4254:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10988,"nodeType":"IfStatement","src":"4250:105:41","trueBody":{"id":10987,"nodeType":"Block","src":"4281:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":10983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4333:3:41","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":10984,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10970,"src":"4338:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10982,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"4302:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":10985,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4302:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10986,"nodeType":"RevertStatement","src":"4295:49:41"}]}},{"expression":{"arguments":[{"id":10991,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10970,"src":"4379:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10990,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4371:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":10989,"name":"uint208","nodeType":"ElementaryTypeName","src":"4371:7:41","typeDescriptions":{}}},"id":10992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4371:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":10974,"id":10993,"nodeType":"Return","src":"4364:21:41"}]},"documentation":{"id":10968,"nodeType":"StructuredDocumentation","src":"3889:280:41","text":" @dev Returns the downcasted uint208 from uint256, reverting on\n overflow (when the input is greater than largest uint208).\n Counterpart to Solidity's `uint208` operator.\n Requirements:\n - input must fit into 208 bits"},"id":10995,"implemented":true,"kind":"function","modifiers":[],"name":"toUint208","nameLocation":"4183:9:41","nodeType":"FunctionDefinition","parameters":{"id":10971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10970,"mutability":"mutable","name":"value","nameLocation":"4201:5:41","nodeType":"VariableDeclaration","scope":10995,"src":"4193:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10969,"name":"uint256","nodeType":"ElementaryTypeName","src":"4193:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4192:15:41"},"returnParameters":{"id":10974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10973,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10995,"src":"4231:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":10972,"name":"uint208","nodeType":"ElementaryTypeName","src":"4231:7:41","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"4230:9:41"},"scope":12565,"src":"4174:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11022,"nodeType":"Block","src":"4749:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11003,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10998,"src":"4763:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11006,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4776:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":11005,"name":"uint200","nodeType":"ElementaryTypeName","src":"4776:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"}],"id":11004,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4771:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4771:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint200","typeString":"type(uint200)"}},"id":11008,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4785:3:41","memberName":"max","nodeType":"MemberAccess","src":"4771:17:41","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"src":"4763:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11016,"nodeType":"IfStatement","src":"4759:105:41","trueBody":{"id":11015,"nodeType":"Block","src":"4790:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":11011,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4842:3:41","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":11012,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10998,"src":"4847:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11010,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"4811:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4811:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11014,"nodeType":"RevertStatement","src":"4804:49:41"}]}},{"expression":{"arguments":[{"id":11019,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10998,"src":"4888:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11018,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4880:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":11017,"name":"uint200","nodeType":"ElementaryTypeName","src":"4880:7:41","typeDescriptions":{}}},"id":11020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"functionReturnParameters":11002,"id":11021,"nodeType":"Return","src":"4873:21:41"}]},"documentation":{"id":10996,"nodeType":"StructuredDocumentation","src":"4398:280:41","text":" @dev Returns the downcasted uint200 from uint256, reverting on\n overflow (when the input is greater than largest uint200).\n Counterpart to Solidity's `uint200` operator.\n Requirements:\n - input must fit into 200 bits"},"id":11023,"implemented":true,"kind":"function","modifiers":[],"name":"toUint200","nameLocation":"4692:9:41","nodeType":"FunctionDefinition","parameters":{"id":10999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10998,"mutability":"mutable","name":"value","nameLocation":"4710:5:41","nodeType":"VariableDeclaration","scope":11023,"src":"4702:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10997,"name":"uint256","nodeType":"ElementaryTypeName","src":"4702:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:15:41"},"returnParameters":{"id":11002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11001,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11023,"src":"4740:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"},"typeName":{"id":11000,"name":"uint200","nodeType":"ElementaryTypeName","src":"4740:7:41","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"visibility":"internal"}],"src":"4739:9:41"},"scope":12565,"src":"4683:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11050,"nodeType":"Block","src":"5258:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11031,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11026,"src":"5272:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11034,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5285:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":11033,"name":"uint192","nodeType":"ElementaryTypeName","src":"5285:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"}],"id":11032,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5280:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11035,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5280:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint192","typeString":"type(uint192)"}},"id":11036,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5294:3:41","memberName":"max","nodeType":"MemberAccess","src":"5280:17:41","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"src":"5272:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11044,"nodeType":"IfStatement","src":"5268:105:41","trueBody":{"id":11043,"nodeType":"Block","src":"5299:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":11039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5351:3:41","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":11040,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11026,"src":"5356:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11038,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"5320:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5320:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11042,"nodeType":"RevertStatement","src":"5313:49:41"}]}},{"expression":{"arguments":[{"id":11047,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11026,"src":"5397:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11046,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5389:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":11045,"name":"uint192","nodeType":"ElementaryTypeName","src":"5389:7:41","typeDescriptions":{}}},"id":11048,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"functionReturnParameters":11030,"id":11049,"nodeType":"Return","src":"5382:21:41"}]},"documentation":{"id":11024,"nodeType":"StructuredDocumentation","src":"4907:280:41","text":" @dev Returns the downcasted uint192 from uint256, reverting on\n overflow (when the input is greater than largest uint192).\n Counterpart to Solidity's `uint192` operator.\n Requirements:\n - input must fit into 192 bits"},"id":11051,"implemented":true,"kind":"function","modifiers":[],"name":"toUint192","nameLocation":"5201:9:41","nodeType":"FunctionDefinition","parameters":{"id":11027,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11026,"mutability":"mutable","name":"value","nameLocation":"5219:5:41","nodeType":"VariableDeclaration","scope":11051,"src":"5211:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11025,"name":"uint256","nodeType":"ElementaryTypeName","src":"5211:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5210:15:41"},"returnParameters":{"id":11030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11029,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11051,"src":"5249:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":11028,"name":"uint192","nodeType":"ElementaryTypeName","src":"5249:7:41","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"5248:9:41"},"scope":12565,"src":"5192:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11078,"nodeType":"Block","src":"5767:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11059,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5781:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11062,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5794:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":11061,"name":"uint184","nodeType":"ElementaryTypeName","src":"5794:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"}],"id":11060,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5789:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5789:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint184","typeString":"type(uint184)"}},"id":11064,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5803:3:41","memberName":"max","nodeType":"MemberAccess","src":"5789:17:41","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"src":"5781:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11072,"nodeType":"IfStatement","src":"5777:105:41","trueBody":{"id":11071,"nodeType":"Block","src":"5808:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":11067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5860:3:41","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":11068,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5865:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11066,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"5829:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5829:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11070,"nodeType":"RevertStatement","src":"5822:49:41"}]}},{"expression":{"arguments":[{"id":11075,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5906:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11074,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5898:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":11073,"name":"uint184","nodeType":"ElementaryTypeName","src":"5898:7:41","typeDescriptions":{}}},"id":11076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"functionReturnParameters":11058,"id":11077,"nodeType":"Return","src":"5891:21:41"}]},"documentation":{"id":11052,"nodeType":"StructuredDocumentation","src":"5416:280:41","text":" @dev Returns the downcasted uint184 from uint256, reverting on\n overflow (when the input is greater than largest uint184).\n Counterpart to Solidity's `uint184` operator.\n Requirements:\n - input must fit into 184 bits"},"id":11079,"implemented":true,"kind":"function","modifiers":[],"name":"toUint184","nameLocation":"5710:9:41","nodeType":"FunctionDefinition","parameters":{"id":11055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11054,"mutability":"mutable","name":"value","nameLocation":"5728:5:41","nodeType":"VariableDeclaration","scope":11079,"src":"5720:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11053,"name":"uint256","nodeType":"ElementaryTypeName","src":"5720:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5719:15:41"},"returnParameters":{"id":11058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11057,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11079,"src":"5758:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"},"typeName":{"id":11056,"name":"uint184","nodeType":"ElementaryTypeName","src":"5758:7:41","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"visibility":"internal"}],"src":"5757:9:41"},"scope":12565,"src":"5701:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11106,"nodeType":"Block","src":"6276:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11087,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11082,"src":"6290:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11090,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6303:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":11089,"name":"uint176","nodeType":"ElementaryTypeName","src":"6303:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"}],"id":11088,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6298:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11091,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint176","typeString":"type(uint176)"}},"id":11092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6312:3:41","memberName":"max","nodeType":"MemberAccess","src":"6298:17:41","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"src":"6290:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11100,"nodeType":"IfStatement","src":"6286:105:41","trueBody":{"id":11099,"nodeType":"Block","src":"6317:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":11095,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6369:3:41","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":11096,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11082,"src":"6374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11094,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"6338:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6338:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11098,"nodeType":"RevertStatement","src":"6331:49:41"}]}},{"expression":{"arguments":[{"id":11103,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11082,"src":"6415:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11102,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6407:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":11101,"name":"uint176","nodeType":"ElementaryTypeName","src":"6407:7:41","typeDescriptions":{}}},"id":11104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6407:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"functionReturnParameters":11086,"id":11105,"nodeType":"Return","src":"6400:21:41"}]},"documentation":{"id":11080,"nodeType":"StructuredDocumentation","src":"5925:280:41","text":" @dev Returns the downcasted uint176 from uint256, reverting on\n overflow (when the input is greater than largest uint176).\n Counterpart to Solidity's `uint176` operator.\n Requirements:\n - input must fit into 176 bits"},"id":11107,"implemented":true,"kind":"function","modifiers":[],"name":"toUint176","nameLocation":"6219:9:41","nodeType":"FunctionDefinition","parameters":{"id":11083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11082,"mutability":"mutable","name":"value","nameLocation":"6237:5:41","nodeType":"VariableDeclaration","scope":11107,"src":"6229:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11081,"name":"uint256","nodeType":"ElementaryTypeName","src":"6229:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6228:15:41"},"returnParameters":{"id":11086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11085,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11107,"src":"6267:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"},"typeName":{"id":11084,"name":"uint176","nodeType":"ElementaryTypeName","src":"6267:7:41","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"visibility":"internal"}],"src":"6266:9:41"},"scope":12565,"src":"6210:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11134,"nodeType":"Block","src":"6785:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11115,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11110,"src":"6799:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11118,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6812:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":11117,"name":"uint168","nodeType":"ElementaryTypeName","src":"6812:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"}],"id":11116,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6807:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6807:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint168","typeString":"type(uint168)"}},"id":11120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6821:3:41","memberName":"max","nodeType":"MemberAccess","src":"6807:17:41","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"src":"6799:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11128,"nodeType":"IfStatement","src":"6795:105:41","trueBody":{"id":11127,"nodeType":"Block","src":"6826:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":11123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6878:3:41","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":11124,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11110,"src":"6883:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11122,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"6847:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6847:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11126,"nodeType":"RevertStatement","src":"6840:49:41"}]}},{"expression":{"arguments":[{"id":11131,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11110,"src":"6924:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11130,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6916:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":11129,"name":"uint168","nodeType":"ElementaryTypeName","src":"6916:7:41","typeDescriptions":{}}},"id":11132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6916:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"functionReturnParameters":11114,"id":11133,"nodeType":"Return","src":"6909:21:41"}]},"documentation":{"id":11108,"nodeType":"StructuredDocumentation","src":"6434:280:41","text":" @dev Returns the downcasted uint168 from uint256, reverting on\n overflow (when the input is greater than largest uint168).\n Counterpart to Solidity's `uint168` operator.\n Requirements:\n - input must fit into 168 bits"},"id":11135,"implemented":true,"kind":"function","modifiers":[],"name":"toUint168","nameLocation":"6728:9:41","nodeType":"FunctionDefinition","parameters":{"id":11111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11110,"mutability":"mutable","name":"value","nameLocation":"6746:5:41","nodeType":"VariableDeclaration","scope":11135,"src":"6738:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11109,"name":"uint256","nodeType":"ElementaryTypeName","src":"6738:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6737:15:41"},"returnParameters":{"id":11114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11113,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11135,"src":"6776:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"},"typeName":{"id":11112,"name":"uint168","nodeType":"ElementaryTypeName","src":"6776:7:41","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"visibility":"internal"}],"src":"6775:9:41"},"scope":12565,"src":"6719:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11162,"nodeType":"Block","src":"7294:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11143,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11138,"src":"7308:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11146,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7321:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":11145,"name":"uint160","nodeType":"ElementaryTypeName","src":"7321:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"}],"id":11144,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7316:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7316:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint160","typeString":"type(uint160)"}},"id":11148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7330:3:41","memberName":"max","nodeType":"MemberAccess","src":"7316:17:41","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"7308:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11156,"nodeType":"IfStatement","src":"7304:105:41","trueBody":{"id":11155,"nodeType":"Block","src":"7335:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":11151,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7387:3:41","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":11152,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11138,"src":"7392:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11150,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"7356:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7356:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11154,"nodeType":"RevertStatement","src":"7349:49:41"}]}},{"expression":{"arguments":[{"id":11159,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11138,"src":"7433:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7425:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":11157,"name":"uint160","nodeType":"ElementaryTypeName","src":"7425:7:41","typeDescriptions":{}}},"id":11160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7425:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":11142,"id":11161,"nodeType":"Return","src":"7418:21:41"}]},"documentation":{"id":11136,"nodeType":"StructuredDocumentation","src":"6943:280:41","text":" @dev Returns the downcasted uint160 from uint256, reverting on\n overflow (when the input is greater than largest uint160).\n Counterpart to Solidity's `uint160` operator.\n Requirements:\n - input must fit into 160 bits"},"id":11163,"implemented":true,"kind":"function","modifiers":[],"name":"toUint160","nameLocation":"7237:9:41","nodeType":"FunctionDefinition","parameters":{"id":11139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11138,"mutability":"mutable","name":"value","nameLocation":"7255:5:41","nodeType":"VariableDeclaration","scope":11163,"src":"7247:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11137,"name":"uint256","nodeType":"ElementaryTypeName","src":"7247:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7246:15:41"},"returnParameters":{"id":11142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11141,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11163,"src":"7285:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":11140,"name":"uint160","nodeType":"ElementaryTypeName","src":"7285:7:41","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"7284:9:41"},"scope":12565,"src":"7228:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11190,"nodeType":"Block","src":"7803:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11171,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11166,"src":"7817:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11174,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7830:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":11173,"name":"uint152","nodeType":"ElementaryTypeName","src":"7830:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"}],"id":11172,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7825:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7825:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint152","typeString":"type(uint152)"}},"id":11176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7839:3:41","memberName":"max","nodeType":"MemberAccess","src":"7825:17:41","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"src":"7817:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11184,"nodeType":"IfStatement","src":"7813:105:41","trueBody":{"id":11183,"nodeType":"Block","src":"7844:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":11179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7896:3:41","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":11180,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11166,"src":"7901:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11178,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"7865:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7865:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11182,"nodeType":"RevertStatement","src":"7858:49:41"}]}},{"expression":{"arguments":[{"id":11187,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11166,"src":"7942:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11186,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7934:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":11185,"name":"uint152","nodeType":"ElementaryTypeName","src":"7934:7:41","typeDescriptions":{}}},"id":11188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7934:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"functionReturnParameters":11170,"id":11189,"nodeType":"Return","src":"7927:21:41"}]},"documentation":{"id":11164,"nodeType":"StructuredDocumentation","src":"7452:280:41","text":" @dev Returns the downcasted uint152 from uint256, reverting on\n overflow (when the input is greater than largest uint152).\n Counterpart to Solidity's `uint152` operator.\n Requirements:\n - input must fit into 152 bits"},"id":11191,"implemented":true,"kind":"function","modifiers":[],"name":"toUint152","nameLocation":"7746:9:41","nodeType":"FunctionDefinition","parameters":{"id":11167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11166,"mutability":"mutable","name":"value","nameLocation":"7764:5:41","nodeType":"VariableDeclaration","scope":11191,"src":"7756:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11165,"name":"uint256","nodeType":"ElementaryTypeName","src":"7756:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7755:15:41"},"returnParameters":{"id":11170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11169,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11191,"src":"7794:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"},"typeName":{"id":11168,"name":"uint152","nodeType":"ElementaryTypeName","src":"7794:7:41","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"visibility":"internal"}],"src":"7793:9:41"},"scope":12565,"src":"7737:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11218,"nodeType":"Block","src":"8312:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11199,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11194,"src":"8326:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11202,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8339:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":11201,"name":"uint144","nodeType":"ElementaryTypeName","src":"8339:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"}],"id":11200,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8334:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8334:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint144","typeString":"type(uint144)"}},"id":11204,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8348:3:41","memberName":"max","nodeType":"MemberAccess","src":"8334:17:41","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"src":"8326:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11212,"nodeType":"IfStatement","src":"8322:105:41","trueBody":{"id":11211,"nodeType":"Block","src":"8353:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":11207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8405:3:41","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":11208,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11194,"src":"8410:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11206,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"8374:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8374:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11210,"nodeType":"RevertStatement","src":"8367:49:41"}]}},{"expression":{"arguments":[{"id":11215,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11194,"src":"8451:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11214,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8443:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":11213,"name":"uint144","nodeType":"ElementaryTypeName","src":"8443:7:41","typeDescriptions":{}}},"id":11216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8443:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"functionReturnParameters":11198,"id":11217,"nodeType":"Return","src":"8436:21:41"}]},"documentation":{"id":11192,"nodeType":"StructuredDocumentation","src":"7961:280:41","text":" @dev Returns the downcasted uint144 from uint256, reverting on\n overflow (when the input is greater than largest uint144).\n Counterpart to Solidity's `uint144` operator.\n Requirements:\n - input must fit into 144 bits"},"id":11219,"implemented":true,"kind":"function","modifiers":[],"name":"toUint144","nameLocation":"8255:9:41","nodeType":"FunctionDefinition","parameters":{"id":11195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11194,"mutability":"mutable","name":"value","nameLocation":"8273:5:41","nodeType":"VariableDeclaration","scope":11219,"src":"8265:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11193,"name":"uint256","nodeType":"ElementaryTypeName","src":"8265:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8264:15:41"},"returnParameters":{"id":11198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11197,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11219,"src":"8303:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"},"typeName":{"id":11196,"name":"uint144","nodeType":"ElementaryTypeName","src":"8303:7:41","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"visibility":"internal"}],"src":"8302:9:41"},"scope":12565,"src":"8246:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11246,"nodeType":"Block","src":"8821:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11227,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"8835:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11230,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8848:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":11229,"name":"uint136","nodeType":"ElementaryTypeName","src":"8848:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"}],"id":11228,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8843:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8843:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint136","typeString":"type(uint136)"}},"id":11232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8857:3:41","memberName":"max","nodeType":"MemberAccess","src":"8843:17:41","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"src":"8835:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11240,"nodeType":"IfStatement","src":"8831:105:41","trueBody":{"id":11239,"nodeType":"Block","src":"8862:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":11235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8914:3:41","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":11236,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"8919:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11234,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"8883:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8883:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11238,"nodeType":"RevertStatement","src":"8876:49:41"}]}},{"expression":{"arguments":[{"id":11243,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"8960:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11242,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8952:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":11241,"name":"uint136","nodeType":"ElementaryTypeName","src":"8952:7:41","typeDescriptions":{}}},"id":11244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"functionReturnParameters":11226,"id":11245,"nodeType":"Return","src":"8945:21:41"}]},"documentation":{"id":11220,"nodeType":"StructuredDocumentation","src":"8470:280:41","text":" @dev Returns the downcasted uint136 from uint256, reverting on\n overflow (when the input is greater than largest uint136).\n Counterpart to Solidity's `uint136` operator.\n Requirements:\n - input must fit into 136 bits"},"id":11247,"implemented":true,"kind":"function","modifiers":[],"name":"toUint136","nameLocation":"8764:9:41","nodeType":"FunctionDefinition","parameters":{"id":11223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11222,"mutability":"mutable","name":"value","nameLocation":"8782:5:41","nodeType":"VariableDeclaration","scope":11247,"src":"8774:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11221,"name":"uint256","nodeType":"ElementaryTypeName","src":"8774:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8773:15:41"},"returnParameters":{"id":11226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11225,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11247,"src":"8812:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"},"typeName":{"id":11224,"name":"uint136","nodeType":"ElementaryTypeName","src":"8812:7:41","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"visibility":"internal"}],"src":"8811:9:41"},"scope":12565,"src":"8755:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11274,"nodeType":"Block","src":"9330:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11255,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11250,"src":"9344:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11258,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9357:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":11257,"name":"uint128","nodeType":"ElementaryTypeName","src":"9357:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"}],"id":11256,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9352:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9352:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint128","typeString":"type(uint128)"}},"id":11260,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9366:3:41","memberName":"max","nodeType":"MemberAccess","src":"9352:17:41","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"9344:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11268,"nodeType":"IfStatement","src":"9340:105:41","trueBody":{"id":11267,"nodeType":"Block","src":"9371:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":11263,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9423:3:41","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":11264,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11250,"src":"9428:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11262,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"9392:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9392:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11266,"nodeType":"RevertStatement","src":"9385:49:41"}]}},{"expression":{"arguments":[{"id":11271,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11250,"src":"9469:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11270,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9461:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":11269,"name":"uint128","nodeType":"ElementaryTypeName","src":"9461:7:41","typeDescriptions":{}}},"id":11272,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9461:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":11254,"id":11273,"nodeType":"Return","src":"9454:21:41"}]},"documentation":{"id":11248,"nodeType":"StructuredDocumentation","src":"8979:280:41","text":" @dev Returns the downcasted uint128 from uint256, reverting on\n overflow (when the input is greater than largest uint128).\n Counterpart to Solidity's `uint128` operator.\n Requirements:\n - input must fit into 128 bits"},"id":11275,"implemented":true,"kind":"function","modifiers":[],"name":"toUint128","nameLocation":"9273:9:41","nodeType":"FunctionDefinition","parameters":{"id":11251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11250,"mutability":"mutable","name":"value","nameLocation":"9291:5:41","nodeType":"VariableDeclaration","scope":11275,"src":"9283:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11249,"name":"uint256","nodeType":"ElementaryTypeName","src":"9283:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9282:15:41"},"returnParameters":{"id":11254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11253,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11275,"src":"9321:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":11252,"name":"uint128","nodeType":"ElementaryTypeName","src":"9321:7:41","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"9320:9:41"},"scope":12565,"src":"9264:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11302,"nodeType":"Block","src":"9839:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11283,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11278,"src":"9853:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11286,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9866:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":11285,"name":"uint120","nodeType":"ElementaryTypeName","src":"9866:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":11284,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9861:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9861:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":11288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9875:3:41","memberName":"max","nodeType":"MemberAccess","src":"9861:17:41","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"9853:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11296,"nodeType":"IfStatement","src":"9849:105:41","trueBody":{"id":11295,"nodeType":"Block","src":"9880:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":11291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9932:3:41","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":11292,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11278,"src":"9937:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11290,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"9901:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9901:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11294,"nodeType":"RevertStatement","src":"9894:49:41"}]}},{"expression":{"arguments":[{"id":11299,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11278,"src":"9978:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11298,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9970:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":11297,"name":"uint120","nodeType":"ElementaryTypeName","src":"9970:7:41","typeDescriptions":{}}},"id":11300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9970:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"functionReturnParameters":11282,"id":11301,"nodeType":"Return","src":"9963:21:41"}]},"documentation":{"id":11276,"nodeType":"StructuredDocumentation","src":"9488:280:41","text":" @dev Returns the downcasted uint120 from uint256, reverting on\n overflow (when the input is greater than largest uint120).\n Counterpart to Solidity's `uint120` operator.\n Requirements:\n - input must fit into 120 bits"},"id":11303,"implemented":true,"kind":"function","modifiers":[],"name":"toUint120","nameLocation":"9782:9:41","nodeType":"FunctionDefinition","parameters":{"id":11279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11278,"mutability":"mutable","name":"value","nameLocation":"9800:5:41","nodeType":"VariableDeclaration","scope":11303,"src":"9792:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11277,"name":"uint256","nodeType":"ElementaryTypeName","src":"9792:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9791:15:41"},"returnParameters":{"id":11282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11281,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11303,"src":"9830:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"},"typeName":{"id":11280,"name":"uint120","nodeType":"ElementaryTypeName","src":"9830:7:41","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"visibility":"internal"}],"src":"9829:9:41"},"scope":12565,"src":"9773:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11330,"nodeType":"Block","src":"10348:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11311,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11306,"src":"10362:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11314,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10375:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":11313,"name":"uint112","nodeType":"ElementaryTypeName","src":"10375:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":11312,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10370:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10370:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":11316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10384:3:41","memberName":"max","nodeType":"MemberAccess","src":"10370:17:41","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"10362:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11324,"nodeType":"IfStatement","src":"10358:105:41","trueBody":{"id":11323,"nodeType":"Block","src":"10389:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":11319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10441:3:41","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":11320,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11306,"src":"10446:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11318,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"10410:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10410:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11322,"nodeType":"RevertStatement","src":"10403:49:41"}]}},{"expression":{"arguments":[{"id":11327,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11306,"src":"10487:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11326,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10479:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":11325,"name":"uint112","nodeType":"ElementaryTypeName","src":"10479:7:41","typeDescriptions":{}}},"id":11328,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10479:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"functionReturnParameters":11310,"id":11329,"nodeType":"Return","src":"10472:21:41"}]},"documentation":{"id":11304,"nodeType":"StructuredDocumentation","src":"9997:280:41","text":" @dev Returns the downcasted uint112 from uint256, reverting on\n overflow (when the input is greater than largest uint112).\n Counterpart to Solidity's `uint112` operator.\n Requirements:\n - input must fit into 112 bits"},"id":11331,"implemented":true,"kind":"function","modifiers":[],"name":"toUint112","nameLocation":"10291:9:41","nodeType":"FunctionDefinition","parameters":{"id":11307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11306,"mutability":"mutable","name":"value","nameLocation":"10309:5:41","nodeType":"VariableDeclaration","scope":11331,"src":"10301:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11305,"name":"uint256","nodeType":"ElementaryTypeName","src":"10301:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10300:15:41"},"returnParameters":{"id":11310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11309,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11331,"src":"10339:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":11308,"name":"uint112","nodeType":"ElementaryTypeName","src":"10339:7:41","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"src":"10338:9:41"},"scope":12565,"src":"10282:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11358,"nodeType":"Block","src":"10857:152:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11339,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11334,"src":"10871:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10884:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":11341,"name":"uint104","nodeType":"ElementaryTypeName","src":"10884:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"}],"id":11340,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10879:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10879:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint104","typeString":"type(uint104)"}},"id":11344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10893:3:41","memberName":"max","nodeType":"MemberAccess","src":"10879:17:41","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"src":"10871:25:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11352,"nodeType":"IfStatement","src":"10867:105:41","trueBody":{"id":11351,"nodeType":"Block","src":"10898:74:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":11347,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10950:3:41","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":11348,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11334,"src":"10955:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11346,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"10919:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10919:42:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11350,"nodeType":"RevertStatement","src":"10912:49:41"}]}},{"expression":{"arguments":[{"id":11355,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11334,"src":"10996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11354,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10988:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":11353,"name":"uint104","nodeType":"ElementaryTypeName","src":"10988:7:41","typeDescriptions":{}}},"id":11356,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10988:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"functionReturnParameters":11338,"id":11357,"nodeType":"Return","src":"10981:21:41"}]},"documentation":{"id":11332,"nodeType":"StructuredDocumentation","src":"10506:280:41","text":" @dev Returns the downcasted uint104 from uint256, reverting on\n overflow (when the input is greater than largest uint104).\n Counterpart to Solidity's `uint104` operator.\n Requirements:\n - input must fit into 104 bits"},"id":11359,"implemented":true,"kind":"function","modifiers":[],"name":"toUint104","nameLocation":"10800:9:41","nodeType":"FunctionDefinition","parameters":{"id":11335,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11334,"mutability":"mutable","name":"value","nameLocation":"10818:5:41","nodeType":"VariableDeclaration","scope":11359,"src":"10810:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11333,"name":"uint256","nodeType":"ElementaryTypeName","src":"10810:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10809:15:41"},"returnParameters":{"id":11338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11337,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11359,"src":"10848:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"},"typeName":{"id":11336,"name":"uint104","nodeType":"ElementaryTypeName","src":"10848:7:41","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"visibility":"internal"}],"src":"10847:9:41"},"scope":12565,"src":"10791:218:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11386,"nodeType":"Block","src":"11360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11367,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11362,"src":"11374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11370,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":11369,"name":"uint96","nodeType":"ElementaryTypeName","src":"11387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"}],"id":11368,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint96","typeString":"type(uint96)"}},"id":11372,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11395:3:41","memberName":"max","nodeType":"MemberAccess","src":"11382:16:41","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"11374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11380,"nodeType":"IfStatement","src":"11370:103:41","trueBody":{"id":11379,"nodeType":"Block","src":"11400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":11375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":11376,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11362,"src":"11456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11374,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"11421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11378,"nodeType":"RevertStatement","src":"11414:48:41"}]}},{"expression":{"arguments":[{"id":11383,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11362,"src":"11496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":11381,"name":"uint96","nodeType":"ElementaryTypeName","src":"11489:6:41","typeDescriptions":{}}},"id":11384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":11366,"id":11385,"nodeType":"Return","src":"11482:20:41"}]},"documentation":{"id":11360,"nodeType":"StructuredDocumentation","src":"11015:276:41","text":" @dev Returns the downcasted uint96 from uint256, reverting on\n overflow (when the input is greater than largest uint96).\n Counterpart to Solidity's `uint96` operator.\n Requirements:\n - input must fit into 96 bits"},"id":11387,"implemented":true,"kind":"function","modifiers":[],"name":"toUint96","nameLocation":"11305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11362,"mutability":"mutable","name":"value","nameLocation":"11322:5:41","nodeType":"VariableDeclaration","scope":11387,"src":"11314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11361,"name":"uint256","nodeType":"ElementaryTypeName","src":"11314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11313:15:41"},"returnParameters":{"id":11366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11365,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11387,"src":"11352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":11364,"name":"uint96","nodeType":"ElementaryTypeName","src":"11352:6:41","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11351:8:41"},"scope":12565,"src":"11296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11414,"nodeType":"Block","src":"11860:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11395,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11390,"src":"11874:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11398,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11887:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":11397,"name":"uint88","nodeType":"ElementaryTypeName","src":"11887:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"}],"id":11396,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11882:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11399,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11882:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint88","typeString":"type(uint88)"}},"id":11400,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11895:3:41","memberName":"max","nodeType":"MemberAccess","src":"11882:16:41","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"src":"11874:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11408,"nodeType":"IfStatement","src":"11870:103:41","trueBody":{"id":11407,"nodeType":"Block","src":"11900:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":11403,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11952:2:41","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":11404,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11390,"src":"11956:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11402,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"11921:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11921:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11406,"nodeType":"RevertStatement","src":"11914:48:41"}]}},{"expression":{"arguments":[{"id":11411,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11390,"src":"11996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11410,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":11409,"name":"uint88","nodeType":"ElementaryTypeName","src":"11989:6:41","typeDescriptions":{}}},"id":11412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"functionReturnParameters":11394,"id":11413,"nodeType":"Return","src":"11982:20:41"}]},"documentation":{"id":11388,"nodeType":"StructuredDocumentation","src":"11515:276:41","text":" @dev Returns the downcasted uint88 from uint256, reverting on\n overflow (when the input is greater than largest uint88).\n Counterpart to Solidity's `uint88` operator.\n Requirements:\n - input must fit into 88 bits"},"id":11415,"implemented":true,"kind":"function","modifiers":[],"name":"toUint88","nameLocation":"11805:8:41","nodeType":"FunctionDefinition","parameters":{"id":11391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11390,"mutability":"mutable","name":"value","nameLocation":"11822:5:41","nodeType":"VariableDeclaration","scope":11415,"src":"11814:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11389,"name":"uint256","nodeType":"ElementaryTypeName","src":"11814:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11813:15:41"},"returnParameters":{"id":11394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11393,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11415,"src":"11852:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"},"typeName":{"id":11392,"name":"uint88","nodeType":"ElementaryTypeName","src":"11852:6:41","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"visibility":"internal"}],"src":"11851:8:41"},"scope":12565,"src":"11796:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11442,"nodeType":"Block","src":"12360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11423,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11418,"src":"12374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11426,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":11425,"name":"uint80","nodeType":"ElementaryTypeName","src":"12387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"}],"id":11424,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint80","typeString":"type(uint80)"}},"id":11428,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12395:3:41","memberName":"max","nodeType":"MemberAccess","src":"12382:16:41","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"src":"12374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11436,"nodeType":"IfStatement","src":"12370:103:41","trueBody":{"id":11435,"nodeType":"Block","src":"12400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":11431,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":11432,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11418,"src":"12456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11430,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"12421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11434,"nodeType":"RevertStatement","src":"12414:48:41"}]}},{"expression":{"arguments":[{"id":11439,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11418,"src":"12496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11438,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":11437,"name":"uint80","nodeType":"ElementaryTypeName","src":"12489:6:41","typeDescriptions":{}}},"id":11440,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"functionReturnParameters":11422,"id":11441,"nodeType":"Return","src":"12482:20:41"}]},"documentation":{"id":11416,"nodeType":"StructuredDocumentation","src":"12015:276:41","text":" @dev Returns the downcasted uint80 from uint256, reverting on\n overflow (when the input is greater than largest uint80).\n Counterpart to Solidity's `uint80` operator.\n Requirements:\n - input must fit into 80 bits"},"id":11443,"implemented":true,"kind":"function","modifiers":[],"name":"toUint80","nameLocation":"12305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11418,"mutability":"mutable","name":"value","nameLocation":"12322:5:41","nodeType":"VariableDeclaration","scope":11443,"src":"12314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11417,"name":"uint256","nodeType":"ElementaryTypeName","src":"12314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12313:15:41"},"returnParameters":{"id":11422,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11421,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11443,"src":"12352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"},"typeName":{"id":11420,"name":"uint80","nodeType":"ElementaryTypeName","src":"12352:6:41","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"visibility":"internal"}],"src":"12351:8:41"},"scope":12565,"src":"12296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11470,"nodeType":"Block","src":"12860:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11451,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11446,"src":"12874:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12887:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":11453,"name":"uint72","nodeType":"ElementaryTypeName","src":"12887:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"}],"id":11452,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12882:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11455,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12882:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint72","typeString":"type(uint72)"}},"id":11456,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12895:3:41","memberName":"max","nodeType":"MemberAccess","src":"12882:16:41","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"src":"12874:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11464,"nodeType":"IfStatement","src":"12870:103:41","trueBody":{"id":11463,"nodeType":"Block","src":"12900:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":11459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12952:2:41","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":11460,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11446,"src":"12956:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11458,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"12921:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11461,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12921:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11462,"nodeType":"RevertStatement","src":"12914:48:41"}]}},{"expression":{"arguments":[{"id":11467,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11446,"src":"12996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":11465,"name":"uint72","nodeType":"ElementaryTypeName","src":"12989:6:41","typeDescriptions":{}}},"id":11468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"functionReturnParameters":11450,"id":11469,"nodeType":"Return","src":"12982:20:41"}]},"documentation":{"id":11444,"nodeType":"StructuredDocumentation","src":"12515:276:41","text":" @dev Returns the downcasted uint72 from uint256, reverting on\n overflow (when the input is greater than largest uint72).\n Counterpart to Solidity's `uint72` operator.\n Requirements:\n - input must fit into 72 bits"},"id":11471,"implemented":true,"kind":"function","modifiers":[],"name":"toUint72","nameLocation":"12805:8:41","nodeType":"FunctionDefinition","parameters":{"id":11447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11446,"mutability":"mutable","name":"value","nameLocation":"12822:5:41","nodeType":"VariableDeclaration","scope":11471,"src":"12814:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11445,"name":"uint256","nodeType":"ElementaryTypeName","src":"12814:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12813:15:41"},"returnParameters":{"id":11450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11471,"src":"12852:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":11448,"name":"uint72","nodeType":"ElementaryTypeName","src":"12852:6:41","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"}],"src":"12851:8:41"},"scope":12565,"src":"12796:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11498,"nodeType":"Block","src":"13360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11479,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11474,"src":"13374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11482,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":11481,"name":"uint64","nodeType":"ElementaryTypeName","src":"13387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":11480,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":11484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13395:3:41","memberName":"max","nodeType":"MemberAccess","src":"13382:16:41","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11492,"nodeType":"IfStatement","src":"13370:103:41","trueBody":{"id":11491,"nodeType":"Block","src":"13400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":11487,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":11488,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11474,"src":"13456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11486,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"13421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11490,"nodeType":"RevertStatement","src":"13414:48:41"}]}},{"expression":{"arguments":[{"id":11495,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11474,"src":"13496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11494,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":11493,"name":"uint64","nodeType":"ElementaryTypeName","src":"13489:6:41","typeDescriptions":{}}},"id":11496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":11478,"id":11497,"nodeType":"Return","src":"13482:20:41"}]},"documentation":{"id":11472,"nodeType":"StructuredDocumentation","src":"13015:276:41","text":" @dev Returns the downcasted uint64 from uint256, reverting on\n overflow (when the input is greater than largest uint64).\n Counterpart to Solidity's `uint64` operator.\n Requirements:\n - input must fit into 64 bits"},"id":11499,"implemented":true,"kind":"function","modifiers":[],"name":"toUint64","nameLocation":"13305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11474,"mutability":"mutable","name":"value","nameLocation":"13322:5:41","nodeType":"VariableDeclaration","scope":11499,"src":"13314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11473,"name":"uint256","nodeType":"ElementaryTypeName","src":"13314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13313:15:41"},"returnParameters":{"id":11478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11477,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11499,"src":"13352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":11476,"name":"uint64","nodeType":"ElementaryTypeName","src":"13352:6:41","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13351:8:41"},"scope":12565,"src":"13296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11526,"nodeType":"Block","src":"13860:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11507,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11502,"src":"13874:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11510,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13887:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":11509,"name":"uint56","nodeType":"ElementaryTypeName","src":"13887:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"}],"id":11508,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13882:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11511,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13882:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint56","typeString":"type(uint56)"}},"id":11512,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13895:3:41","memberName":"max","nodeType":"MemberAccess","src":"13882:16:41","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"src":"13874:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11520,"nodeType":"IfStatement","src":"13870:103:41","trueBody":{"id":11519,"nodeType":"Block","src":"13900:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":11515,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13952:2:41","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":11516,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11502,"src":"13956:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11514,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"13921:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13921:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11518,"nodeType":"RevertStatement","src":"13914:48:41"}]}},{"expression":{"arguments":[{"id":11523,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11502,"src":"13996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":11521,"name":"uint56","nodeType":"ElementaryTypeName","src":"13989:6:41","typeDescriptions":{}}},"id":11524,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"functionReturnParameters":11506,"id":11525,"nodeType":"Return","src":"13982:20:41"}]},"documentation":{"id":11500,"nodeType":"StructuredDocumentation","src":"13515:276:41","text":" @dev Returns the downcasted uint56 from uint256, reverting on\n overflow (when the input is greater than largest uint56).\n Counterpart to Solidity's `uint56` operator.\n Requirements:\n - input must fit into 56 bits"},"id":11527,"implemented":true,"kind":"function","modifiers":[],"name":"toUint56","nameLocation":"13805:8:41","nodeType":"FunctionDefinition","parameters":{"id":11503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11502,"mutability":"mutable","name":"value","nameLocation":"13822:5:41","nodeType":"VariableDeclaration","scope":11527,"src":"13814:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11501,"name":"uint256","nodeType":"ElementaryTypeName","src":"13814:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13813:15:41"},"returnParameters":{"id":11506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11505,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11527,"src":"13852:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"},"typeName":{"id":11504,"name":"uint56","nodeType":"ElementaryTypeName","src":"13852:6:41","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"visibility":"internal"}],"src":"13851:8:41"},"scope":12565,"src":"13796:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11554,"nodeType":"Block","src":"14360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11535,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11530,"src":"14374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11538,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":11537,"name":"uint48","nodeType":"ElementaryTypeName","src":"14387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":11536,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":11540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14395:3:41","memberName":"max","nodeType":"MemberAccess","src":"14382:16:41","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"14374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11548,"nodeType":"IfStatement","src":"14370:103:41","trueBody":{"id":11547,"nodeType":"Block","src":"14400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":11543,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":11544,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11530,"src":"14456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11542,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"14421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11545,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11546,"nodeType":"RevertStatement","src":"14414:48:41"}]}},{"expression":{"arguments":[{"id":11551,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11530,"src":"14496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11550,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":11549,"name":"uint48","nodeType":"ElementaryTypeName","src":"14489:6:41","typeDescriptions":{}}},"id":11552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":11534,"id":11553,"nodeType":"Return","src":"14482:20:41"}]},"documentation":{"id":11528,"nodeType":"StructuredDocumentation","src":"14015:276:41","text":" @dev Returns the downcasted uint48 from uint256, reverting on\n overflow (when the input is greater than largest uint48).\n Counterpart to Solidity's `uint48` operator.\n Requirements:\n - input must fit into 48 bits"},"id":11555,"implemented":true,"kind":"function","modifiers":[],"name":"toUint48","nameLocation":"14305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11530,"mutability":"mutable","name":"value","nameLocation":"14322:5:41","nodeType":"VariableDeclaration","scope":11555,"src":"14314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11529,"name":"uint256","nodeType":"ElementaryTypeName","src":"14314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14313:15:41"},"returnParameters":{"id":11534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11533,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11555,"src":"14352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":11532,"name":"uint48","nodeType":"ElementaryTypeName","src":"14352:6:41","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14351:8:41"},"scope":12565,"src":"14296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11582,"nodeType":"Block","src":"14860:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11563,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11558,"src":"14874:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11566,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14887:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":11565,"name":"uint40","nodeType":"ElementaryTypeName","src":"14887:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"}],"id":11564,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14882:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11567,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14882:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint40","typeString":"type(uint40)"}},"id":11568,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14895:3:41","memberName":"max","nodeType":"MemberAccess","src":"14882:16:41","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"14874:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11576,"nodeType":"IfStatement","src":"14870:103:41","trueBody":{"id":11575,"nodeType":"Block","src":"14900:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":11571,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14952:2:41","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":11572,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11558,"src":"14956:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11570,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"14921:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14921:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11574,"nodeType":"RevertStatement","src":"14914:48:41"}]}},{"expression":{"arguments":[{"id":11579,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11558,"src":"14996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11578,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":11577,"name":"uint40","nodeType":"ElementaryTypeName","src":"14989:6:41","typeDescriptions":{}}},"id":11580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":11562,"id":11581,"nodeType":"Return","src":"14982:20:41"}]},"documentation":{"id":11556,"nodeType":"StructuredDocumentation","src":"14515:276:41","text":" @dev Returns the downcasted uint40 from uint256, reverting on\n overflow (when the input is greater than largest uint40).\n Counterpart to Solidity's `uint40` operator.\n Requirements:\n - input must fit into 40 bits"},"id":11583,"implemented":true,"kind":"function","modifiers":[],"name":"toUint40","nameLocation":"14805:8:41","nodeType":"FunctionDefinition","parameters":{"id":11559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11558,"mutability":"mutable","name":"value","nameLocation":"14822:5:41","nodeType":"VariableDeclaration","scope":11583,"src":"14814:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11557,"name":"uint256","nodeType":"ElementaryTypeName","src":"14814:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14813:15:41"},"returnParameters":{"id":11562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11561,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11583,"src":"14852:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":11560,"name":"uint40","nodeType":"ElementaryTypeName","src":"14852:6:41","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"14851:8:41"},"scope":12565,"src":"14796:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11610,"nodeType":"Block","src":"15360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11591,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11586,"src":"15374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11594,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11593,"name":"uint32","nodeType":"ElementaryTypeName","src":"15387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":11592,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":11596,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15395:3:41","memberName":"max","nodeType":"MemberAccess","src":"15382:16:41","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"15374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11604,"nodeType":"IfStatement","src":"15370:103:41","trueBody":{"id":11603,"nodeType":"Block","src":"15400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":11599,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":11600,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11586,"src":"15456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11598,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"15421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11602,"nodeType":"RevertStatement","src":"15414:48:41"}]}},{"expression":{"arguments":[{"id":11607,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11586,"src":"15496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11606,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11605,"name":"uint32","nodeType":"ElementaryTypeName","src":"15489:6:41","typeDescriptions":{}}},"id":11608,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":11590,"id":11609,"nodeType":"Return","src":"15482:20:41"}]},"documentation":{"id":11584,"nodeType":"StructuredDocumentation","src":"15015:276:41","text":" @dev Returns the downcasted uint32 from uint256, reverting on\n overflow (when the input is greater than largest uint32).\n Counterpart to Solidity's `uint32` operator.\n Requirements:\n - input must fit into 32 bits"},"id":11611,"implemented":true,"kind":"function","modifiers":[],"name":"toUint32","nameLocation":"15305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11586,"mutability":"mutable","name":"value","nameLocation":"15322:5:41","nodeType":"VariableDeclaration","scope":11611,"src":"15314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11585,"name":"uint256","nodeType":"ElementaryTypeName","src":"15314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15313:15:41"},"returnParameters":{"id":11590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11589,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11611,"src":"15352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11588,"name":"uint32","nodeType":"ElementaryTypeName","src":"15352:6:41","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15351:8:41"},"scope":12565,"src":"15296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11638,"nodeType":"Block","src":"15860:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11619,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11614,"src":"15874:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11622,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15887:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":11621,"name":"uint24","nodeType":"ElementaryTypeName","src":"15887:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"}],"id":11620,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15882:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11623,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15882:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint24","typeString":"type(uint24)"}},"id":11624,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15895:3:41","memberName":"max","nodeType":"MemberAccess","src":"15882:16:41","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"src":"15874:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11632,"nodeType":"IfStatement","src":"15870:103:41","trueBody":{"id":11631,"nodeType":"Block","src":"15900:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":11627,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15952:2:41","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":11628,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11614,"src":"15956:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11626,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"15921:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15921:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11630,"nodeType":"RevertStatement","src":"15914:48:41"}]}},{"expression":{"arguments":[{"id":11635,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11614,"src":"15996:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11634,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":11633,"name":"uint24","nodeType":"ElementaryTypeName","src":"15989:6:41","typeDescriptions":{}}},"id":11636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"functionReturnParameters":11618,"id":11637,"nodeType":"Return","src":"15982:20:41"}]},"documentation":{"id":11612,"nodeType":"StructuredDocumentation","src":"15515:276:41","text":" @dev Returns the downcasted uint24 from uint256, reverting on\n overflow (when the input is greater than largest uint24).\n Counterpart to Solidity's `uint24` operator.\n Requirements:\n - input must fit into 24 bits"},"id":11639,"implemented":true,"kind":"function","modifiers":[],"name":"toUint24","nameLocation":"15805:8:41","nodeType":"FunctionDefinition","parameters":{"id":11615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11614,"mutability":"mutable","name":"value","nameLocation":"15822:5:41","nodeType":"VariableDeclaration","scope":11639,"src":"15814:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11613,"name":"uint256","nodeType":"ElementaryTypeName","src":"15814:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15813:15:41"},"returnParameters":{"id":11618,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11617,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11639,"src":"15852:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":11616,"name":"uint24","nodeType":"ElementaryTypeName","src":"15852:6:41","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"15851:8:41"},"scope":12565,"src":"15796:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11666,"nodeType":"Block","src":"16360:149:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11647,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11642,"src":"16374:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11650,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16387:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":11649,"name":"uint16","nodeType":"ElementaryTypeName","src":"16387:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"}],"id":11648,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16382:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16382:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint16","typeString":"type(uint16)"}},"id":11652,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16395:3:41","memberName":"max","nodeType":"MemberAccess","src":"16382:16:41","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"16374:24:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11660,"nodeType":"IfStatement","src":"16370:103:41","trueBody":{"id":11659,"nodeType":"Block","src":"16400:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":11655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16452:2:41","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":11656,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11642,"src":"16456:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11654,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"16421:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16421:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11658,"nodeType":"RevertStatement","src":"16414:48:41"}]}},{"expression":{"arguments":[{"id":11663,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11642,"src":"16496:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11662,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16489:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":11661,"name":"uint16","nodeType":"ElementaryTypeName","src":"16489:6:41","typeDescriptions":{}}},"id":11664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16489:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":11646,"id":11665,"nodeType":"Return","src":"16482:20:41"}]},"documentation":{"id":11640,"nodeType":"StructuredDocumentation","src":"16015:276:41","text":" @dev Returns the downcasted uint16 from uint256, reverting on\n overflow (when the input is greater than largest uint16).\n Counterpart to Solidity's `uint16` operator.\n Requirements:\n - input must fit into 16 bits"},"id":11667,"implemented":true,"kind":"function","modifiers":[],"name":"toUint16","nameLocation":"16305:8:41","nodeType":"FunctionDefinition","parameters":{"id":11643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11642,"mutability":"mutable","name":"value","nameLocation":"16322:5:41","nodeType":"VariableDeclaration","scope":11667,"src":"16314:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11641,"name":"uint256","nodeType":"ElementaryTypeName","src":"16314:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16313:15:41"},"returnParameters":{"id":11646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11645,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11667,"src":"16352:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":11644,"name":"uint16","nodeType":"ElementaryTypeName","src":"16352:6:41","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"16351:8:41"},"scope":12565,"src":"16296:213:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11694,"nodeType":"Block","src":"16854:146:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11675,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11670,"src":"16868:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11678,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16881:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11677,"name":"uint8","nodeType":"ElementaryTypeName","src":"16881:5:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":11676,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16876:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11679,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16876:11:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":11680,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16888:3:41","memberName":"max","nodeType":"MemberAccess","src":"16876:15:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16868:23:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11688,"nodeType":"IfStatement","src":"16864:101:41","trueBody":{"id":11687,"nodeType":"Block","src":"16893:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":11683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16945:1:41","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":11684,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11670,"src":"16948:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11682,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10810,"src":"16914:30:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16914:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11686,"nodeType":"RevertStatement","src":"16907:47:41"}]}},{"expression":{"arguments":[{"id":11691,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11670,"src":"16987:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11690,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16981:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11689,"name":"uint8","nodeType":"ElementaryTypeName","src":"16981:5:41","typeDescriptions":{}}},"id":11692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16981:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":11674,"id":11693,"nodeType":"Return","src":"16974:19:41"}]},"documentation":{"id":11668,"nodeType":"StructuredDocumentation","src":"16515:272:41","text":" @dev Returns the downcasted uint8 from uint256, reverting on\n overflow (when the input is greater than largest uint8).\n Counterpart to Solidity's `uint8` operator.\n Requirements:\n - input must fit into 8 bits"},"id":11695,"implemented":true,"kind":"function","modifiers":[],"name":"toUint8","nameLocation":"16801:7:41","nodeType":"FunctionDefinition","parameters":{"id":11671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11670,"mutability":"mutable","name":"value","nameLocation":"16817:5:41","nodeType":"VariableDeclaration","scope":11695,"src":"16809:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11669,"name":"uint256","nodeType":"ElementaryTypeName","src":"16809:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16808:15:41"},"returnParameters":{"id":11674,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11673,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11695,"src":"16847:5:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11672,"name":"uint8","nodeType":"ElementaryTypeName","src":"16847:5:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16846:7:41"},"scope":12565,"src":"16792:208:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11717,"nodeType":"Block","src":"17236:128:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11703,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11698,"src":"17250:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":11704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17258:1:41","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17250:9:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11711,"nodeType":"IfStatement","src":"17246:81:41","trueBody":{"id":11710,"nodeType":"Block","src":"17261:66:41","statements":[{"errorCall":{"arguments":[{"id":11707,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11698,"src":"17310:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11706,"name":"SafeCastOverflowedIntToUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10815,"src":"17282:27:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$returns$__$","typeString":"function (int256) pure"}},"id":11708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17282:34:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11709,"nodeType":"RevertStatement","src":"17275:41:41"}]}},{"expression":{"arguments":[{"id":11714,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11698,"src":"17351:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17343:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11712,"name":"uint256","nodeType":"ElementaryTypeName","src":"17343:7:41","typeDescriptions":{}}},"id":11715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17343:14:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11702,"id":11716,"nodeType":"Return","src":"17336:21:41"}]},"documentation":{"id":11696,"nodeType":"StructuredDocumentation","src":"17006:160:41","text":" @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."},"id":11718,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"17180:9:41","nodeType":"FunctionDefinition","parameters":{"id":11699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11698,"mutability":"mutable","name":"value","nameLocation":"17197:5:41","nodeType":"VariableDeclaration","scope":11718,"src":"17190:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11697,"name":"int256","nodeType":"ElementaryTypeName","src":"17190:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17189:14:41"},"returnParameters":{"id":11702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11701,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11718,"src":"17227:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11700,"name":"uint256","nodeType":"ElementaryTypeName","src":"17227:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17226:9:41"},"scope":12565,"src":"17171:193:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11743,"nodeType":"Block","src":"17761:150:41","statements":[{"expression":{"id":11731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11726,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11724,"src":"17771:10:41","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11729,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11721,"src":"17791:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11728,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17784:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int248_$","typeString":"type(int248)"},"typeName":{"id":11727,"name":"int248","nodeType":"ElementaryTypeName","src":"17784:6:41","typeDescriptions":{}}},"id":11730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17784:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"src":"17771:26:41","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"id":11732,"nodeType":"ExpressionStatement","src":"17771:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11733,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11724,"src":"17811:10:41","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11734,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11721,"src":"17825:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"17811:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11742,"nodeType":"IfStatement","src":"17807:98:41","trueBody":{"id":11741,"nodeType":"Block","src":"17832:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":11737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17883:3:41","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":11738,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11721,"src":"17888:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11736,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"17853:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17853:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11740,"nodeType":"RevertStatement","src":"17846:48:41"}]}}]},"documentation":{"id":11719,"nodeType":"StructuredDocumentation","src":"17370:312:41","text":" @dev Returns the downcasted int248 from int256, reverting on\n overflow (when the input is less than smallest int248 or\n greater than largest int248).\n Counterpart to Solidity's `int248` operator.\n Requirements:\n - input must fit into 248 bits"},"id":11744,"implemented":true,"kind":"function","modifiers":[],"name":"toInt248","nameLocation":"17696:8:41","nodeType":"FunctionDefinition","parameters":{"id":11722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11721,"mutability":"mutable","name":"value","nameLocation":"17712:5:41","nodeType":"VariableDeclaration","scope":11744,"src":"17705:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11720,"name":"int256","nodeType":"ElementaryTypeName","src":"17705:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17704:14:41"},"returnParameters":{"id":11725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11724,"mutability":"mutable","name":"downcasted","nameLocation":"17749:10:41","nodeType":"VariableDeclaration","scope":11744,"src":"17742:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"},"typeName":{"id":11723,"name":"int248","nodeType":"ElementaryTypeName","src":"17742:6:41","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"visibility":"internal"}],"src":"17741:19:41"},"scope":12565,"src":"17687:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11769,"nodeType":"Block","src":"18308:150:41","statements":[{"expression":{"id":11757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11752,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11750,"src":"18318:10:41","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11755,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11747,"src":"18338:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11754,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18331:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int240_$","typeString":"type(int240)"},"typeName":{"id":11753,"name":"int240","nodeType":"ElementaryTypeName","src":"18331:6:41","typeDescriptions":{}}},"id":11756,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18331:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"src":"18318:26:41","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"id":11758,"nodeType":"ExpressionStatement","src":"18318:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11759,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11750,"src":"18358:10:41","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11760,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11747,"src":"18372:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18358:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11768,"nodeType":"IfStatement","src":"18354:98:41","trueBody":{"id":11767,"nodeType":"Block","src":"18379:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":11763,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18430:3:41","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":11764,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11747,"src":"18435:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11762,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"18400:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18400:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11766,"nodeType":"RevertStatement","src":"18393:48:41"}]}}]},"documentation":{"id":11745,"nodeType":"StructuredDocumentation","src":"17917:312:41","text":" @dev Returns the downcasted int240 from int256, reverting on\n overflow (when the input is less than smallest int240 or\n greater than largest int240).\n Counterpart to Solidity's `int240` operator.\n Requirements:\n - input must fit into 240 bits"},"id":11770,"implemented":true,"kind":"function","modifiers":[],"name":"toInt240","nameLocation":"18243:8:41","nodeType":"FunctionDefinition","parameters":{"id":11748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11747,"mutability":"mutable","name":"value","nameLocation":"18259:5:41","nodeType":"VariableDeclaration","scope":11770,"src":"18252:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11746,"name":"int256","nodeType":"ElementaryTypeName","src":"18252:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18251:14:41"},"returnParameters":{"id":11751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11750,"mutability":"mutable","name":"downcasted","nameLocation":"18296:10:41","nodeType":"VariableDeclaration","scope":11770,"src":"18289:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"},"typeName":{"id":11749,"name":"int240","nodeType":"ElementaryTypeName","src":"18289:6:41","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"visibility":"internal"}],"src":"18288:19:41"},"scope":12565,"src":"18234:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11795,"nodeType":"Block","src":"18855:150:41","statements":[{"expression":{"id":11783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11778,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"18865:10:41","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11781,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11773,"src":"18885:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11780,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18878:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int232_$","typeString":"type(int232)"},"typeName":{"id":11779,"name":"int232","nodeType":"ElementaryTypeName","src":"18878:6:41","typeDescriptions":{}}},"id":11782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18878:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"src":"18865:26:41","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"id":11784,"nodeType":"ExpressionStatement","src":"18865:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11785,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"18905:10:41","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11786,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11773,"src":"18919:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18905:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11794,"nodeType":"IfStatement","src":"18901:98:41","trueBody":{"id":11793,"nodeType":"Block","src":"18926:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":11789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18977:3:41","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":11790,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11773,"src":"18982:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11788,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"18947:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18947:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11792,"nodeType":"RevertStatement","src":"18940:48:41"}]}}]},"documentation":{"id":11771,"nodeType":"StructuredDocumentation","src":"18464:312:41","text":" @dev Returns the downcasted int232 from int256, reverting on\n overflow (when the input is less than smallest int232 or\n greater than largest int232).\n Counterpart to Solidity's `int232` operator.\n Requirements:\n - input must fit into 232 bits"},"id":11796,"implemented":true,"kind":"function","modifiers":[],"name":"toInt232","nameLocation":"18790:8:41","nodeType":"FunctionDefinition","parameters":{"id":11774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11773,"mutability":"mutable","name":"value","nameLocation":"18806:5:41","nodeType":"VariableDeclaration","scope":11796,"src":"18799:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11772,"name":"int256","nodeType":"ElementaryTypeName","src":"18799:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18798:14:41"},"returnParameters":{"id":11777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11776,"mutability":"mutable","name":"downcasted","nameLocation":"18843:10:41","nodeType":"VariableDeclaration","scope":11796,"src":"18836:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"},"typeName":{"id":11775,"name":"int232","nodeType":"ElementaryTypeName","src":"18836:6:41","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"visibility":"internal"}],"src":"18835:19:41"},"scope":12565,"src":"18781:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11821,"nodeType":"Block","src":"19402:150:41","statements":[{"expression":{"id":11809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11804,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11802,"src":"19412:10:41","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11807,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11799,"src":"19432:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11806,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19425:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int224_$","typeString":"type(int224)"},"typeName":{"id":11805,"name":"int224","nodeType":"ElementaryTypeName","src":"19425:6:41","typeDescriptions":{}}},"id":11808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19425:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"src":"19412:26:41","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"id":11810,"nodeType":"ExpressionStatement","src":"19412:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11811,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11802,"src":"19452:10:41","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11812,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11799,"src":"19466:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19452:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11820,"nodeType":"IfStatement","src":"19448:98:41","trueBody":{"id":11819,"nodeType":"Block","src":"19473:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":11815,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19524:3:41","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":11816,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11799,"src":"19529:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11814,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"19494:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19494:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11818,"nodeType":"RevertStatement","src":"19487:48:41"}]}}]},"documentation":{"id":11797,"nodeType":"StructuredDocumentation","src":"19011:312:41","text":" @dev Returns the downcasted int224 from int256, reverting on\n overflow (when the input is less than smallest int224 or\n greater than largest int224).\n Counterpart to Solidity's `int224` operator.\n Requirements:\n - input must fit into 224 bits"},"id":11822,"implemented":true,"kind":"function","modifiers":[],"name":"toInt224","nameLocation":"19337:8:41","nodeType":"FunctionDefinition","parameters":{"id":11800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11799,"mutability":"mutable","name":"value","nameLocation":"19353:5:41","nodeType":"VariableDeclaration","scope":11822,"src":"19346:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11798,"name":"int256","nodeType":"ElementaryTypeName","src":"19346:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19345:14:41"},"returnParameters":{"id":11803,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11802,"mutability":"mutable","name":"downcasted","nameLocation":"19390:10:41","nodeType":"VariableDeclaration","scope":11822,"src":"19383:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"},"typeName":{"id":11801,"name":"int224","nodeType":"ElementaryTypeName","src":"19383:6:41","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"visibility":"internal"}],"src":"19382:19:41"},"scope":12565,"src":"19328:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11847,"nodeType":"Block","src":"19949:150:41","statements":[{"expression":{"id":11835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11830,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11828,"src":"19959:10:41","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11833,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11825,"src":"19979:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11832,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19972:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int216_$","typeString":"type(int216)"},"typeName":{"id":11831,"name":"int216","nodeType":"ElementaryTypeName","src":"19972:6:41","typeDescriptions":{}}},"id":11834,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19972:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"src":"19959:26:41","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"id":11836,"nodeType":"ExpressionStatement","src":"19959:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11837,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11828,"src":"19999:10:41","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11838,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11825,"src":"20013:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19999:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11846,"nodeType":"IfStatement","src":"19995:98:41","trueBody":{"id":11845,"nodeType":"Block","src":"20020:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":11841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20071:3:41","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":11842,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11825,"src":"20076:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11840,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"20041:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20041:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11844,"nodeType":"RevertStatement","src":"20034:48:41"}]}}]},"documentation":{"id":11823,"nodeType":"StructuredDocumentation","src":"19558:312:41","text":" @dev Returns the downcasted int216 from int256, reverting on\n overflow (when the input is less than smallest int216 or\n greater than largest int216).\n Counterpart to Solidity's `int216` operator.\n Requirements:\n - input must fit into 216 bits"},"id":11848,"implemented":true,"kind":"function","modifiers":[],"name":"toInt216","nameLocation":"19884:8:41","nodeType":"FunctionDefinition","parameters":{"id":11826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11825,"mutability":"mutable","name":"value","nameLocation":"19900:5:41","nodeType":"VariableDeclaration","scope":11848,"src":"19893:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11824,"name":"int256","nodeType":"ElementaryTypeName","src":"19893:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19892:14:41"},"returnParameters":{"id":11829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11828,"mutability":"mutable","name":"downcasted","nameLocation":"19937:10:41","nodeType":"VariableDeclaration","scope":11848,"src":"19930:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"},"typeName":{"id":11827,"name":"int216","nodeType":"ElementaryTypeName","src":"19930:6:41","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"visibility":"internal"}],"src":"19929:19:41"},"scope":12565,"src":"19875:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11873,"nodeType":"Block","src":"20496:150:41","statements":[{"expression":{"id":11861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11856,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11854,"src":"20506:10:41","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11859,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11851,"src":"20526:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11858,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20519:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int208_$","typeString":"type(int208)"},"typeName":{"id":11857,"name":"int208","nodeType":"ElementaryTypeName","src":"20519:6:41","typeDescriptions":{}}},"id":11860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20519:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"src":"20506:26:41","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"id":11862,"nodeType":"ExpressionStatement","src":"20506:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11863,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11854,"src":"20546:10:41","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11864,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11851,"src":"20560:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"20546:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11872,"nodeType":"IfStatement","src":"20542:98:41","trueBody":{"id":11871,"nodeType":"Block","src":"20567:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":11867,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20618:3:41","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":11868,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11851,"src":"20623:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11866,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"20588:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20588:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11870,"nodeType":"RevertStatement","src":"20581:48:41"}]}}]},"documentation":{"id":11849,"nodeType":"StructuredDocumentation","src":"20105:312:41","text":" @dev Returns the downcasted int208 from int256, reverting on\n overflow (when the input is less than smallest int208 or\n greater than largest int208).\n Counterpart to Solidity's `int208` operator.\n Requirements:\n - input must fit into 208 bits"},"id":11874,"implemented":true,"kind":"function","modifiers":[],"name":"toInt208","nameLocation":"20431:8:41","nodeType":"FunctionDefinition","parameters":{"id":11852,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11851,"mutability":"mutable","name":"value","nameLocation":"20447:5:41","nodeType":"VariableDeclaration","scope":11874,"src":"20440:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11850,"name":"int256","nodeType":"ElementaryTypeName","src":"20440:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20439:14:41"},"returnParameters":{"id":11855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11854,"mutability":"mutable","name":"downcasted","nameLocation":"20484:10:41","nodeType":"VariableDeclaration","scope":11874,"src":"20477:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"},"typeName":{"id":11853,"name":"int208","nodeType":"ElementaryTypeName","src":"20477:6:41","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"visibility":"internal"}],"src":"20476:19:41"},"scope":12565,"src":"20422:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11899,"nodeType":"Block","src":"21043:150:41","statements":[{"expression":{"id":11887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11882,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11880,"src":"21053:10:41","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11885,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11877,"src":"21073:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11884,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21066:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int200_$","typeString":"type(int200)"},"typeName":{"id":11883,"name":"int200","nodeType":"ElementaryTypeName","src":"21066:6:41","typeDescriptions":{}}},"id":11886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21066:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"src":"21053:26:41","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"id":11888,"nodeType":"ExpressionStatement","src":"21053:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11889,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11880,"src":"21093:10:41","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11890,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11877,"src":"21107:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21093:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11898,"nodeType":"IfStatement","src":"21089:98:41","trueBody":{"id":11897,"nodeType":"Block","src":"21114:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":11893,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21165:3:41","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":11894,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11877,"src":"21170:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11892,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"21135:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21135:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11896,"nodeType":"RevertStatement","src":"21128:48:41"}]}}]},"documentation":{"id":11875,"nodeType":"StructuredDocumentation","src":"20652:312:41","text":" @dev Returns the downcasted int200 from int256, reverting on\n overflow (when the input is less than smallest int200 or\n greater than largest int200).\n Counterpart to Solidity's `int200` operator.\n Requirements:\n - input must fit into 200 bits"},"id":11900,"implemented":true,"kind":"function","modifiers":[],"name":"toInt200","nameLocation":"20978:8:41","nodeType":"FunctionDefinition","parameters":{"id":11878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11877,"mutability":"mutable","name":"value","nameLocation":"20994:5:41","nodeType":"VariableDeclaration","scope":11900,"src":"20987:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11876,"name":"int256","nodeType":"ElementaryTypeName","src":"20987:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20986:14:41"},"returnParameters":{"id":11881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11880,"mutability":"mutable","name":"downcasted","nameLocation":"21031:10:41","nodeType":"VariableDeclaration","scope":11900,"src":"21024:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"},"typeName":{"id":11879,"name":"int200","nodeType":"ElementaryTypeName","src":"21024:6:41","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"visibility":"internal"}],"src":"21023:19:41"},"scope":12565,"src":"20969:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11925,"nodeType":"Block","src":"21590:150:41","statements":[{"expression":{"id":11913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11908,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11906,"src":"21600:10:41","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11911,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11903,"src":"21620:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21613:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int192_$","typeString":"type(int192)"},"typeName":{"id":11909,"name":"int192","nodeType":"ElementaryTypeName","src":"21613:6:41","typeDescriptions":{}}},"id":11912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21613:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"src":"21600:26:41","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"id":11914,"nodeType":"ExpressionStatement","src":"21600:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11915,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11906,"src":"21640:10:41","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11916,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11903,"src":"21654:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21640:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11924,"nodeType":"IfStatement","src":"21636:98:41","trueBody":{"id":11923,"nodeType":"Block","src":"21661:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":11919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21712:3:41","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":11920,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11903,"src":"21717:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11918,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"21682:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11921,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21682:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11922,"nodeType":"RevertStatement","src":"21675:48:41"}]}}]},"documentation":{"id":11901,"nodeType":"StructuredDocumentation","src":"21199:312:41","text":" @dev Returns the downcasted int192 from int256, reverting on\n overflow (when the input is less than smallest int192 or\n greater than largest int192).\n Counterpart to Solidity's `int192` operator.\n Requirements:\n - input must fit into 192 bits"},"id":11926,"implemented":true,"kind":"function","modifiers":[],"name":"toInt192","nameLocation":"21525:8:41","nodeType":"FunctionDefinition","parameters":{"id":11904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11903,"mutability":"mutable","name":"value","nameLocation":"21541:5:41","nodeType":"VariableDeclaration","scope":11926,"src":"21534:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11902,"name":"int256","nodeType":"ElementaryTypeName","src":"21534:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"21533:14:41"},"returnParameters":{"id":11907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11906,"mutability":"mutable","name":"downcasted","nameLocation":"21578:10:41","nodeType":"VariableDeclaration","scope":11926,"src":"21571:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"},"typeName":{"id":11905,"name":"int192","nodeType":"ElementaryTypeName","src":"21571:6:41","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"visibility":"internal"}],"src":"21570:19:41"},"scope":12565,"src":"21516:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11951,"nodeType":"Block","src":"22137:150:41","statements":[{"expression":{"id":11939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11934,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11932,"src":"22147:10:41","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11937,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11929,"src":"22167:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22160:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int184_$","typeString":"type(int184)"},"typeName":{"id":11935,"name":"int184","nodeType":"ElementaryTypeName","src":"22160:6:41","typeDescriptions":{}}},"id":11938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22160:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"src":"22147:26:41","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"id":11940,"nodeType":"ExpressionStatement","src":"22147:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11941,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11932,"src":"22187:10:41","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11942,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11929,"src":"22201:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22187:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11950,"nodeType":"IfStatement","src":"22183:98:41","trueBody":{"id":11949,"nodeType":"Block","src":"22208:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":11945,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22259:3:41","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":11946,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11929,"src":"22264:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11944,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"22229:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22229:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11948,"nodeType":"RevertStatement","src":"22222:48:41"}]}}]},"documentation":{"id":11927,"nodeType":"StructuredDocumentation","src":"21746:312:41","text":" @dev Returns the downcasted int184 from int256, reverting on\n overflow (when the input is less than smallest int184 or\n greater than largest int184).\n Counterpart to Solidity's `int184` operator.\n Requirements:\n - input must fit into 184 bits"},"id":11952,"implemented":true,"kind":"function","modifiers":[],"name":"toInt184","nameLocation":"22072:8:41","nodeType":"FunctionDefinition","parameters":{"id":11930,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11929,"mutability":"mutable","name":"value","nameLocation":"22088:5:41","nodeType":"VariableDeclaration","scope":11952,"src":"22081:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11928,"name":"int256","nodeType":"ElementaryTypeName","src":"22081:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22080:14:41"},"returnParameters":{"id":11933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11932,"mutability":"mutable","name":"downcasted","nameLocation":"22125:10:41","nodeType":"VariableDeclaration","scope":11952,"src":"22118:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"},"typeName":{"id":11931,"name":"int184","nodeType":"ElementaryTypeName","src":"22118:6:41","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"visibility":"internal"}],"src":"22117:19:41"},"scope":12565,"src":"22063:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11977,"nodeType":"Block","src":"22684:150:41","statements":[{"expression":{"id":11965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11960,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"22694:10:41","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11963,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11955,"src":"22714:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22707:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int176_$","typeString":"type(int176)"},"typeName":{"id":11961,"name":"int176","nodeType":"ElementaryTypeName","src":"22707:6:41","typeDescriptions":{}}},"id":11964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22707:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"src":"22694:26:41","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"id":11966,"nodeType":"ExpressionStatement","src":"22694:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11967,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"22734:10:41","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11968,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11955,"src":"22748:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22734:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11976,"nodeType":"IfStatement","src":"22730:98:41","trueBody":{"id":11975,"nodeType":"Block","src":"22755:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":11971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22806:3:41","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":11972,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11955,"src":"22811:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11970,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"22776:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22776:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11974,"nodeType":"RevertStatement","src":"22769:48:41"}]}}]},"documentation":{"id":11953,"nodeType":"StructuredDocumentation","src":"22293:312:41","text":" @dev Returns the downcasted int176 from int256, reverting on\n overflow (when the input is less than smallest int176 or\n greater than largest int176).\n Counterpart to Solidity's `int176` operator.\n Requirements:\n - input must fit into 176 bits"},"id":11978,"implemented":true,"kind":"function","modifiers":[],"name":"toInt176","nameLocation":"22619:8:41","nodeType":"FunctionDefinition","parameters":{"id":11956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11955,"mutability":"mutable","name":"value","nameLocation":"22635:5:41","nodeType":"VariableDeclaration","scope":11978,"src":"22628:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11954,"name":"int256","nodeType":"ElementaryTypeName","src":"22628:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22627:14:41"},"returnParameters":{"id":11959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11958,"mutability":"mutable","name":"downcasted","nameLocation":"22672:10:41","nodeType":"VariableDeclaration","scope":11978,"src":"22665:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"},"typeName":{"id":11957,"name":"int176","nodeType":"ElementaryTypeName","src":"22665:6:41","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"visibility":"internal"}],"src":"22664:19:41"},"scope":12565,"src":"22610:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12003,"nodeType":"Block","src":"23231:150:41","statements":[{"expression":{"id":11991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11986,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11984,"src":"23241:10:41","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11989,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11981,"src":"23261:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11988,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23254:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int168_$","typeString":"type(int168)"},"typeName":{"id":11987,"name":"int168","nodeType":"ElementaryTypeName","src":"23254:6:41","typeDescriptions":{}}},"id":11990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23254:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"src":"23241:26:41","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"id":11992,"nodeType":"ExpressionStatement","src":"23241:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11993,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11984,"src":"23281:10:41","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11994,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11981,"src":"23295:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23281:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12002,"nodeType":"IfStatement","src":"23277:98:41","trueBody":{"id":12001,"nodeType":"Block","src":"23302:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":11997,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23353:3:41","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":11998,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11981,"src":"23358:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11996,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"23323:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":11999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23323:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12000,"nodeType":"RevertStatement","src":"23316:48:41"}]}}]},"documentation":{"id":11979,"nodeType":"StructuredDocumentation","src":"22840:312:41","text":" @dev Returns the downcasted int168 from int256, reverting on\n overflow (when the input is less than smallest int168 or\n greater than largest int168).\n Counterpart to Solidity's `int168` operator.\n Requirements:\n - input must fit into 168 bits"},"id":12004,"implemented":true,"kind":"function","modifiers":[],"name":"toInt168","nameLocation":"23166:8:41","nodeType":"FunctionDefinition","parameters":{"id":11982,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11981,"mutability":"mutable","name":"value","nameLocation":"23182:5:41","nodeType":"VariableDeclaration","scope":12004,"src":"23175:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11980,"name":"int256","nodeType":"ElementaryTypeName","src":"23175:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23174:14:41"},"returnParameters":{"id":11985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11984,"mutability":"mutable","name":"downcasted","nameLocation":"23219:10:41","nodeType":"VariableDeclaration","scope":12004,"src":"23212:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"},"typeName":{"id":11983,"name":"int168","nodeType":"ElementaryTypeName","src":"23212:6:41","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"visibility":"internal"}],"src":"23211:19:41"},"scope":12565,"src":"23157:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12029,"nodeType":"Block","src":"23778:150:41","statements":[{"expression":{"id":12017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12012,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12010,"src":"23788:10:41","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12015,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12007,"src":"23808:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12014,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23801:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int160_$","typeString":"type(int160)"},"typeName":{"id":12013,"name":"int160","nodeType":"ElementaryTypeName","src":"23801:6:41","typeDescriptions":{}}},"id":12016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23801:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"src":"23788:26:41","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"id":12018,"nodeType":"ExpressionStatement","src":"23788:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12019,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12010,"src":"23828:10:41","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12020,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12007,"src":"23842:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23828:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12028,"nodeType":"IfStatement","src":"23824:98:41","trueBody":{"id":12027,"nodeType":"Block","src":"23849:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":12023,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23900:3:41","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":12024,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12007,"src":"23905:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12022,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"23870:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23870:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12026,"nodeType":"RevertStatement","src":"23863:48:41"}]}}]},"documentation":{"id":12005,"nodeType":"StructuredDocumentation","src":"23387:312:41","text":" @dev Returns the downcasted int160 from int256, reverting on\n overflow (when the input is less than smallest int160 or\n greater than largest int160).\n Counterpart to Solidity's `int160` operator.\n Requirements:\n - input must fit into 160 bits"},"id":12030,"implemented":true,"kind":"function","modifiers":[],"name":"toInt160","nameLocation":"23713:8:41","nodeType":"FunctionDefinition","parameters":{"id":12008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12007,"mutability":"mutable","name":"value","nameLocation":"23729:5:41","nodeType":"VariableDeclaration","scope":12030,"src":"23722:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12006,"name":"int256","nodeType":"ElementaryTypeName","src":"23722:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23721:14:41"},"returnParameters":{"id":12011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12010,"mutability":"mutable","name":"downcasted","nameLocation":"23766:10:41","nodeType":"VariableDeclaration","scope":12030,"src":"23759:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"},"typeName":{"id":12009,"name":"int160","nodeType":"ElementaryTypeName","src":"23759:6:41","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"visibility":"internal"}],"src":"23758:19:41"},"scope":12565,"src":"23704:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12055,"nodeType":"Block","src":"24325:150:41","statements":[{"expression":{"id":12043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12038,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12036,"src":"24335:10:41","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12041,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12033,"src":"24355:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12040,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24348:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int152_$","typeString":"type(int152)"},"typeName":{"id":12039,"name":"int152","nodeType":"ElementaryTypeName","src":"24348:6:41","typeDescriptions":{}}},"id":12042,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24348:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"src":"24335:26:41","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"id":12044,"nodeType":"ExpressionStatement","src":"24335:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12045,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12036,"src":"24375:10:41","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12046,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12033,"src":"24389:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24375:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12054,"nodeType":"IfStatement","src":"24371:98:41","trueBody":{"id":12053,"nodeType":"Block","src":"24396:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":12049,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24447:3:41","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":12050,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12033,"src":"24452:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12048,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"24417:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24417:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12052,"nodeType":"RevertStatement","src":"24410:48:41"}]}}]},"documentation":{"id":12031,"nodeType":"StructuredDocumentation","src":"23934:312:41","text":" @dev Returns the downcasted int152 from int256, reverting on\n overflow (when the input is less than smallest int152 or\n greater than largest int152).\n Counterpart to Solidity's `int152` operator.\n Requirements:\n - input must fit into 152 bits"},"id":12056,"implemented":true,"kind":"function","modifiers":[],"name":"toInt152","nameLocation":"24260:8:41","nodeType":"FunctionDefinition","parameters":{"id":12034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12033,"mutability":"mutable","name":"value","nameLocation":"24276:5:41","nodeType":"VariableDeclaration","scope":12056,"src":"24269:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12032,"name":"int256","nodeType":"ElementaryTypeName","src":"24269:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24268:14:41"},"returnParameters":{"id":12037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12036,"mutability":"mutable","name":"downcasted","nameLocation":"24313:10:41","nodeType":"VariableDeclaration","scope":12056,"src":"24306:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"},"typeName":{"id":12035,"name":"int152","nodeType":"ElementaryTypeName","src":"24306:6:41","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"visibility":"internal"}],"src":"24305:19:41"},"scope":12565,"src":"24251:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12081,"nodeType":"Block","src":"24872:150:41","statements":[{"expression":{"id":12069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12064,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12062,"src":"24882:10:41","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12067,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12059,"src":"24902:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12066,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24895:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int144_$","typeString":"type(int144)"},"typeName":{"id":12065,"name":"int144","nodeType":"ElementaryTypeName","src":"24895:6:41","typeDescriptions":{}}},"id":12068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24895:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"src":"24882:26:41","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"id":12070,"nodeType":"ExpressionStatement","src":"24882:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12071,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12062,"src":"24922:10:41","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12072,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12059,"src":"24936:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24922:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12080,"nodeType":"IfStatement","src":"24918:98:41","trueBody":{"id":12079,"nodeType":"Block","src":"24943:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":12075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24994:3:41","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":12076,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12059,"src":"24999:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12074,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"24964:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24964:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12078,"nodeType":"RevertStatement","src":"24957:48:41"}]}}]},"documentation":{"id":12057,"nodeType":"StructuredDocumentation","src":"24481:312:41","text":" @dev Returns the downcasted int144 from int256, reverting on\n overflow (when the input is less than smallest int144 or\n greater than largest int144).\n Counterpart to Solidity's `int144` operator.\n Requirements:\n - input must fit into 144 bits"},"id":12082,"implemented":true,"kind":"function","modifiers":[],"name":"toInt144","nameLocation":"24807:8:41","nodeType":"FunctionDefinition","parameters":{"id":12060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12059,"mutability":"mutable","name":"value","nameLocation":"24823:5:41","nodeType":"VariableDeclaration","scope":12082,"src":"24816:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12058,"name":"int256","nodeType":"ElementaryTypeName","src":"24816:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24815:14:41"},"returnParameters":{"id":12063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12062,"mutability":"mutable","name":"downcasted","nameLocation":"24860:10:41","nodeType":"VariableDeclaration","scope":12082,"src":"24853:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"},"typeName":{"id":12061,"name":"int144","nodeType":"ElementaryTypeName","src":"24853:6:41","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"visibility":"internal"}],"src":"24852:19:41"},"scope":12565,"src":"24798:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12107,"nodeType":"Block","src":"25419:150:41","statements":[{"expression":{"id":12095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12090,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12088,"src":"25429:10:41","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12093,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"25449:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25442:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int136_$","typeString":"type(int136)"},"typeName":{"id":12091,"name":"int136","nodeType":"ElementaryTypeName","src":"25442:6:41","typeDescriptions":{}}},"id":12094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25442:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"src":"25429:26:41","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"id":12096,"nodeType":"ExpressionStatement","src":"25429:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12097,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12088,"src":"25469:10:41","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12098,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"25483:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25469:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12106,"nodeType":"IfStatement","src":"25465:98:41","trueBody":{"id":12105,"nodeType":"Block","src":"25490:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":12101,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25541:3:41","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":12102,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"25546:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12100,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"25511:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25511:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12104,"nodeType":"RevertStatement","src":"25504:48:41"}]}}]},"documentation":{"id":12083,"nodeType":"StructuredDocumentation","src":"25028:312:41","text":" @dev Returns the downcasted int136 from int256, reverting on\n overflow (when the input is less than smallest int136 or\n greater than largest int136).\n Counterpart to Solidity's `int136` operator.\n Requirements:\n - input must fit into 136 bits"},"id":12108,"implemented":true,"kind":"function","modifiers":[],"name":"toInt136","nameLocation":"25354:8:41","nodeType":"FunctionDefinition","parameters":{"id":12086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12085,"mutability":"mutable","name":"value","nameLocation":"25370:5:41","nodeType":"VariableDeclaration","scope":12108,"src":"25363:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12084,"name":"int256","nodeType":"ElementaryTypeName","src":"25363:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25362:14:41"},"returnParameters":{"id":12089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12088,"mutability":"mutable","name":"downcasted","nameLocation":"25407:10:41","nodeType":"VariableDeclaration","scope":12108,"src":"25400:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"},"typeName":{"id":12087,"name":"int136","nodeType":"ElementaryTypeName","src":"25400:6:41","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"visibility":"internal"}],"src":"25399:19:41"},"scope":12565,"src":"25345:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12133,"nodeType":"Block","src":"25966:150:41","statements":[{"expression":{"id":12121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12116,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12114,"src":"25976:10:41","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12119,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12111,"src":"25996:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12118,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25989:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int128_$","typeString":"type(int128)"},"typeName":{"id":12117,"name":"int128","nodeType":"ElementaryTypeName","src":"25989:6:41","typeDescriptions":{}}},"id":12120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25989:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"src":"25976:26:41","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"id":12122,"nodeType":"ExpressionStatement","src":"25976:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12123,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12114,"src":"26016:10:41","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12124,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12111,"src":"26030:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26016:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12132,"nodeType":"IfStatement","src":"26012:98:41","trueBody":{"id":12131,"nodeType":"Block","src":"26037:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":12127,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26088:3:41","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":12128,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12111,"src":"26093:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12126,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"26058:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26058:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12130,"nodeType":"RevertStatement","src":"26051:48:41"}]}}]},"documentation":{"id":12109,"nodeType":"StructuredDocumentation","src":"25575:312:41","text":" @dev Returns the downcasted int128 from int256, reverting on\n overflow (when the input is less than smallest int128 or\n greater than largest int128).\n Counterpart to Solidity's `int128` operator.\n Requirements:\n - input must fit into 128 bits"},"id":12134,"implemented":true,"kind":"function","modifiers":[],"name":"toInt128","nameLocation":"25901:8:41","nodeType":"FunctionDefinition","parameters":{"id":12112,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12111,"mutability":"mutable","name":"value","nameLocation":"25917:5:41","nodeType":"VariableDeclaration","scope":12134,"src":"25910:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12110,"name":"int256","nodeType":"ElementaryTypeName","src":"25910:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25909:14:41"},"returnParameters":{"id":12115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12114,"mutability":"mutable","name":"downcasted","nameLocation":"25954:10:41","nodeType":"VariableDeclaration","scope":12134,"src":"25947:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"},"typeName":{"id":12113,"name":"int128","nodeType":"ElementaryTypeName","src":"25947:6:41","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"visibility":"internal"}],"src":"25946:19:41"},"scope":12565,"src":"25892:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12159,"nodeType":"Block","src":"26513:150:41","statements":[{"expression":{"id":12147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12142,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12140,"src":"26523:10:41","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12145,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12137,"src":"26543:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12144,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26536:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int120_$","typeString":"type(int120)"},"typeName":{"id":12143,"name":"int120","nodeType":"ElementaryTypeName","src":"26536:6:41","typeDescriptions":{}}},"id":12146,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26536:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"src":"26523:26:41","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"id":12148,"nodeType":"ExpressionStatement","src":"26523:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12149,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12140,"src":"26563:10:41","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12150,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12137,"src":"26577:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26563:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12158,"nodeType":"IfStatement","src":"26559:98:41","trueBody":{"id":12157,"nodeType":"Block","src":"26584:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":12153,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26635:3:41","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":12154,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12137,"src":"26640:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12152,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"26605:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26605:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12156,"nodeType":"RevertStatement","src":"26598:48:41"}]}}]},"documentation":{"id":12135,"nodeType":"StructuredDocumentation","src":"26122:312:41","text":" @dev Returns the downcasted int120 from int256, reverting on\n overflow (when the input is less than smallest int120 or\n greater than largest int120).\n Counterpart to Solidity's `int120` operator.\n Requirements:\n - input must fit into 120 bits"},"id":12160,"implemented":true,"kind":"function","modifiers":[],"name":"toInt120","nameLocation":"26448:8:41","nodeType":"FunctionDefinition","parameters":{"id":12138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12137,"mutability":"mutable","name":"value","nameLocation":"26464:5:41","nodeType":"VariableDeclaration","scope":12160,"src":"26457:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12136,"name":"int256","nodeType":"ElementaryTypeName","src":"26457:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"26456:14:41"},"returnParameters":{"id":12141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12140,"mutability":"mutable","name":"downcasted","nameLocation":"26501:10:41","nodeType":"VariableDeclaration","scope":12160,"src":"26494:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"},"typeName":{"id":12139,"name":"int120","nodeType":"ElementaryTypeName","src":"26494:6:41","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"visibility":"internal"}],"src":"26493:19:41"},"scope":12565,"src":"26439:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12185,"nodeType":"Block","src":"27060:150:41","statements":[{"expression":{"id":12173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12168,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12166,"src":"27070:10:41","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12171,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12163,"src":"27090:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12170,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27083:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int112_$","typeString":"type(int112)"},"typeName":{"id":12169,"name":"int112","nodeType":"ElementaryTypeName","src":"27083:6:41","typeDescriptions":{}}},"id":12172,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27083:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"src":"27070:26:41","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"id":12174,"nodeType":"ExpressionStatement","src":"27070:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12175,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12166,"src":"27110:10:41","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12176,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12163,"src":"27124:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27110:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12184,"nodeType":"IfStatement","src":"27106:98:41","trueBody":{"id":12183,"nodeType":"Block","src":"27131:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":12179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27182:3:41","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":12180,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12163,"src":"27187:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12178,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"27152:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27152:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12182,"nodeType":"RevertStatement","src":"27145:48:41"}]}}]},"documentation":{"id":12161,"nodeType":"StructuredDocumentation","src":"26669:312:41","text":" @dev Returns the downcasted int112 from int256, reverting on\n overflow (when the input is less than smallest int112 or\n greater than largest int112).\n Counterpart to Solidity's `int112` operator.\n Requirements:\n - input must fit into 112 bits"},"id":12186,"implemented":true,"kind":"function","modifiers":[],"name":"toInt112","nameLocation":"26995:8:41","nodeType":"FunctionDefinition","parameters":{"id":12164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12163,"mutability":"mutable","name":"value","nameLocation":"27011:5:41","nodeType":"VariableDeclaration","scope":12186,"src":"27004:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12162,"name":"int256","nodeType":"ElementaryTypeName","src":"27004:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27003:14:41"},"returnParameters":{"id":12167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12166,"mutability":"mutable","name":"downcasted","nameLocation":"27048:10:41","nodeType":"VariableDeclaration","scope":12186,"src":"27041:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"},"typeName":{"id":12165,"name":"int112","nodeType":"ElementaryTypeName","src":"27041:6:41","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"visibility":"internal"}],"src":"27040:19:41"},"scope":12565,"src":"26986:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12211,"nodeType":"Block","src":"27607:150:41","statements":[{"expression":{"id":12199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12194,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12192,"src":"27617:10:41","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12197,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12189,"src":"27637:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27630:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int104_$","typeString":"type(int104)"},"typeName":{"id":12195,"name":"int104","nodeType":"ElementaryTypeName","src":"27630:6:41","typeDescriptions":{}}},"id":12198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27630:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"src":"27617:26:41","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"id":12200,"nodeType":"ExpressionStatement","src":"27617:26:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12201,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12192,"src":"27657:10:41","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12202,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12189,"src":"27671:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27657:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12210,"nodeType":"IfStatement","src":"27653:98:41","trueBody":{"id":12209,"nodeType":"Block","src":"27678:73:41","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":12205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27729:3:41","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":12206,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12189,"src":"27734:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12204,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"27699:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27699:41:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12208,"nodeType":"RevertStatement","src":"27692:48:41"}]}}]},"documentation":{"id":12187,"nodeType":"StructuredDocumentation","src":"27216:312:41","text":" @dev Returns the downcasted int104 from int256, reverting on\n overflow (when the input is less than smallest int104 or\n greater than largest int104).\n Counterpart to Solidity's `int104` operator.\n Requirements:\n - input must fit into 104 bits"},"id":12212,"implemented":true,"kind":"function","modifiers":[],"name":"toInt104","nameLocation":"27542:8:41","nodeType":"FunctionDefinition","parameters":{"id":12190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12189,"mutability":"mutable","name":"value","nameLocation":"27558:5:41","nodeType":"VariableDeclaration","scope":12212,"src":"27551:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12188,"name":"int256","nodeType":"ElementaryTypeName","src":"27551:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27550:14:41"},"returnParameters":{"id":12193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12192,"mutability":"mutable","name":"downcasted","nameLocation":"27595:10:41","nodeType":"VariableDeclaration","scope":12212,"src":"27588:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"},"typeName":{"id":12191,"name":"int104","nodeType":"ElementaryTypeName","src":"27588:6:41","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"visibility":"internal"}],"src":"27587:19:41"},"scope":12565,"src":"27533:224:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12237,"nodeType":"Block","src":"28147:148:41","statements":[{"expression":{"id":12225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12220,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12218,"src":"28157:10:41","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12223,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12215,"src":"28176:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12222,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28170:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":12221,"name":"int96","nodeType":"ElementaryTypeName","src":"28170:5:41","typeDescriptions":{}}},"id":12224,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28170:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"28157:25:41","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":12226,"nodeType":"ExpressionStatement","src":"28157:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12227,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12218,"src":"28196:10:41","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12228,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12215,"src":"28210:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28196:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12236,"nodeType":"IfStatement","src":"28192:97:41","trueBody":{"id":12235,"nodeType":"Block","src":"28217:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":12231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28268:2:41","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":12232,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12215,"src":"28272:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12230,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"28238:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28238:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12234,"nodeType":"RevertStatement","src":"28231:47:41"}]}}]},"documentation":{"id":12213,"nodeType":"StructuredDocumentation","src":"27763:307:41","text":" @dev Returns the downcasted int96 from int256, reverting on\n overflow (when the input is less than smallest int96 or\n greater than largest int96).\n Counterpart to Solidity's `int96` operator.\n Requirements:\n - input must fit into 96 bits"},"id":12238,"implemented":true,"kind":"function","modifiers":[],"name":"toInt96","nameLocation":"28084:7:41","nodeType":"FunctionDefinition","parameters":{"id":12216,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12215,"mutability":"mutable","name":"value","nameLocation":"28099:5:41","nodeType":"VariableDeclaration","scope":12238,"src":"28092:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12214,"name":"int256","nodeType":"ElementaryTypeName","src":"28092:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28091:14:41"},"returnParameters":{"id":12219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12218,"mutability":"mutable","name":"downcasted","nameLocation":"28135:10:41","nodeType":"VariableDeclaration","scope":12238,"src":"28129:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":12217,"name":"int96","nodeType":"ElementaryTypeName","src":"28129:5:41","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"}],"src":"28128:18:41"},"scope":12565,"src":"28075:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12263,"nodeType":"Block","src":"28685:148:41","statements":[{"expression":{"id":12251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12246,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12244,"src":"28695:10:41","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12249,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"28714:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12248,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28708:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int88_$","typeString":"type(int88)"},"typeName":{"id":12247,"name":"int88","nodeType":"ElementaryTypeName","src":"28708:5:41","typeDescriptions":{}}},"id":12250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28708:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"src":"28695:25:41","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"id":12252,"nodeType":"ExpressionStatement","src":"28695:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12253,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12244,"src":"28734:10:41","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12254,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"28748:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28734:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12262,"nodeType":"IfStatement","src":"28730:97:41","trueBody":{"id":12261,"nodeType":"Block","src":"28755:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":12257,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28806:2:41","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":12258,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"28810:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12256,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"28776:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28776:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12260,"nodeType":"RevertStatement","src":"28769:47:41"}]}}]},"documentation":{"id":12239,"nodeType":"StructuredDocumentation","src":"28301:307:41","text":" @dev Returns the downcasted int88 from int256, reverting on\n overflow (when the input is less than smallest int88 or\n greater than largest int88).\n Counterpart to Solidity's `int88` operator.\n Requirements:\n - input must fit into 88 bits"},"id":12264,"implemented":true,"kind":"function","modifiers":[],"name":"toInt88","nameLocation":"28622:7:41","nodeType":"FunctionDefinition","parameters":{"id":12242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12241,"mutability":"mutable","name":"value","nameLocation":"28637:5:41","nodeType":"VariableDeclaration","scope":12264,"src":"28630:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12240,"name":"int256","nodeType":"ElementaryTypeName","src":"28630:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28629:14:41"},"returnParameters":{"id":12245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12244,"mutability":"mutable","name":"downcasted","nameLocation":"28673:10:41","nodeType":"VariableDeclaration","scope":12264,"src":"28667:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"},"typeName":{"id":12243,"name":"int88","nodeType":"ElementaryTypeName","src":"28667:5:41","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"visibility":"internal"}],"src":"28666:18:41"},"scope":12565,"src":"28613:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12289,"nodeType":"Block","src":"29223:148:41","statements":[{"expression":{"id":12277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12272,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12270,"src":"29233:10:41","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12275,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12267,"src":"29252:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12274,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29246:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int80_$","typeString":"type(int80)"},"typeName":{"id":12273,"name":"int80","nodeType":"ElementaryTypeName","src":"29246:5:41","typeDescriptions":{}}},"id":12276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29246:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"src":"29233:25:41","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"id":12278,"nodeType":"ExpressionStatement","src":"29233:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12279,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12270,"src":"29272:10:41","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12280,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12267,"src":"29286:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29272:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12288,"nodeType":"IfStatement","src":"29268:97:41","trueBody":{"id":12287,"nodeType":"Block","src":"29293:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":12283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29344:2:41","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":12284,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12267,"src":"29348:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12282,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"29314:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29314:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12286,"nodeType":"RevertStatement","src":"29307:47:41"}]}}]},"documentation":{"id":12265,"nodeType":"StructuredDocumentation","src":"28839:307:41","text":" @dev Returns the downcasted int80 from int256, reverting on\n overflow (when the input is less than smallest int80 or\n greater than largest int80).\n Counterpart to Solidity's `int80` operator.\n Requirements:\n - input must fit into 80 bits"},"id":12290,"implemented":true,"kind":"function","modifiers":[],"name":"toInt80","nameLocation":"29160:7:41","nodeType":"FunctionDefinition","parameters":{"id":12268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12267,"mutability":"mutable","name":"value","nameLocation":"29175:5:41","nodeType":"VariableDeclaration","scope":12290,"src":"29168:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12266,"name":"int256","nodeType":"ElementaryTypeName","src":"29168:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29167:14:41"},"returnParameters":{"id":12271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12270,"mutability":"mutable","name":"downcasted","nameLocation":"29211:10:41","nodeType":"VariableDeclaration","scope":12290,"src":"29205:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"},"typeName":{"id":12269,"name":"int80","nodeType":"ElementaryTypeName","src":"29205:5:41","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"visibility":"internal"}],"src":"29204:18:41"},"scope":12565,"src":"29151:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12315,"nodeType":"Block","src":"29761:148:41","statements":[{"expression":{"id":12303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12298,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12296,"src":"29771:10:41","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12301,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12293,"src":"29790:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29784:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int72_$","typeString":"type(int72)"},"typeName":{"id":12299,"name":"int72","nodeType":"ElementaryTypeName","src":"29784:5:41","typeDescriptions":{}}},"id":12302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29784:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"src":"29771:25:41","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"id":12304,"nodeType":"ExpressionStatement","src":"29771:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12305,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12296,"src":"29810:10:41","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12306,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12293,"src":"29824:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29810:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12314,"nodeType":"IfStatement","src":"29806:97:41","trueBody":{"id":12313,"nodeType":"Block","src":"29831:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":12309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29882:2:41","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":12310,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12293,"src":"29886:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12308,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"29852:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29852:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12312,"nodeType":"RevertStatement","src":"29845:47:41"}]}}]},"documentation":{"id":12291,"nodeType":"StructuredDocumentation","src":"29377:307:41","text":" @dev Returns the downcasted int72 from int256, reverting on\n overflow (when the input is less than smallest int72 or\n greater than largest int72).\n Counterpart to Solidity's `int72` operator.\n Requirements:\n - input must fit into 72 bits"},"id":12316,"implemented":true,"kind":"function","modifiers":[],"name":"toInt72","nameLocation":"29698:7:41","nodeType":"FunctionDefinition","parameters":{"id":12294,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12293,"mutability":"mutable","name":"value","nameLocation":"29713:5:41","nodeType":"VariableDeclaration","scope":12316,"src":"29706:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12292,"name":"int256","nodeType":"ElementaryTypeName","src":"29706:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29705:14:41"},"returnParameters":{"id":12297,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12296,"mutability":"mutable","name":"downcasted","nameLocation":"29749:10:41","nodeType":"VariableDeclaration","scope":12316,"src":"29743:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"},"typeName":{"id":12295,"name":"int72","nodeType":"ElementaryTypeName","src":"29743:5:41","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"visibility":"internal"}],"src":"29742:18:41"},"scope":12565,"src":"29689:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12341,"nodeType":"Block","src":"30299:148:41","statements":[{"expression":{"id":12329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12324,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12322,"src":"30309:10:41","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12327,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12319,"src":"30328:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12326,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30322:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":12325,"name":"int64","nodeType":"ElementaryTypeName","src":"30322:5:41","typeDescriptions":{}}},"id":12328,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30322:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"30309:25:41","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":12330,"nodeType":"ExpressionStatement","src":"30309:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12331,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12322,"src":"30348:10:41","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12332,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12319,"src":"30362:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30348:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12340,"nodeType":"IfStatement","src":"30344:97:41","trueBody":{"id":12339,"nodeType":"Block","src":"30369:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":12335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30420:2:41","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":12336,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12319,"src":"30424:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12334,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"30390:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30390:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12338,"nodeType":"RevertStatement","src":"30383:47:41"}]}}]},"documentation":{"id":12317,"nodeType":"StructuredDocumentation","src":"29915:307:41","text":" @dev Returns the downcasted int64 from int256, reverting on\n overflow (when the input is less than smallest int64 or\n greater than largest int64).\n Counterpart to Solidity's `int64` operator.\n Requirements:\n - input must fit into 64 bits"},"id":12342,"implemented":true,"kind":"function","modifiers":[],"name":"toInt64","nameLocation":"30236:7:41","nodeType":"FunctionDefinition","parameters":{"id":12320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12319,"mutability":"mutable","name":"value","nameLocation":"30251:5:41","nodeType":"VariableDeclaration","scope":12342,"src":"30244:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12318,"name":"int256","nodeType":"ElementaryTypeName","src":"30244:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30243:14:41"},"returnParameters":{"id":12323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12322,"mutability":"mutable","name":"downcasted","nameLocation":"30287:10:41","nodeType":"VariableDeclaration","scope":12342,"src":"30281:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":12321,"name":"int64","nodeType":"ElementaryTypeName","src":"30281:5:41","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"30280:18:41"},"scope":12565,"src":"30227:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12367,"nodeType":"Block","src":"30837:148:41","statements":[{"expression":{"id":12355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12350,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12348,"src":"30847:10:41","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12353,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12345,"src":"30866:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12352,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30860:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int56_$","typeString":"type(int56)"},"typeName":{"id":12351,"name":"int56","nodeType":"ElementaryTypeName","src":"30860:5:41","typeDescriptions":{}}},"id":12354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30860:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"src":"30847:25:41","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"id":12356,"nodeType":"ExpressionStatement","src":"30847:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12357,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12348,"src":"30886:10:41","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12358,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12345,"src":"30900:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30886:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12366,"nodeType":"IfStatement","src":"30882:97:41","trueBody":{"id":12365,"nodeType":"Block","src":"30907:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":12361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30958:2:41","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":12362,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12345,"src":"30962:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12360,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"30928:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30928:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12364,"nodeType":"RevertStatement","src":"30921:47:41"}]}}]},"documentation":{"id":12343,"nodeType":"StructuredDocumentation","src":"30453:307:41","text":" @dev Returns the downcasted int56 from int256, reverting on\n overflow (when the input is less than smallest int56 or\n greater than largest int56).\n Counterpart to Solidity's `int56` operator.\n Requirements:\n - input must fit into 56 bits"},"id":12368,"implemented":true,"kind":"function","modifiers":[],"name":"toInt56","nameLocation":"30774:7:41","nodeType":"FunctionDefinition","parameters":{"id":12346,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12345,"mutability":"mutable","name":"value","nameLocation":"30789:5:41","nodeType":"VariableDeclaration","scope":12368,"src":"30782:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12344,"name":"int256","nodeType":"ElementaryTypeName","src":"30782:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30781:14:41"},"returnParameters":{"id":12349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12348,"mutability":"mutable","name":"downcasted","nameLocation":"30825:10:41","nodeType":"VariableDeclaration","scope":12368,"src":"30819:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":12347,"name":"int56","nodeType":"ElementaryTypeName","src":"30819:5:41","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"}],"src":"30818:18:41"},"scope":12565,"src":"30765:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12393,"nodeType":"Block","src":"31375:148:41","statements":[{"expression":{"id":12381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12376,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12374,"src":"31385:10:41","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12379,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12371,"src":"31404:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12378,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31398:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int48_$","typeString":"type(int48)"},"typeName":{"id":12377,"name":"int48","nodeType":"ElementaryTypeName","src":"31398:5:41","typeDescriptions":{}}},"id":12380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31398:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"src":"31385:25:41","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"id":12382,"nodeType":"ExpressionStatement","src":"31385:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12383,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12374,"src":"31424:10:41","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12384,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12371,"src":"31438:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31424:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12392,"nodeType":"IfStatement","src":"31420:97:41","trueBody":{"id":12391,"nodeType":"Block","src":"31445:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":12387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31496:2:41","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":12388,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12371,"src":"31500:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12386,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"31466:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31466:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12390,"nodeType":"RevertStatement","src":"31459:47:41"}]}}]},"documentation":{"id":12369,"nodeType":"StructuredDocumentation","src":"30991:307:41","text":" @dev Returns the downcasted int48 from int256, reverting on\n overflow (when the input is less than smallest int48 or\n greater than largest int48).\n Counterpart to Solidity's `int48` operator.\n Requirements:\n - input must fit into 48 bits"},"id":12394,"implemented":true,"kind":"function","modifiers":[],"name":"toInt48","nameLocation":"31312:7:41","nodeType":"FunctionDefinition","parameters":{"id":12372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12371,"mutability":"mutable","name":"value","nameLocation":"31327:5:41","nodeType":"VariableDeclaration","scope":12394,"src":"31320:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12370,"name":"int256","nodeType":"ElementaryTypeName","src":"31320:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31319:14:41"},"returnParameters":{"id":12375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12374,"mutability":"mutable","name":"downcasted","nameLocation":"31363:10:41","nodeType":"VariableDeclaration","scope":12394,"src":"31357:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"},"typeName":{"id":12373,"name":"int48","nodeType":"ElementaryTypeName","src":"31357:5:41","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"visibility":"internal"}],"src":"31356:18:41"},"scope":12565,"src":"31303:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12419,"nodeType":"Block","src":"31913:148:41","statements":[{"expression":{"id":12407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12402,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12400,"src":"31923:10:41","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12405,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12397,"src":"31942:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12404,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31936:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int40_$","typeString":"type(int40)"},"typeName":{"id":12403,"name":"int40","nodeType":"ElementaryTypeName","src":"31936:5:41","typeDescriptions":{}}},"id":12406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31936:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"src":"31923:25:41","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"id":12408,"nodeType":"ExpressionStatement","src":"31923:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12409,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12400,"src":"31962:10:41","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12410,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12397,"src":"31976:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31962:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12418,"nodeType":"IfStatement","src":"31958:97:41","trueBody":{"id":12417,"nodeType":"Block","src":"31983:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":12413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32034:2:41","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":12414,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12397,"src":"32038:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12412,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"32004:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32004:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12416,"nodeType":"RevertStatement","src":"31997:47:41"}]}}]},"documentation":{"id":12395,"nodeType":"StructuredDocumentation","src":"31529:307:41","text":" @dev Returns the downcasted int40 from int256, reverting on\n overflow (when the input is less than smallest int40 or\n greater than largest int40).\n Counterpart to Solidity's `int40` operator.\n Requirements:\n - input must fit into 40 bits"},"id":12420,"implemented":true,"kind":"function","modifiers":[],"name":"toInt40","nameLocation":"31850:7:41","nodeType":"FunctionDefinition","parameters":{"id":12398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12397,"mutability":"mutable","name":"value","nameLocation":"31865:5:41","nodeType":"VariableDeclaration","scope":12420,"src":"31858:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12396,"name":"int256","nodeType":"ElementaryTypeName","src":"31858:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31857:14:41"},"returnParameters":{"id":12401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12400,"mutability":"mutable","name":"downcasted","nameLocation":"31901:10:41","nodeType":"VariableDeclaration","scope":12420,"src":"31895:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"},"typeName":{"id":12399,"name":"int40","nodeType":"ElementaryTypeName","src":"31895:5:41","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"visibility":"internal"}],"src":"31894:18:41"},"scope":12565,"src":"31841:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12445,"nodeType":"Block","src":"32451:148:41","statements":[{"expression":{"id":12433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12428,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12426,"src":"32461:10:41","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12431,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12423,"src":"32480:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12430,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32474:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":12429,"name":"int32","nodeType":"ElementaryTypeName","src":"32474:5:41","typeDescriptions":{}}},"id":12432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32474:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"32461:25:41","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":12434,"nodeType":"ExpressionStatement","src":"32461:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12435,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12426,"src":"32500:10:41","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12436,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12423,"src":"32514:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"32500:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12444,"nodeType":"IfStatement","src":"32496:97:41","trueBody":{"id":12443,"nodeType":"Block","src":"32521:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":12439,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32572:2:41","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":12440,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12423,"src":"32576:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12438,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"32542:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32542:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12442,"nodeType":"RevertStatement","src":"32535:47:41"}]}}]},"documentation":{"id":12421,"nodeType":"StructuredDocumentation","src":"32067:307:41","text":" @dev Returns the downcasted int32 from int256, reverting on\n overflow (when the input is less than smallest int32 or\n greater than largest int32).\n Counterpart to Solidity's `int32` operator.\n Requirements:\n - input must fit into 32 bits"},"id":12446,"implemented":true,"kind":"function","modifiers":[],"name":"toInt32","nameLocation":"32388:7:41","nodeType":"FunctionDefinition","parameters":{"id":12424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12423,"mutability":"mutable","name":"value","nameLocation":"32403:5:41","nodeType":"VariableDeclaration","scope":12446,"src":"32396:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12422,"name":"int256","nodeType":"ElementaryTypeName","src":"32396:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32395:14:41"},"returnParameters":{"id":12427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12426,"mutability":"mutable","name":"downcasted","nameLocation":"32439:10:41","nodeType":"VariableDeclaration","scope":12446,"src":"32433:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":12425,"name":"int32","nodeType":"ElementaryTypeName","src":"32433:5:41","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"32432:18:41"},"scope":12565,"src":"32379:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12471,"nodeType":"Block","src":"32989:148:41","statements":[{"expression":{"id":12459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12454,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12452,"src":"32999:10:41","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12457,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12449,"src":"33018:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12456,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33012:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int24_$","typeString":"type(int24)"},"typeName":{"id":12455,"name":"int24","nodeType":"ElementaryTypeName","src":"33012:5:41","typeDescriptions":{}}},"id":12458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33012:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"32999:25:41","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"id":12460,"nodeType":"ExpressionStatement","src":"32999:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12461,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12452,"src":"33038:10:41","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12462,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12449,"src":"33052:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33038:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12470,"nodeType":"IfStatement","src":"33034:97:41","trueBody":{"id":12469,"nodeType":"Block","src":"33059:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":12465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33110:2:41","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":12466,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12449,"src":"33114:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12464,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"33080:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12467,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33080:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12468,"nodeType":"RevertStatement","src":"33073:47:41"}]}}]},"documentation":{"id":12447,"nodeType":"StructuredDocumentation","src":"32605:307:41","text":" @dev Returns the downcasted int24 from int256, reverting on\n overflow (when the input is less than smallest int24 or\n greater than largest int24).\n Counterpart to Solidity's `int24` operator.\n Requirements:\n - input must fit into 24 bits"},"id":12472,"implemented":true,"kind":"function","modifiers":[],"name":"toInt24","nameLocation":"32926:7:41","nodeType":"FunctionDefinition","parameters":{"id":12450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12449,"mutability":"mutable","name":"value","nameLocation":"32941:5:41","nodeType":"VariableDeclaration","scope":12472,"src":"32934:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12448,"name":"int256","nodeType":"ElementaryTypeName","src":"32934:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32933:14:41"},"returnParameters":{"id":12453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12452,"mutability":"mutable","name":"downcasted","nameLocation":"32977:10:41","nodeType":"VariableDeclaration","scope":12472,"src":"32971:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":12451,"name":"int24","nodeType":"ElementaryTypeName","src":"32971:5:41","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"32970:18:41"},"scope":12565,"src":"32917:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12497,"nodeType":"Block","src":"33527:148:41","statements":[{"expression":{"id":12485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12480,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12478,"src":"33537:10:41","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12483,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12475,"src":"33556:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12482,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33550:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int16_$","typeString":"type(int16)"},"typeName":{"id":12481,"name":"int16","nodeType":"ElementaryTypeName","src":"33550:5:41","typeDescriptions":{}}},"id":12484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33550:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"src":"33537:25:41","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"id":12486,"nodeType":"ExpressionStatement","src":"33537:25:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12487,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12478,"src":"33576:10:41","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12488,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12475,"src":"33590:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33576:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12496,"nodeType":"IfStatement","src":"33572:97:41","trueBody":{"id":12495,"nodeType":"Block","src":"33597:72:41","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":12491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33648:2:41","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":12492,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12475,"src":"33652:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12490,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"33618:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33618:40:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12494,"nodeType":"RevertStatement","src":"33611:47:41"}]}}]},"documentation":{"id":12473,"nodeType":"StructuredDocumentation","src":"33143:307:41","text":" @dev Returns the downcasted int16 from int256, reverting on\n overflow (when the input is less than smallest int16 or\n greater than largest int16).\n Counterpart to Solidity's `int16` operator.\n Requirements:\n - input must fit into 16 bits"},"id":12498,"implemented":true,"kind":"function","modifiers":[],"name":"toInt16","nameLocation":"33464:7:41","nodeType":"FunctionDefinition","parameters":{"id":12476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12475,"mutability":"mutable","name":"value","nameLocation":"33479:5:41","nodeType":"VariableDeclaration","scope":12498,"src":"33472:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12474,"name":"int256","nodeType":"ElementaryTypeName","src":"33472:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"33471:14:41"},"returnParameters":{"id":12479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12478,"mutability":"mutable","name":"downcasted","nameLocation":"33515:10:41","nodeType":"VariableDeclaration","scope":12498,"src":"33509:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"},"typeName":{"id":12477,"name":"int16","nodeType":"ElementaryTypeName","src":"33509:5:41","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"visibility":"internal"}],"src":"33508:18:41"},"scope":12565,"src":"33455:220:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12523,"nodeType":"Block","src":"34058:146:41","statements":[{"expression":{"id":12511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12506,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12504,"src":"34068:10:41","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12509,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12501,"src":"34086:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12508,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34081:4:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int8_$","typeString":"type(int8)"},"typeName":{"id":12507,"name":"int8","nodeType":"ElementaryTypeName","src":"34081:4:41","typeDescriptions":{}}},"id":12510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34081:11:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"src":"34068:24:41","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"id":12512,"nodeType":"ExpressionStatement","src":"34068:24:41"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12513,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12504,"src":"34106:10:41","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12514,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12501,"src":"34120:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"34106:19:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12522,"nodeType":"IfStatement","src":"34102:96:41","trueBody":{"id":12521,"nodeType":"Block","src":"34127:71:41","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":12517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34178:1:41","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":12518,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12501,"src":"34181:5:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12516,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"34148:29:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34148:39:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12520,"nodeType":"RevertStatement","src":"34141:46:41"}]}}]},"documentation":{"id":12499,"nodeType":"StructuredDocumentation","src":"33681:302:41","text":" @dev Returns the downcasted int8 from int256, reverting on\n overflow (when the input is less than smallest int8 or\n greater than largest int8).\n Counterpart to Solidity's `int8` operator.\n Requirements:\n - input must fit into 8 bits"},"id":12524,"implemented":true,"kind":"function","modifiers":[],"name":"toInt8","nameLocation":"33997:6:41","nodeType":"FunctionDefinition","parameters":{"id":12502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12501,"mutability":"mutable","name":"value","nameLocation":"34011:5:41","nodeType":"VariableDeclaration","scope":12524,"src":"34004:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12500,"name":"int256","nodeType":"ElementaryTypeName","src":"34004:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34003:14:41"},"returnParameters":{"id":12505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12504,"mutability":"mutable","name":"downcasted","nameLocation":"34046:10:41","nodeType":"VariableDeclaration","scope":12524,"src":"34041:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"},"typeName":{"id":12503,"name":"int8","nodeType":"ElementaryTypeName","src":"34041:4:41","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"visibility":"internal"}],"src":"34040:17:41"},"scope":12565,"src":"33988:216:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12553,"nodeType":"Block","src":"34444:250:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12532,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12527,"src":"34557:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"arguments":[{"id":12537,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34578:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12536,"name":"int256","nodeType":"ElementaryTypeName","src":"34578:6:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":12535,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"34573:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34573:12:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":12539,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34586:3:41","memberName":"max","nodeType":"MemberAccess","src":"34573:16:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12534,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34565:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12533,"name":"uint256","nodeType":"ElementaryTypeName","src":"34565:7:41","typeDescriptions":{}}},"id":12540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34565:25:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34557:33:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12547,"nodeType":"IfStatement","src":"34553:105:41","trueBody":{"id":12546,"nodeType":"Block","src":"34592:66:41","statements":[{"errorCall":{"arguments":[{"id":12543,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12527,"src":"34641:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12542,"name":"SafeCastOverflowedUintToInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10827,"src":"34613:27:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":12544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34613:34:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12545,"nodeType":"RevertStatement","src":"34606:41:41"}]}},{"expression":{"arguments":[{"id":12550,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12527,"src":"34681:5:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12549,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34674:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12548,"name":"int256","nodeType":"ElementaryTypeName","src":"34674:6:41","typeDescriptions":{}}},"id":12551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34674:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12531,"id":12552,"nodeType":"Return","src":"34667:20:41"}]},"documentation":{"id":12525,"nodeType":"StructuredDocumentation","src":"34210:165:41","text":" @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."},"id":12554,"implemented":true,"kind":"function","modifiers":[],"name":"toInt256","nameLocation":"34389:8:41","nodeType":"FunctionDefinition","parameters":{"id":12528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12527,"mutability":"mutable","name":"value","nameLocation":"34406:5:41","nodeType":"VariableDeclaration","scope":12554,"src":"34398:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12526,"name":"uint256","nodeType":"ElementaryTypeName","src":"34398:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34397:15:41"},"returnParameters":{"id":12531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12530,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12554,"src":"34436:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12529,"name":"int256","nodeType":"ElementaryTypeName","src":"34436:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34435:8:41"},"scope":12565,"src":"34380:314:41","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12563,"nodeType":"Block","src":"34853:87:41","statements":[{"AST":{"nodeType":"YulBlock","src":"34888:46:41","statements":[{"nodeType":"YulAssignment","src":"34902:22:41","value":{"arguments":[{"arguments":[{"name":"b","nodeType":"YulIdentifier","src":"34921:1:41"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"34914:6:41"},"nodeType":"YulFunctionCall","src":"34914:9:41"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"34907:6:41"},"nodeType":"YulFunctionCall","src":"34907:17:41"},"variableNames":[{"name":"u","nodeType":"YulIdentifier","src":"34902:1:41"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":12557,"isOffset":false,"isSlot":false,"src":"34921:1:41","valueSize":1},{"declaration":12560,"isOffset":false,"isSlot":false,"src":"34902:1:41","valueSize":1}],"flags":["memory-safe"],"id":12562,"nodeType":"InlineAssembly","src":"34863:71:41"}]},"documentation":{"id":12555,"nodeType":"StructuredDocumentation","src":"34700:90:41","text":" @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump."},"id":12564,"implemented":true,"kind":"function","modifiers":[],"name":"toUint","nameLocation":"34804:6:41","nodeType":"FunctionDefinition","parameters":{"id":12558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12557,"mutability":"mutable","name":"b","nameLocation":"34816:1:41","nodeType":"VariableDeclaration","scope":12564,"src":"34811:6:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12556,"name":"bool","nodeType":"ElementaryTypeName","src":"34811:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34810:8:41"},"returnParameters":{"id":12561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12560,"mutability":"mutable","name":"u","nameLocation":"34850:1:41","nodeType":"VariableDeclaration","scope":12564,"src":"34842:9:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12559,"name":"uint256","nodeType":"ElementaryTypeName","src":"34842:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34841:11:41"},"scope":12565,"src":"34795:145:41","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":12566,"src":"769:34173:41","usedErrors":[10810,10815,10822,10827],"usedEvents":[]}],"src":"192:34751:41"},"id":41},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","exportedSymbols":{"SafeCast":[12565],"SignedMath":[12709]},"id":12710,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12567,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:42"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":12569,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12710,"sourceUnit":12566,"src":"135:40:42","symbolAliases":[{"foreign":{"id":12568,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"143:8:42","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignedMath","contractDependencies":[],"contractKind":"library","documentation":{"id":12570,"nodeType":"StructuredDocumentation","src":"177:80:42","text":" @dev Standard signed math utilities missing in the Solidity language."},"fullyImplemented":true,"id":12709,"linearizedBaseContracts":[12709],"name":"SignedMath","nameLocation":"266:10:42","nodeType":"ContractDefinition","nodes":[{"body":{"id":12599,"nodeType":"Block","src":"746:215:42","statements":[{"id":12598,"nodeType":"UncheckedBlock","src":"756:199:42","statements":[{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12582,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"894:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12583,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12575,"src":"900:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":12584,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"904:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"900:5:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12586,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"899:7:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"arguments":[{"id":12591,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12573,"src":"932:9:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":12589,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"916:8:42","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":12590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:6:42","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":12564,"src":"916:15:42","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":12592,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"916:26:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12588,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"909:6:42","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12587,"name":"int256","nodeType":"ElementaryTypeName","src":"909:6:42","typeDescriptions":{}}},"id":12593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"909:34:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"899:44:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12595,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"898:46:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"894:50:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12581,"id":12597,"nodeType":"Return","src":"887:57:42"}]}]},"documentation":{"id":12571,"nodeType":"StructuredDocumentation","src":"283:374:42","text":" @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n one branch when needed, making this function more expensive."},"id":12600,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"671:7:42","nodeType":"FunctionDefinition","parameters":{"id":12578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12573,"mutability":"mutable","name":"condition","nameLocation":"684:9:42","nodeType":"VariableDeclaration","scope":12600,"src":"679:14:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12572,"name":"bool","nodeType":"ElementaryTypeName","src":"679:4:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12575,"mutability":"mutable","name":"a","nameLocation":"702:1:42","nodeType":"VariableDeclaration","scope":12600,"src":"695:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12574,"name":"int256","nodeType":"ElementaryTypeName","src":"695:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":12577,"mutability":"mutable","name":"b","nameLocation":"712:1:42","nodeType":"VariableDeclaration","scope":12600,"src":"705:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12576,"name":"int256","nodeType":"ElementaryTypeName","src":"705:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"678:36:42"},"returnParameters":{"id":12581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12580,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12600,"src":"738:6:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12579,"name":"int256","nodeType":"ElementaryTypeName","src":"738:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"737:8:42"},"scope":12709,"src":"662:299:42","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12618,"nodeType":"Block","src":"1102:44:42","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12611,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12603,"src":"1127:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12612,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12605,"src":"1131:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1127:5:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":12614,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12603,"src":"1134:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":12615,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12605,"src":"1137:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12610,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12600,"src":"1119:7:42","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":12616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1119:20:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12609,"id":12617,"nodeType":"Return","src":"1112:27:42"}]},"documentation":{"id":12601,"nodeType":"StructuredDocumentation","src":"967:66:42","text":" @dev Returns the largest of two signed numbers."},"id":12619,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"1047:3:42","nodeType":"FunctionDefinition","parameters":{"id":12606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12603,"mutability":"mutable","name":"a","nameLocation":"1058:1:42","nodeType":"VariableDeclaration","scope":12619,"src":"1051:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12602,"name":"int256","nodeType":"ElementaryTypeName","src":"1051:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":12605,"mutability":"mutable","name":"b","nameLocation":"1068:1:42","nodeType":"VariableDeclaration","scope":12619,"src":"1061:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12604,"name":"int256","nodeType":"ElementaryTypeName","src":"1061:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1050:20:42"},"returnParameters":{"id":12609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12608,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12619,"src":"1094:6:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12607,"name":"int256","nodeType":"ElementaryTypeName","src":"1094:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1093:8:42"},"scope":12709,"src":"1038:108:42","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12637,"nodeType":"Block","src":"1288:44:42","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12630,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12622,"src":"1313:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12631,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12624,"src":"1317:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1313:5:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":12633,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12622,"src":"1320:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":12634,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12624,"src":"1323:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12629,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12600,"src":"1305:7:42","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":12635,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1305:20:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12628,"id":12636,"nodeType":"Return","src":"1298:27:42"}]},"documentation":{"id":12620,"nodeType":"StructuredDocumentation","src":"1152:67:42","text":" @dev Returns the smallest of two signed numbers."},"id":12638,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"1233:3:42","nodeType":"FunctionDefinition","parameters":{"id":12625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12622,"mutability":"mutable","name":"a","nameLocation":"1244:1:42","nodeType":"VariableDeclaration","scope":12638,"src":"1237:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12621,"name":"int256","nodeType":"ElementaryTypeName","src":"1237:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":12624,"mutability":"mutable","name":"b","nameLocation":"1254:1:42","nodeType":"VariableDeclaration","scope":12638,"src":"1247:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12623,"name":"int256","nodeType":"ElementaryTypeName","src":"1247:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1236:20:42"},"returnParameters":{"id":12628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12627,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12638,"src":"1280:6:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12626,"name":"int256","nodeType":"ElementaryTypeName","src":"1280:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1279:8:42"},"scope":12709,"src":"1224:108:42","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12681,"nodeType":"Block","src":"1537:162:42","statements":[{"assignments":[12649],"declarations":[{"constant":false,"id":12649,"mutability":"mutable","name":"x","nameLocation":"1606:1:42","nodeType":"VariableDeclaration","scope":12681,"src":"1599:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12648,"name":"int256","nodeType":"ElementaryTypeName","src":"1599:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":12662,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12650,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12641,"src":"1611:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":12651,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12643,"src":"1615:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1611:5:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12653,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1610:7:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12654,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12641,"src":"1622:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":12655,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12643,"src":"1626:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1622:5:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12657,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1621:7:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":12658,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1632:1:42","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1621:12:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12660,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1620:14:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1610:24:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"1599:35:42"},{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12663,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12649,"src":"1651:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12668,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12649,"src":"1671:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12667,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1663:7:42","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12666,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:42","typeDescriptions":{}}},"id":12669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1663:10:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":12670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1677:3:42","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"1663:17:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12665,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1656:6:42","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12664,"name":"int256","nodeType":"ElementaryTypeName","src":"1656:6:42","typeDescriptions":{}}},"id":12672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1656:25:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12673,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12641,"src":"1685:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":12674,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12643,"src":"1689:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1685:5:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12676,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1684:7:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1656:35:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12678,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1655:37:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1651:41:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12647,"id":12680,"nodeType":"Return","src":"1644:48:42"}]},"documentation":{"id":12639,"nodeType":"StructuredDocumentation","src":"1338:126:42","text":" @dev Returns the average of two signed numbers without overflow.\n The result is rounded towards zero."},"id":12682,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"1478:7:42","nodeType":"FunctionDefinition","parameters":{"id":12644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12641,"mutability":"mutable","name":"a","nameLocation":"1493:1:42","nodeType":"VariableDeclaration","scope":12682,"src":"1486:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12640,"name":"int256","nodeType":"ElementaryTypeName","src":"1486:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":12643,"mutability":"mutable","name":"b","nameLocation":"1503:1:42","nodeType":"VariableDeclaration","scope":12682,"src":"1496:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12642,"name":"int256","nodeType":"ElementaryTypeName","src":"1496:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1485:20:42"},"returnParameters":{"id":12647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12646,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12682,"src":"1529:6:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12645,"name":"int256","nodeType":"ElementaryTypeName","src":"1529:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1528:8:42"},"scope":12709,"src":"1469:230:42","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12707,"nodeType":"Block","src":"1843:767:42","statements":[{"id":12706,"nodeType":"UncheckedBlock","src":"1853:751:42","statements":[{"assignments":[12691],"declarations":[{"constant":false,"id":12691,"mutability":"mutable","name":"mask","nameLocation":"2424:4:42","nodeType":"VariableDeclaration","scope":12706,"src":"2417:11:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12690,"name":"int256","nodeType":"ElementaryTypeName","src":"2417:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":12695,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12692,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12685,"src":"2431:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":12693,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2436:3:42","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"2431:8:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"2417:22:42"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12698,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12685,"src":"2576:1:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":12699,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12691,"src":"2580:4:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2576:8:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12701,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2575:10:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":12702,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12691,"src":"2588:4:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2575:17:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12697,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2567:7:42","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12696,"name":"uint256","nodeType":"ElementaryTypeName","src":"2567:7:42","typeDescriptions":{}}},"id":12704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2567:26:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12689,"id":12705,"nodeType":"Return","src":"2560:33:42"}]}]},"documentation":{"id":12683,"nodeType":"StructuredDocumentation","src":"1705:78:42","text":" @dev Returns the absolute unsigned value of a signed value."},"id":12708,"implemented":true,"kind":"function","modifiers":[],"name":"abs","nameLocation":"1797:3:42","nodeType":"FunctionDefinition","parameters":{"id":12686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12685,"mutability":"mutable","name":"n","nameLocation":"1808:1:42","nodeType":"VariableDeclaration","scope":12708,"src":"1801:8:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12684,"name":"int256","nodeType":"ElementaryTypeName","src":"1801:6:42","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1800:10:42"},"returnParameters":{"id":12689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12688,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12708,"src":"1834:7:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12687,"name":"uint256","nodeType":"ElementaryTypeName","src":"1834:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1833:9:42"},"scope":12709,"src":"1788:822:42","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":12710,"src":"258:2354:42","usedErrors":[],"usedEvents":[]}],"src":"109:2504:42"},"id":42},"@openzeppelin/contracts/utils/structs/Checkpoints.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","exportedSymbols":{"Checkpoints":[14290],"Math":[10800]},"id":14291,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12711,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"201:24:43"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../math/Math.sol","id":12713,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14291,"sourceUnit":10801,"src":"227:38:43","symbolAliases":[{"foreign":{"id":12712,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"235:4:43","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Checkpoints","contractDependencies":[],"contractKind":"library","documentation":{"id":12714,"nodeType":"StructuredDocumentation","src":"267:400:43","text":" @dev This library defines the `Trace*` struct, for checkpointing values as they change at different points in\n time, and later looking up past values by block number. See {Votes} as an example.\n To create a history of checkpoints define a variable type `Checkpoints.Trace*` in your contract, and store a new\n checkpoint for the current transaction block using the {push} function."},"fullyImplemented":true,"id":14290,"linearizedBaseContracts":[14290],"name":"Checkpoints","nameLocation":"676:11:43","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":12715,"nodeType":"StructuredDocumentation","src":"694:82:43","text":" @dev A value was attempted to be inserted on a past checkpoint."},"errorSelector":"2520601d","id":12717,"name":"CheckpointUnorderedInsertion","nameLocation":"787:28:43","nodeType":"ErrorDefinition","parameters":{"id":12716,"nodeType":"ParameterList","parameters":[],"src":"815:2:43"},"src":"781:37:43"},{"canonicalName":"Checkpoints.Trace224","id":12722,"members":[{"constant":false,"id":12721,"mutability":"mutable","name":"_checkpoints","nameLocation":"866:12:43","nodeType":"VariableDeclaration","scope":12722,"src":"850:28:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":12719,"nodeType":"UserDefinedTypeName","pathNode":{"id":12718,"name":"Checkpoint224","nameLocations":["850:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"850:13:43"},"referencedDeclaration":12727,"src":"850:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":12720,"nodeType":"ArrayTypeName","src":"850:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"}],"name":"Trace224","nameLocation":"831:8:43","nodeType":"StructDefinition","scope":14290,"src":"824:61:43","visibility":"public"},{"canonicalName":"Checkpoints.Checkpoint224","id":12727,"members":[{"constant":false,"id":12724,"mutability":"mutable","name":"_key","nameLocation":"929:4:43","nodeType":"VariableDeclaration","scope":12727,"src":"922:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12723,"name":"uint32","nodeType":"ElementaryTypeName","src":"922:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":12726,"mutability":"mutable","name":"_value","nameLocation":"951:6:43","nodeType":"VariableDeclaration","scope":12727,"src":"943:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12725,"name":"uint224","nodeType":"ElementaryTypeName","src":"943:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"name":"Checkpoint224","nameLocation":"898:13:43","nodeType":"StructDefinition","scope":14290,"src":"891:73:43","visibility":"public"},{"body":{"id":12749,"nodeType":"Block","src":"1425:62:43","statements":[{"expression":{"arguments":[{"expression":{"id":12743,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12731,"src":"1450:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12744,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1455:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"1450:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12745,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12733,"src":"1469:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":12746,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12735,"src":"1474:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint224","typeString":"uint224"}],"id":12742,"name":"_insert","nodeType":"Identifier","overloadedDeclarations":[13122,13646,14170],"referencedDeclaration":13122,"src":"1442:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint32_$_t_uint224_$returns$_t_uint224_$_t_uint224_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint32,uint224) returns (uint224,uint224)"}},"id":12747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1442:38:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint224_$_t_uint224_$","typeString":"tuple(uint224,uint224)"}},"functionReturnParameters":12741,"id":12748,"nodeType":"Return","src":"1435:45:43"}]},"documentation":{"id":12728,"nodeType":"StructuredDocumentation","src":"970:302:43","text":" @dev Pushes a (`key`, `value`) pair into a Trace224 so that it is stored as the checkpoint.\n Returns previous value and new value.\n IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint32).max` key set will disable the\n library."},"id":12750,"implemented":true,"kind":"function","modifiers":[],"name":"push","nameLocation":"1286:4:43","nodeType":"FunctionDefinition","parameters":{"id":12736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12731,"mutability":"mutable","name":"self","nameLocation":"1317:4:43","nodeType":"VariableDeclaration","scope":12750,"src":"1300:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12730,"nodeType":"UserDefinedTypeName","pathNode":{"id":12729,"name":"Trace224","nameLocations":["1300:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"1300:8:43"},"referencedDeclaration":12722,"src":"1300:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":12733,"mutability":"mutable","name":"key","nameLocation":"1338:3:43","nodeType":"VariableDeclaration","scope":12750,"src":"1331:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12732,"name":"uint32","nodeType":"ElementaryTypeName","src":"1331:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":12735,"mutability":"mutable","name":"value","nameLocation":"1359:5:43","nodeType":"VariableDeclaration","scope":12750,"src":"1351:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12734,"name":"uint224","nodeType":"ElementaryTypeName","src":"1351:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"1290:80:43"},"returnParameters":{"id":12741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12738,"mutability":"mutable","name":"oldValue","nameLocation":"1397:8:43","nodeType":"VariableDeclaration","scope":12750,"src":"1389:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12737,"name":"uint224","nodeType":"ElementaryTypeName","src":"1389:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"},{"constant":false,"id":12740,"mutability":"mutable","name":"newValue","nameLocation":"1415:8:43","nodeType":"VariableDeclaration","scope":12750,"src":"1407:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12739,"name":"uint224","nodeType":"ElementaryTypeName","src":"1407:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"1388:36:43"},"scope":14290,"src":"1277:210:43","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12789,"nodeType":"Block","src":"1740:207:43","statements":[{"assignments":[12762],"declarations":[{"constant":false,"id":12762,"mutability":"mutable","name":"len","nameLocation":"1758:3:43","nodeType":"VariableDeclaration","scope":12789,"src":"1750:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12761,"name":"uint256","nodeType":"ElementaryTypeName","src":"1750:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12766,"initialValue":{"expression":{"expression":{"id":12763,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12754,"src":"1764:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12764,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1769:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"1764:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":12765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1782:6:43","memberName":"length","nodeType":"MemberAccess","src":"1764:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1750:38:43"},{"assignments":[12768],"declarations":[{"constant":false,"id":12768,"mutability":"mutable","name":"pos","nameLocation":"1806:3:43","nodeType":"VariableDeclaration","scope":12789,"src":"1798:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12767,"name":"uint256","nodeType":"ElementaryTypeName","src":"1798:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12776,"initialValue":{"arguments":[{"expression":{"id":12770,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12754,"src":"1831:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12771,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1836:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"1831:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12772,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12756,"src":"1850:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":12773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1855:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":12774,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12762,"src":"1858:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12769,"name":"_lowerBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13226,13750,14274],"referencedDeclaration":13226,"src":"1812:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint32_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint32,uint256,uint256) view returns (uint256)"}},"id":12775,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1812:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1798:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12777,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12768,"src":"1879:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":12778,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12762,"src":"1886:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1879:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":12782,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12754,"src":"1910:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12783,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1915:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"1910:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12784,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12768,"src":"1929:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12781,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"1896:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1896:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12786,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1934:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"1896:44:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":12787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1879:61:43","trueExpression":{"hexValue":"30","id":12780,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1892:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":12760,"id":12788,"nodeType":"Return","src":"1872:68:43"}]},"documentation":{"id":12751,"nodeType":"StructuredDocumentation","src":"1493:154:43","text":" @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n there is none."},"id":12790,"implemented":true,"kind":"function","modifiers":[],"name":"lowerLookup","nameLocation":"1661:11:43","nodeType":"FunctionDefinition","parameters":{"id":12757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12754,"mutability":"mutable","name":"self","nameLocation":"1690:4:43","nodeType":"VariableDeclaration","scope":12790,"src":"1673:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12753,"nodeType":"UserDefinedTypeName","pathNode":{"id":12752,"name":"Trace224","nameLocations":["1673:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"1673:8:43"},"referencedDeclaration":12722,"src":"1673:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":12756,"mutability":"mutable","name":"key","nameLocation":"1703:3:43","nodeType":"VariableDeclaration","scope":12790,"src":"1696:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12755,"name":"uint32","nodeType":"ElementaryTypeName","src":"1696:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"1672:35:43"},"returnParameters":{"id":12760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12759,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12790,"src":"1731:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12758,"name":"uint224","nodeType":"ElementaryTypeName","src":"1731:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"1730:9:43"},"scope":14290,"src":"1652:295:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":12831,"nodeType":"Block","src":"2202:209:43","statements":[{"assignments":[12802],"declarations":[{"constant":false,"id":12802,"mutability":"mutable","name":"len","nameLocation":"2220:3:43","nodeType":"VariableDeclaration","scope":12831,"src":"2212:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12801,"name":"uint256","nodeType":"ElementaryTypeName","src":"2212:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12806,"initialValue":{"expression":{"expression":{"id":12803,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12794,"src":"2226:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12804,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2231:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"2226:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":12805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2244:6:43","memberName":"length","nodeType":"MemberAccess","src":"2226:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2212:38:43"},{"assignments":[12808],"declarations":[{"constant":false,"id":12808,"mutability":"mutable","name":"pos","nameLocation":"2268:3:43","nodeType":"VariableDeclaration","scope":12831,"src":"2260:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12807,"name":"uint256","nodeType":"ElementaryTypeName","src":"2260:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12816,"initialValue":{"arguments":[{"expression":{"id":12810,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12794,"src":"2293:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12811,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2298:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"2293:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12812,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12796,"src":"2312:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":12813,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2317:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":12814,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12802,"src":"2320:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12809,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":13174,"src":"2274:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint32_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint32,uint256,uint256) view returns (uint256)"}},"id":12815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2274:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2260:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12817,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12808,"src":"2341:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2348:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2341:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":12822,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12794,"src":"2370:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12823,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2375:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"2370:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12824,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12808,"src":"2389:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":12825,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2395:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2389:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12821,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"2356:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2356:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12828,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2398:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"2356:48:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":12829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2341:63:43","trueExpression":{"hexValue":"30","id":12820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2352:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":12800,"id":12830,"nodeType":"Return","src":"2334:70:43"}]},"documentation":{"id":12791,"nodeType":"StructuredDocumentation","src":"1953:156:43","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none."},"id":12832,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookup","nameLocation":"2123:11:43","nodeType":"FunctionDefinition","parameters":{"id":12797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12794,"mutability":"mutable","name":"self","nameLocation":"2152:4:43","nodeType":"VariableDeclaration","scope":12832,"src":"2135:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12793,"nodeType":"UserDefinedTypeName","pathNode":{"id":12792,"name":"Trace224","nameLocations":["2135:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"2135:8:43"},"referencedDeclaration":12722,"src":"2135:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":12796,"mutability":"mutable","name":"key","nameLocation":"2165:3:43","nodeType":"VariableDeclaration","scope":12832,"src":"2158:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12795,"name":"uint32","nodeType":"ElementaryTypeName","src":"2158:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2134:35:43"},"returnParameters":{"id":12800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12799,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12832,"src":"2193:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12798,"name":"uint224","nodeType":"ElementaryTypeName","src":"2193:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"2192:9:43"},"scope":14290,"src":"2114:297:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":12916,"nodeType":"Block","src":"2810:512:43","statements":[{"assignments":[12844],"declarations":[{"constant":false,"id":12844,"mutability":"mutable","name":"len","nameLocation":"2828:3:43","nodeType":"VariableDeclaration","scope":12916,"src":"2820:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12843,"name":"uint256","nodeType":"ElementaryTypeName","src":"2820:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12848,"initialValue":{"expression":{"expression":{"id":12845,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12836,"src":"2834:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12846,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2839:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"2834:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":12847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2852:6:43","memberName":"length","nodeType":"MemberAccess","src":"2834:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2820:38:43"},{"assignments":[12850],"declarations":[{"constant":false,"id":12850,"mutability":"mutable","name":"low","nameLocation":"2877:3:43","nodeType":"VariableDeclaration","scope":12916,"src":"2869:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12849,"name":"uint256","nodeType":"ElementaryTypeName","src":"2869:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12852,"initialValue":{"hexValue":"30","id":12851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2883:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"2869:15:43"},{"assignments":[12854],"declarations":[{"constant":false,"id":12854,"mutability":"mutable","name":"high","nameLocation":"2902:4:43","nodeType":"VariableDeclaration","scope":12916,"src":"2894:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12853,"name":"uint256","nodeType":"ElementaryTypeName","src":"2894:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12856,"initialValue":{"id":12855,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12844,"src":"2909:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2894:18:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12857,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12844,"src":"2927:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":12858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2933:1:43","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"2927:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12891,"nodeType":"IfStatement","src":"2923:234:43","trueBody":{"id":12890,"nodeType":"Block","src":"2936:221:43","statements":[{"assignments":[12861],"declarations":[{"constant":false,"id":12861,"mutability":"mutable","name":"mid","nameLocation":"2958:3:43","nodeType":"VariableDeclaration","scope":12890,"src":"2950:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12860,"name":"uint256","nodeType":"ElementaryTypeName","src":"2950:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12868,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12862,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12844,"src":"2964:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":12865,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12844,"src":"2980:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":12863,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"2970:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":12864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2975:4:43","memberName":"sqrt","nodeType":"MemberAccess","referencedDeclaration":10179,"src":"2970:9:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":12866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2970:14:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2964:20:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2950:34:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":12876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12869,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12838,"src":"3002:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"expression":{"id":12871,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12836,"src":"3022:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12872,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3027:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3022:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12873,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12861,"src":"3041:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12870,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"3008:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3008:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12875,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3046:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":12724,"src":"3008:42:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"3002:48:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12888,"nodeType":"Block","src":"3101:46:43","statements":[{"expression":{"id":12886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12882,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12850,"src":"3119:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12883,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12861,"src":"3125:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":12884,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3131:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3125:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3119:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12887,"nodeType":"ExpressionStatement","src":"3119:13:43"}]},"id":12889,"nodeType":"IfStatement","src":"2998:149:43","trueBody":{"id":12881,"nodeType":"Block","src":"3052:43:43","statements":[{"expression":{"id":12879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12877,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"3070:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":12878,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12861,"src":"3077:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3070:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12880,"nodeType":"ExpressionStatement","src":"3070:10:43"}]}}]}},{"assignments":[12893],"declarations":[{"constant":false,"id":12893,"mutability":"mutable","name":"pos","nameLocation":"3175:3:43","nodeType":"VariableDeclaration","scope":12916,"src":"3167:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12892,"name":"uint256","nodeType":"ElementaryTypeName","src":"3167:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12901,"initialValue":{"arguments":[{"expression":{"id":12895,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12836,"src":"3200:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12896,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3205:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3200:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":12897,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12838,"src":"3219:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":12898,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12850,"src":"3224:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12899,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"3229:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12894,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":13174,"src":"3181:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint32_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint32,uint256,uint256) view returns (uint256)"}},"id":12900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3181:53:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3167:67:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12902,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12893,"src":"3252:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3259:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3252:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":12907,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12836,"src":"3281:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12908,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3286:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3281:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12909,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12893,"src":"3300:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":12910,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3306:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3300:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12906,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"3267:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3267:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12913,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3309:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"3267:48:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":12914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3252:63:43","trueExpression":{"hexValue":"30","id":12905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3263:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":12842,"id":12915,"nodeType":"Return","src":"3245:70:43"}]},"documentation":{"id":12833,"nodeType":"StructuredDocumentation","src":"2417:294:43","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none.\n NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n keys)."},"id":12917,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookupRecent","nameLocation":"2725:17:43","nodeType":"FunctionDefinition","parameters":{"id":12839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12836,"mutability":"mutable","name":"self","nameLocation":"2760:4:43","nodeType":"VariableDeclaration","scope":12917,"src":"2743:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12835,"nodeType":"UserDefinedTypeName","pathNode":{"id":12834,"name":"Trace224","nameLocations":["2743:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"2743:8:43"},"referencedDeclaration":12722,"src":"2743:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":12838,"mutability":"mutable","name":"key","nameLocation":"2773:3:43","nodeType":"VariableDeclaration","scope":12917,"src":"2766:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12837,"name":"uint32","nodeType":"ElementaryTypeName","src":"2766:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2742:35:43"},"returnParameters":{"id":12842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12841,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12917,"src":"2801:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12840,"name":"uint224","nodeType":"ElementaryTypeName","src":"2801:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"2800:9:43"},"scope":14290,"src":"2716:606:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":12946,"nodeType":"Block","src":"3513:135:43","statements":[{"assignments":[12927],"declarations":[{"constant":false,"id":12927,"mutability":"mutable","name":"pos","nameLocation":"3531:3:43","nodeType":"VariableDeclaration","scope":12946,"src":"3523:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12926,"name":"uint256","nodeType":"ElementaryTypeName","src":"3523:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12931,"initialValue":{"expression":{"expression":{"id":12928,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12921,"src":"3537:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12929,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3542:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3537:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":12930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3555:6:43","memberName":"length","nodeType":"MemberAccess","src":"3537:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3523:38:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12932,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12927,"src":"3578:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3585:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3578:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":12937,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12921,"src":"3607:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12938,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3612:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3607:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12939,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12927,"src":"3626:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":12940,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3632:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3626:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12936,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"3593:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3593:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12943,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3635:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"3593:48:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":12944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3578:63:43","trueExpression":{"hexValue":"30","id":12935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3589:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":12925,"id":12945,"nodeType":"Return","src":"3571:70:43"}]},"documentation":{"id":12918,"nodeType":"StructuredDocumentation","src":"3328:109:43","text":" @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints."},"id":12947,"implemented":true,"kind":"function","modifiers":[],"name":"latest","nameLocation":"3451:6:43","nodeType":"FunctionDefinition","parameters":{"id":12922,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12921,"mutability":"mutable","name":"self","nameLocation":"3475:4:43","nodeType":"VariableDeclaration","scope":12947,"src":"3458:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12920,"nodeType":"UserDefinedTypeName","pathNode":{"id":12919,"name":"Trace224","nameLocations":["3458:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"3458:8:43"},"referencedDeclaration":12722,"src":"3458:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"}],"src":"3457:23:43"},"returnParameters":{"id":12925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12924,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12947,"src":"3504:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12923,"name":"uint224","nodeType":"ElementaryTypeName","src":"3504:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3503:9:43"},"scope":14290,"src":"3442:206:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":12995,"nodeType":"Block","src":"3941:275:43","statements":[{"assignments":[12961],"declarations":[{"constant":false,"id":12961,"mutability":"mutable","name":"pos","nameLocation":"3959:3:43","nodeType":"VariableDeclaration","scope":12995,"src":"3951:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12960,"name":"uint256","nodeType":"ElementaryTypeName","src":"3951:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12965,"initialValue":{"expression":{"expression":{"id":12962,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12951,"src":"3965:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12963,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3970:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"3965:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":12964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3983:6:43","memberName":"length","nodeType":"MemberAccess","src":"3965:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3951:38:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12966,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12961,"src":"4003:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4010:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4003:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12993,"nodeType":"Block","src":"4064:146:43","statements":[{"assignments":[12977],"declarations":[{"constant":false,"id":12977,"mutability":"mutable","name":"ckpt","nameLocation":"4100:4:43","nodeType":"VariableDeclaration","scope":12993,"src":"4078:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":12976,"nodeType":"UserDefinedTypeName","pathNode":{"id":12975,"name":"Checkpoint224","nameLocations":["4078:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"4078:13:43"},"referencedDeclaration":12727,"src":"4078:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"id":12985,"initialValue":{"arguments":[{"expression":{"id":12979,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12951,"src":"4121:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":12980,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4126:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"4121:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12981,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12961,"src":"4140:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":12982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4146:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4140:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12978,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"4107:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":12984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4107:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4078:70:43"},{"expression":{"components":[{"hexValue":"74727565","id":12986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4170:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":12987,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12977,"src":"4176:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12988,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4181:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":12724,"src":"4176:9:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":12989,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12977,"src":"4187:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":12990,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4192:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"4187:11:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"id":12991,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4169:30:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$_t_uint224_$","typeString":"tuple(bool,uint32,uint224)"}},"functionReturnParameters":12959,"id":12992,"nodeType":"Return","src":"4162:37:43"}]},"id":12994,"nodeType":"IfStatement","src":"3999:211:43","trueBody":{"id":12974,"nodeType":"Block","src":"4013:45:43","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":12969,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4035:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":12970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4042:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":12971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4045:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":12972,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"4034:13:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0,int_const 0)"}},"functionReturnParameters":12959,"id":12973,"nodeType":"Return","src":"4027:20:43"}]}}]},"documentation":{"id":12948,"nodeType":"StructuredDocumentation","src":"3654:168:43","text":" @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n in the most recent checkpoint."},"id":12996,"implemented":true,"kind":"function","modifiers":[],"name":"latestCheckpoint","nameLocation":"3836:16:43","nodeType":"FunctionDefinition","parameters":{"id":12952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12951,"mutability":"mutable","name":"self","nameLocation":"3870:4:43","nodeType":"VariableDeclaration","scope":12996,"src":"3853:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12950,"nodeType":"UserDefinedTypeName","pathNode":{"id":12949,"name":"Trace224","nameLocations":["3853:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"3853:8:43"},"referencedDeclaration":12722,"src":"3853:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"}],"src":"3852:23:43"},"returnParameters":{"id":12959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12954,"mutability":"mutable","name":"exists","nameLocation":"3904:6:43","nodeType":"VariableDeclaration","scope":12996,"src":"3899:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12953,"name":"bool","nodeType":"ElementaryTypeName","src":"3899:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12956,"mutability":"mutable","name":"_key","nameLocation":"3919:4:43","nodeType":"VariableDeclaration","scope":12996,"src":"3912:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12955,"name":"uint32","nodeType":"ElementaryTypeName","src":"3912:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":12958,"mutability":"mutable","name":"_value","nameLocation":"3933:6:43","nodeType":"VariableDeclaration","scope":12996,"src":"3925:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":12957,"name":"uint224","nodeType":"ElementaryTypeName","src":"3925:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3898:42:43"},"scope":14290,"src":"3827:389:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13009,"nodeType":"Block","src":"4355:48:43","statements":[{"expression":{"expression":{"expression":{"id":13005,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13000,"src":"4372:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13006,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4377:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"4372:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4390:6:43","memberName":"length","nodeType":"MemberAccess","src":"4372:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13004,"id":13008,"nodeType":"Return","src":"4365:31:43"}]},"documentation":{"id":12997,"nodeType":"StructuredDocumentation","src":"4222:57:43","text":" @dev Returns the number of checkpoint."},"id":13010,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"4293:6:43","nodeType":"FunctionDefinition","parameters":{"id":13001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13000,"mutability":"mutable","name":"self","nameLocation":"4317:4:43","nodeType":"VariableDeclaration","scope":13010,"src":"4300:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":12999,"nodeType":"UserDefinedTypeName","pathNode":{"id":12998,"name":"Trace224","nameLocations":["4300:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"4300:8:43"},"referencedDeclaration":12722,"src":"4300:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"}],"src":"4299:23:43"},"returnParameters":{"id":13004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13003,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13010,"src":"4346:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13002,"name":"uint256","nodeType":"ElementaryTypeName","src":"4346:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4345:9:43"},"scope":14290,"src":"4284:119:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13027,"nodeType":"Block","src":"4567:46:43","statements":[{"expression":{"baseExpression":{"expression":{"id":13022,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13014,"src":"4584:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13023,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4589:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":12721,"src":"4584:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13025,"indexExpression":{"id":13024,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13016,"src":"4602:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4584:22:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref"}},"functionReturnParameters":13021,"id":13026,"nodeType":"Return","src":"4577:29:43"}]},"documentation":{"id":13011,"nodeType":"StructuredDocumentation","src":"4409:61:43","text":" @dev Returns checkpoint at given position."},"id":13028,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"4484:2:43","nodeType":"FunctionDefinition","parameters":{"id":13017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13014,"mutability":"mutable","name":"self","nameLocation":"4504:4:43","nodeType":"VariableDeclaration","scope":13028,"src":"4487:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":13013,"nodeType":"UserDefinedTypeName","pathNode":{"id":13012,"name":"Trace224","nameLocations":["4487:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":12722,"src":"4487:8:43"},"referencedDeclaration":12722,"src":"4487:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$12722_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":13016,"mutability":"mutable","name":"pos","nameLocation":"4517:3:43","nodeType":"VariableDeclaration","scope":13028,"src":"4510:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13015,"name":"uint32","nodeType":"ElementaryTypeName","src":"4510:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4486:35:43"},"returnParameters":{"id":13021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13020,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13028,"src":"4545:20:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_memory_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":13019,"nodeType":"UserDefinedTypeName","pathNode":{"id":13018,"name":"Checkpoint224","nameLocations":["4545:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"4545:13:43"},"referencedDeclaration":12727,"src":"4545:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"src":"4544:22:43"},"scope":14290,"src":"4475:138:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13121,"nodeType":"Block","src":"4946:765:43","statements":[{"assignments":[13045],"declarations":[{"constant":false,"id":13045,"mutability":"mutable","name":"pos","nameLocation":"4964:3:43","nodeType":"VariableDeclaration","scope":13121,"src":"4956:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13044,"name":"uint256","nodeType":"ElementaryTypeName","src":"4956:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13048,"initialValue":{"expression":{"id":13046,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13033,"src":"4970:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},"id":13047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4975:6:43","memberName":"length","nodeType":"MemberAccess","src":"4970:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4956:25:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13049,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13045,"src":"4996:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":13050,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5002:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4996:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13119,"nodeType":"Block","src":"5597:108:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":13110,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13035,"src":"5642:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":13111,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"5655:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint224","typeString":"uint224"}],"id":13109,"name":"Checkpoint224","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12727,"src":"5621:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["5636:4:43","5647:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"5621:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint224_$12727_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}],"expression":{"id":13106,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13033,"src":"5611:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},"id":13108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5616:4:43","memberName":"push","nodeType":"MemberAccess","src":"5611:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint224_$12727_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,struct Checkpoints.Checkpoint224 storage ref)"}},"id":13113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5611:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13114,"nodeType":"ExpressionStatement","src":"5611:52:43"},{"expression":{"components":[{"hexValue":"30","id":13115,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5685:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13116,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"5688:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"id":13117,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5684:10:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_uint224_$","typeString":"tuple(int_const 0,uint224)"}},"functionReturnParameters":13043,"id":13118,"nodeType":"Return","src":"5677:17:43"}]},"id":13120,"nodeType":"IfStatement","src":"4992:713:43","trueBody":{"id":13105,"nodeType":"Block","src":"5005:586:43","statements":[{"assignments":[13054],"declarations":[{"constant":false,"id":13054,"mutability":"mutable","name":"last","nameLocation":"5041:4:43","nodeType":"VariableDeclaration","scope":13105,"src":"5019:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":13053,"nodeType":"UserDefinedTypeName","pathNode":{"id":13052,"name":"Checkpoint224","nameLocations":["5019:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"5019:13:43"},"referencedDeclaration":12727,"src":"5019:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"id":13061,"initialValue":{"arguments":[{"id":13056,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13033,"src":"5062:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13057,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13045,"src":"5068:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5074:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"5068:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13055,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"5048:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5048:28:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"5019:57:43"},{"assignments":[13063],"declarations":[{"constant":false,"id":13063,"mutability":"mutable","name":"lastKey","nameLocation":"5097:7:43","nodeType":"VariableDeclaration","scope":13105,"src":"5090:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13062,"name":"uint32","nodeType":"ElementaryTypeName","src":"5090:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":13066,"initialValue":{"expression":{"id":13064,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13054,"src":"5107:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13065,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5112:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":12724,"src":"5107:9:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"5090:26:43"},{"assignments":[13068],"declarations":[{"constant":false,"id":13068,"mutability":"mutable","name":"lastValue","nameLocation":"5138:9:43","nodeType":"VariableDeclaration","scope":13105,"src":"5130:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13067,"name":"uint224","nodeType":"ElementaryTypeName","src":"5130:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"id":13071,"initialValue":{"expression":{"id":13069,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13054,"src":"5150:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13070,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5155:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"5150:11:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"nodeType":"VariableDeclarationStatement","src":"5130:31:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13072,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13063,"src":"5235:7:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13073,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13035,"src":"5245:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"5235:13:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13079,"nodeType":"IfStatement","src":"5231:89:43","trueBody":{"id":13078,"nodeType":"Block","src":"5250:70:43","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13075,"name":"CheckpointUnorderedInsertion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12717,"src":"5275:28:43","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":13076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5275:30:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13077,"nodeType":"RevertStatement","src":"5268:37:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13080,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13063,"src":"5383:7:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13081,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13035,"src":"5394:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"5383:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13099,"nodeType":"Block","src":"5457:85:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":13094,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13035,"src":"5506:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":13095,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"5519:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint224","typeString":"uint224"}],"id":13093,"name":"Checkpoint224","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12727,"src":"5485:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["5500:4:43","5511:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"5485:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint224_$12727_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}],"expression":{"id":13090,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13033,"src":"5475:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},"id":13092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5480:4:43","memberName":"push","nodeType":"MemberAccess","src":"5475:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint224_$12727_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,struct Checkpoints.Checkpoint224 storage ref)"}},"id":13097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5475:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13098,"nodeType":"ExpressionStatement","src":"5475:52:43"}]},"id":13100,"nodeType":"IfStatement","src":"5379:163:43","trueBody":{"id":13089,"nodeType":"Block","src":"5399:52:43","statements":[{"expression":{"id":13087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":13083,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13054,"src":"5417:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13085,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5422:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":12726,"src":"5417:11:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13086,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"5431:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"5417:19:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":13088,"nodeType":"ExpressionStatement","src":"5417:19:43"}]}},{"expression":{"components":[{"id":13101,"name":"lastValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13068,"src":"5563:9:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},{"id":13102,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"5574:5:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"id":13103,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5562:18:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint224_$_t_uint224_$","typeString":"tuple(uint224,uint224)"}},"functionReturnParameters":13043,"id":13104,"nodeType":"Return","src":"5555:25:43"}]}}]},"documentation":{"id":13029,"nodeType":"StructuredDocumentation","src":"4619:165:43","text":" @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n or by updating the last one."},"id":13122,"implemented":true,"kind":"function","modifiers":[],"name":"_insert","nameLocation":"4798:7:43","nodeType":"FunctionDefinition","parameters":{"id":13038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13033,"mutability":"mutable","name":"self","nameLocation":"4839:4:43","nodeType":"VariableDeclaration","scope":13122,"src":"4815:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13031,"nodeType":"UserDefinedTypeName","pathNode":{"id":13030,"name":"Checkpoint224","nameLocations":["4815:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"4815:13:43"},"referencedDeclaration":12727,"src":"4815:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13032,"nodeType":"ArrayTypeName","src":"4815:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13035,"mutability":"mutable","name":"key","nameLocation":"4860:3:43","nodeType":"VariableDeclaration","scope":13122,"src":"4853:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13034,"name":"uint32","nodeType":"ElementaryTypeName","src":"4853:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13037,"mutability":"mutable","name":"value","nameLocation":"4881:5:43","nodeType":"VariableDeclaration","scope":13122,"src":"4873:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13036,"name":"uint224","nodeType":"ElementaryTypeName","src":"4873:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"4805:87:43"},"returnParameters":{"id":13043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13040,"mutability":"mutable","name":"oldValue","nameLocation":"4918:8:43","nodeType":"VariableDeclaration","scope":13122,"src":"4910:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13039,"name":"uint224","nodeType":"ElementaryTypeName","src":"4910:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"},{"constant":false,"id":13042,"mutability":"mutable","name":"newValue","nameLocation":"4936:8:43","nodeType":"VariableDeclaration","scope":13122,"src":"4928:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13041,"name":"uint224","nodeType":"ElementaryTypeName","src":"4928:7:43","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"4909:36:43"},"scope":14290,"src":"4789:922:43","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":13173,"nodeType":"Block","src":"6227:267:43","statements":[{"body":{"id":13169,"nodeType":"Block","src":"6256:211:43","statements":[{"assignments":[13142],"declarations":[{"constant":false,"id":13142,"mutability":"mutable","name":"mid","nameLocation":"6278:3:43","nodeType":"VariableDeclaration","scope":13169,"src":"6270:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13141,"name":"uint256","nodeType":"ElementaryTypeName","src":"6270:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13148,"initialValue":{"arguments":[{"id":13145,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13131,"src":"6297:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13146,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"6302:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13143,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"6284:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6289:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"6284:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6284:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6270:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13150,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13127,"src":"6339:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},{"id":13151,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13142,"src":"6345:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13149,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"6325:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13152,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6325:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13153,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6350:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":12724,"src":"6325:29:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13154,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13129,"src":"6357:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"6325:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13167,"nodeType":"Block","src":"6411:46:43","statements":[{"expression":{"id":13165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13161,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13131,"src":"6429:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13162,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13142,"src":"6435:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6441:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6435:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6429:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13166,"nodeType":"ExpressionStatement","src":"6429:13:43"}]},"id":13168,"nodeType":"IfStatement","src":"6321:136:43","trueBody":{"id":13160,"nodeType":"Block","src":"6362:43:43","statements":[{"expression":{"id":13158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13156,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"6380:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13157,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13142,"src":"6387:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6380:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13159,"nodeType":"ExpressionStatement","src":"6380:10:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13138,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13131,"src":"6244:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13139,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"6250:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6244:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13170,"nodeType":"WhileStatement","src":"6237:230:43"},{"expression":{"id":13171,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"6483:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13137,"id":13172,"nodeType":"Return","src":"6476:11:43"}]},"documentation":{"id":13123,"nodeType":"StructuredDocumentation","src":"5717:339:43","text":" @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":13174,"implemented":true,"kind":"function","modifiers":[],"name":"_upperBinaryLookup","nameLocation":"6070:18:43","nodeType":"FunctionDefinition","parameters":{"id":13134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13127,"mutability":"mutable","name":"self","nameLocation":"6122:4:43","nodeType":"VariableDeclaration","scope":13174,"src":"6098:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13125,"nodeType":"UserDefinedTypeName","pathNode":{"id":13124,"name":"Checkpoint224","nameLocations":["6098:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"6098:13:43"},"referencedDeclaration":12727,"src":"6098:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13126,"nodeType":"ArrayTypeName","src":"6098:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13129,"mutability":"mutable","name":"key","nameLocation":"6143:3:43","nodeType":"VariableDeclaration","scope":13174,"src":"6136:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13128,"name":"uint32","nodeType":"ElementaryTypeName","src":"6136:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13131,"mutability":"mutable","name":"low","nameLocation":"6164:3:43","nodeType":"VariableDeclaration","scope":13174,"src":"6156:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13130,"name":"uint256","nodeType":"ElementaryTypeName","src":"6156:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13133,"mutability":"mutable","name":"high","nameLocation":"6185:4:43","nodeType":"VariableDeclaration","scope":13174,"src":"6177:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13132,"name":"uint256","nodeType":"ElementaryTypeName","src":"6177:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6088:107:43"},"returnParameters":{"id":13137,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13136,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13174,"src":"6218:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13135,"name":"uint256","nodeType":"ElementaryTypeName","src":"6218:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6217:9:43"},"scope":14290,"src":"6061:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13225,"nodeType":"Block","src":"7011:267:43","statements":[{"body":{"id":13221,"nodeType":"Block","src":"7040:211:43","statements":[{"assignments":[13194],"declarations":[{"constant":false,"id":13194,"mutability":"mutable","name":"mid","nameLocation":"7062:3:43","nodeType":"VariableDeclaration","scope":13221,"src":"7054:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13193,"name":"uint256","nodeType":"ElementaryTypeName","src":"7054:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13200,"initialValue":{"arguments":[{"id":13197,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13183,"src":"7081:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13198,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13185,"src":"7086:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13195,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"7068:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7073:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"7068:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7068:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7054:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13202,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13179,"src":"7123:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},{"id":13203,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13194,"src":"7129:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13201,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13241,"src":"7109:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$12727_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7109:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13205,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7134:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":12724,"src":"7109:29:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13206,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13181,"src":"7141:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"7109:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13219,"nodeType":"Block","src":"7198:43:43","statements":[{"expression":{"id":13217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13215,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13185,"src":"7216:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13216,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13194,"src":"7223:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7216:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13218,"nodeType":"ExpressionStatement","src":"7216:10:43"}]},"id":13220,"nodeType":"IfStatement","src":"7105:136:43","trueBody":{"id":13214,"nodeType":"Block","src":"7146:46:43","statements":[{"expression":{"id":13212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13208,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13183,"src":"7164:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13209,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13194,"src":"7170:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7176:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7170:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7164:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13213,"nodeType":"ExpressionStatement","src":"7164:13:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13190,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13183,"src":"7028:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13191,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13185,"src":"7034:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7028:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13222,"nodeType":"WhileStatement","src":"7021:230:43"},{"expression":{"id":13223,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13185,"src":"7267:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13189,"id":13224,"nodeType":"Return","src":"7260:11:43"}]},"documentation":{"id":13175,"nodeType":"StructuredDocumentation","src":"6500:340:43","text":" @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":13226,"implemented":true,"kind":"function","modifiers":[],"name":"_lowerBinaryLookup","nameLocation":"6854:18:43","nodeType":"FunctionDefinition","parameters":{"id":13186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13179,"mutability":"mutable","name":"self","nameLocation":"6906:4:43","nodeType":"VariableDeclaration","scope":13226,"src":"6882:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13177,"nodeType":"UserDefinedTypeName","pathNode":{"id":13176,"name":"Checkpoint224","nameLocations":["6882:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"6882:13:43"},"referencedDeclaration":12727,"src":"6882:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13178,"nodeType":"ArrayTypeName","src":"6882:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13181,"mutability":"mutable","name":"key","nameLocation":"6927:3:43","nodeType":"VariableDeclaration","scope":13226,"src":"6920:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13180,"name":"uint32","nodeType":"ElementaryTypeName","src":"6920:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13183,"mutability":"mutable","name":"low","nameLocation":"6948:3:43","nodeType":"VariableDeclaration","scope":13226,"src":"6940:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13182,"name":"uint256","nodeType":"ElementaryTypeName","src":"6940:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13185,"mutability":"mutable","name":"high","nameLocation":"6969:4:43","nodeType":"VariableDeclaration","scope":13226,"src":"6961:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13184,"name":"uint256","nodeType":"ElementaryTypeName","src":"6961:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6872:107:43"},"returnParameters":{"id":13189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13188,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13226,"src":"7002:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13187,"name":"uint256","nodeType":"ElementaryTypeName","src":"7002:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7001:9:43"},"scope":14290,"src":"6845:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13240,"nodeType":"Block","src":"7561:125:43","statements":[{"AST":{"nodeType":"YulBlock","src":"7580:100:43","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7601:1:43","type":"","value":"0"},{"name":"self.slot","nodeType":"YulIdentifier","src":"7604:9:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7594:6:43"},"nodeType":"YulFunctionCall","src":"7594:20:43"},"nodeType":"YulExpressionStatement","src":"7594:20:43"},{"nodeType":"YulAssignment","src":"7627:43:43","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7656:1:43","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7659:4:43","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"7646:9:43"},"nodeType":"YulFunctionCall","src":"7646:18:43"},{"name":"pos","nodeType":"YulIdentifier","src":"7666:3:43"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7642:3:43"},"nodeType":"YulFunctionCall","src":"7642:28:43"},"variableNames":[{"name":"result.slot","nodeType":"YulIdentifier","src":"7627:11:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":13233,"isOffset":false,"isSlot":false,"src":"7666:3:43","valueSize":1},{"declaration":13237,"isOffset":false,"isSlot":true,"src":"7627:11:43","suffix":"slot","valueSize":1},{"declaration":13231,"isOffset":false,"isSlot":true,"src":"7604:9:43","suffix":"slot","valueSize":1}],"id":13239,"nodeType":"InlineAssembly","src":"7571:109:43"}]},"documentation":{"id":13227,"nodeType":"StructuredDocumentation","src":"7284:132:43","text":" @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds."},"id":13241,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeAccess","nameLocation":"7430:13:43","nodeType":"FunctionDefinition","parameters":{"id":13234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13231,"mutability":"mutable","name":"self","nameLocation":"7477:4:43","nodeType":"VariableDeclaration","scope":13241,"src":"7453:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13229,"nodeType":"UserDefinedTypeName","pathNode":{"id":13228,"name":"Checkpoint224","nameLocations":["7453:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"7453:13:43"},"referencedDeclaration":12727,"src":"7453:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13230,"nodeType":"ArrayTypeName","src":"7453:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$12727_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13233,"mutability":"mutable","name":"pos","nameLocation":"7499:3:43","nodeType":"VariableDeclaration","scope":13241,"src":"7491:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13232,"name":"uint256","nodeType":"ElementaryTypeName","src":"7491:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7443:65:43"},"returnParameters":{"id":13238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13237,"mutability":"mutable","name":"result","nameLocation":"7553:6:43","nodeType":"VariableDeclaration","scope":13241,"src":"7531:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":13236,"nodeType":"UserDefinedTypeName","pathNode":{"id":13235,"name":"Checkpoint224","nameLocations":["7531:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":12727,"src":"7531:13:43"},"referencedDeclaration":12727,"src":"7531:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$12727_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"src":"7530:30:43"},"scope":14290,"src":"7421:265:43","stateMutability":"pure","virtual":false,"visibility":"private"},{"canonicalName":"Checkpoints.Trace208","id":13246,"members":[{"constant":false,"id":13245,"mutability":"mutable","name":"_checkpoints","nameLocation":"7734:12:43","nodeType":"VariableDeclaration","scope":13246,"src":"7718:28:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13243,"nodeType":"UserDefinedTypeName","pathNode":{"id":13242,"name":"Checkpoint208","nameLocations":["7718:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"7718:13:43"},"referencedDeclaration":13251,"src":"7718:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13244,"nodeType":"ArrayTypeName","src":"7718:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"}],"name":"Trace208","nameLocation":"7699:8:43","nodeType":"StructDefinition","scope":14290,"src":"7692:61:43","visibility":"public"},{"canonicalName":"Checkpoints.Checkpoint208","id":13251,"members":[{"constant":false,"id":13248,"mutability":"mutable","name":"_key","nameLocation":"7797:4:43","nodeType":"VariableDeclaration","scope":13251,"src":"7790:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13247,"name":"uint48","nodeType":"ElementaryTypeName","src":"7790:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13250,"mutability":"mutable","name":"_value","nameLocation":"7819:6:43","nodeType":"VariableDeclaration","scope":13251,"src":"7811:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13249,"name":"uint208","nodeType":"ElementaryTypeName","src":"7811:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"name":"Checkpoint208","nameLocation":"7766:13:43","nodeType":"StructDefinition","scope":14290,"src":"7759:73:43","visibility":"public"},{"body":{"id":13273,"nodeType":"Block","src":"8293:62:43","statements":[{"expression":{"arguments":[{"expression":{"id":13267,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13255,"src":"8318:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13268,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8323:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"8318:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13269,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13257,"src":"8337:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":13270,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13259,"src":"8342:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":13266,"name":"_insert","nodeType":"Identifier","overloadedDeclarations":[13122,13646,14170],"referencedDeclaration":13646,"src":"8310:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint48_$_t_uint208_$returns$_t_uint208_$_t_uint208_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint48,uint208) returns (uint208,uint208)"}},"id":13271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8310:38:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"functionReturnParameters":13265,"id":13272,"nodeType":"Return","src":"8303:45:43"}]},"documentation":{"id":13252,"nodeType":"StructuredDocumentation","src":"7838:302:43","text":" @dev Pushes a (`key`, `value`) pair into a Trace208 so that it is stored as the checkpoint.\n Returns previous value and new value.\n IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint48).max` key set will disable the\n library."},"id":13274,"implemented":true,"kind":"function","modifiers":[],"name":"push","nameLocation":"8154:4:43","nodeType":"FunctionDefinition","parameters":{"id":13260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13255,"mutability":"mutable","name":"self","nameLocation":"8185:4:43","nodeType":"VariableDeclaration","scope":13274,"src":"8168:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13254,"nodeType":"UserDefinedTypeName","pathNode":{"id":13253,"name":"Trace208","nameLocations":["8168:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"8168:8:43"},"referencedDeclaration":13246,"src":"8168:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13257,"mutability":"mutable","name":"key","nameLocation":"8206:3:43","nodeType":"VariableDeclaration","scope":13274,"src":"8199:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13256,"name":"uint48","nodeType":"ElementaryTypeName","src":"8199:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13259,"mutability":"mutable","name":"value","nameLocation":"8227:5:43","nodeType":"VariableDeclaration","scope":13274,"src":"8219:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13258,"name":"uint208","nodeType":"ElementaryTypeName","src":"8219:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"8158:80:43"},"returnParameters":{"id":13265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13262,"mutability":"mutable","name":"oldValue","nameLocation":"8265:8:43","nodeType":"VariableDeclaration","scope":13274,"src":"8257:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13261,"name":"uint208","nodeType":"ElementaryTypeName","src":"8257:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":13264,"mutability":"mutable","name":"newValue","nameLocation":"8283:8:43","nodeType":"VariableDeclaration","scope":13274,"src":"8275:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13263,"name":"uint208","nodeType":"ElementaryTypeName","src":"8275:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"8256:36:43"},"scope":14290,"src":"8145:210:43","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13313,"nodeType":"Block","src":"8608:207:43","statements":[{"assignments":[13286],"declarations":[{"constant":false,"id":13286,"mutability":"mutable","name":"len","nameLocation":"8626:3:43","nodeType":"VariableDeclaration","scope":13313,"src":"8618:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13285,"name":"uint256","nodeType":"ElementaryTypeName","src":"8618:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13290,"initialValue":{"expression":{"expression":{"id":13287,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13278,"src":"8632:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13288,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8637:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"8632:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8650:6:43","memberName":"length","nodeType":"MemberAccess","src":"8632:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8618:38:43"},{"assignments":[13292],"declarations":[{"constant":false,"id":13292,"mutability":"mutable","name":"pos","nameLocation":"8674:3:43","nodeType":"VariableDeclaration","scope":13313,"src":"8666:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13291,"name":"uint256","nodeType":"ElementaryTypeName","src":"8666:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13300,"initialValue":{"arguments":[{"expression":{"id":13294,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13278,"src":"8699:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13295,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8704:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"8699:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13296,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13280,"src":"8718:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"hexValue":"30","id":13297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8723:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13298,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13286,"src":"8726:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13293,"name":"_lowerBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13226,13750,14274],"referencedDeclaration":13750,"src":"8680:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint48_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint48,uint256,uint256) view returns (uint256)"}},"id":13299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8680:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8666:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13301,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13292,"src":"8747:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13302,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13286,"src":"8754:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8747:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13306,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13278,"src":"8778:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13307,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8783:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"8778:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13308,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13292,"src":"8797:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13305,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"8764:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8764:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13310,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8802:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"8764:44:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8747:61:43","trueExpression":{"hexValue":"30","id":13304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8760:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":13284,"id":13312,"nodeType":"Return","src":"8740:68:43"}]},"documentation":{"id":13275,"nodeType":"StructuredDocumentation","src":"8361:154:43","text":" @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n there is none."},"id":13314,"implemented":true,"kind":"function","modifiers":[],"name":"lowerLookup","nameLocation":"8529:11:43","nodeType":"FunctionDefinition","parameters":{"id":13281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13278,"mutability":"mutable","name":"self","nameLocation":"8558:4:43","nodeType":"VariableDeclaration","scope":13314,"src":"8541:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13277,"nodeType":"UserDefinedTypeName","pathNode":{"id":13276,"name":"Trace208","nameLocations":["8541:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"8541:8:43"},"referencedDeclaration":13246,"src":"8541:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13280,"mutability":"mutable","name":"key","nameLocation":"8571:3:43","nodeType":"VariableDeclaration","scope":13314,"src":"8564:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13279,"name":"uint48","nodeType":"ElementaryTypeName","src":"8564:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"8540:35:43"},"returnParameters":{"id":13284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13283,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13314,"src":"8599:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13282,"name":"uint208","nodeType":"ElementaryTypeName","src":"8599:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"8598:9:43"},"scope":14290,"src":"8520:295:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13355,"nodeType":"Block","src":"9070:209:43","statements":[{"assignments":[13326],"declarations":[{"constant":false,"id":13326,"mutability":"mutable","name":"len","nameLocation":"9088:3:43","nodeType":"VariableDeclaration","scope":13355,"src":"9080:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13325,"name":"uint256","nodeType":"ElementaryTypeName","src":"9080:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13330,"initialValue":{"expression":{"expression":{"id":13327,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13318,"src":"9094:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13328,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9099:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"9094:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9112:6:43","memberName":"length","nodeType":"MemberAccess","src":"9094:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9080:38:43"},{"assignments":[13332],"declarations":[{"constant":false,"id":13332,"mutability":"mutable","name":"pos","nameLocation":"9136:3:43","nodeType":"VariableDeclaration","scope":13355,"src":"9128:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13331,"name":"uint256","nodeType":"ElementaryTypeName","src":"9128:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13340,"initialValue":{"arguments":[{"expression":{"id":13334,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13318,"src":"9161:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13335,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9166:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"9161:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13336,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13320,"src":"9180:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"hexValue":"30","id":13337,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9185:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13338,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13326,"src":"9188:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13333,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":13698,"src":"9142:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint48_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint48,uint256,uint256) view returns (uint256)"}},"id":13339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9142:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9128:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13341,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13332,"src":"9209:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9216:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9209:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13346,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13318,"src":"9238:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13347,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9243:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"9238:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13348,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13332,"src":"9257:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9263:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9257:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13345,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"9224:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9224:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13352,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9266:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"9224:48:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9209:63:43","trueExpression":{"hexValue":"30","id":13344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9220:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":13324,"id":13354,"nodeType":"Return","src":"9202:70:43"}]},"documentation":{"id":13315,"nodeType":"StructuredDocumentation","src":"8821:156:43","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none."},"id":13356,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookup","nameLocation":"8991:11:43","nodeType":"FunctionDefinition","parameters":{"id":13321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13318,"mutability":"mutable","name":"self","nameLocation":"9020:4:43","nodeType":"VariableDeclaration","scope":13356,"src":"9003:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13317,"nodeType":"UserDefinedTypeName","pathNode":{"id":13316,"name":"Trace208","nameLocations":["9003:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"9003:8:43"},"referencedDeclaration":13246,"src":"9003:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13320,"mutability":"mutable","name":"key","nameLocation":"9033:3:43","nodeType":"VariableDeclaration","scope":13356,"src":"9026:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13319,"name":"uint48","nodeType":"ElementaryTypeName","src":"9026:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"9002:35:43"},"returnParameters":{"id":13324,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13323,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13356,"src":"9061:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13322,"name":"uint208","nodeType":"ElementaryTypeName","src":"9061:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9060:9:43"},"scope":14290,"src":"8982:297:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13440,"nodeType":"Block","src":"9678:512:43","statements":[{"assignments":[13368],"declarations":[{"constant":false,"id":13368,"mutability":"mutable","name":"len","nameLocation":"9696:3:43","nodeType":"VariableDeclaration","scope":13440,"src":"9688:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13367,"name":"uint256","nodeType":"ElementaryTypeName","src":"9688:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13372,"initialValue":{"expression":{"expression":{"id":13369,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13360,"src":"9702:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13370,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9707:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"9702:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9720:6:43","memberName":"length","nodeType":"MemberAccess","src":"9702:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9688:38:43"},{"assignments":[13374],"declarations":[{"constant":false,"id":13374,"mutability":"mutable","name":"low","nameLocation":"9745:3:43","nodeType":"VariableDeclaration","scope":13440,"src":"9737:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13373,"name":"uint256","nodeType":"ElementaryTypeName","src":"9737:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13376,"initialValue":{"hexValue":"30","id":13375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9751:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9737:15:43"},{"assignments":[13378],"declarations":[{"constant":false,"id":13378,"mutability":"mutable","name":"high","nameLocation":"9770:4:43","nodeType":"VariableDeclaration","scope":13440,"src":"9762:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13377,"name":"uint256","nodeType":"ElementaryTypeName","src":"9762:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13380,"initialValue":{"id":13379,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13368,"src":"9777:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9762:18:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13381,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13368,"src":"9795:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":13382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9801:1:43","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"9795:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13415,"nodeType":"IfStatement","src":"9791:234:43","trueBody":{"id":13414,"nodeType":"Block","src":"9804:221:43","statements":[{"assignments":[13385],"declarations":[{"constant":false,"id":13385,"mutability":"mutable","name":"mid","nameLocation":"9826:3:43","nodeType":"VariableDeclaration","scope":13414,"src":"9818:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13384,"name":"uint256","nodeType":"ElementaryTypeName","src":"9818:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13392,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13386,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13368,"src":"9832:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":13389,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13368,"src":"9848:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13387,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"9838:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9843:4:43","memberName":"sqrt","nodeType":"MemberAccess","referencedDeclaration":10179,"src":"9838:9:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":13390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9838:14:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9832:20:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9818:34:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":13400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13393,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13362,"src":"9870:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"expression":{"id":13395,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13360,"src":"9890:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13396,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9895:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"9890:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13397,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13385,"src":"9909:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13394,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"9876:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9876:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13399,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9914:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"9876:42:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"9870:48:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13412,"nodeType":"Block","src":"9969:46:43","statements":[{"expression":{"id":13410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13406,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13374,"src":"9987:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13407,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13385,"src":"9993:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9999:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9993:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9987:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13411,"nodeType":"ExpressionStatement","src":"9987:13:43"}]},"id":13413,"nodeType":"IfStatement","src":"9866:149:43","trueBody":{"id":13405,"nodeType":"Block","src":"9920:43:43","statements":[{"expression":{"id":13403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13401,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13378,"src":"9938:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13402,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13385,"src":"9945:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9938:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13404,"nodeType":"ExpressionStatement","src":"9938:10:43"}]}}]}},{"assignments":[13417],"declarations":[{"constant":false,"id":13417,"mutability":"mutable","name":"pos","nameLocation":"10043:3:43","nodeType":"VariableDeclaration","scope":13440,"src":"10035:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13416,"name":"uint256","nodeType":"ElementaryTypeName","src":"10035:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13425,"initialValue":{"arguments":[{"expression":{"id":13419,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13360,"src":"10068:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13420,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10073:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10068:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13421,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13362,"src":"10087:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":13422,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13374,"src":"10092:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13423,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13378,"src":"10097:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13418,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":13698,"src":"10049:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint48_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint48,uint256,uint256) view returns (uint256)"}},"id":13424,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10049:53:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10035:67:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13426,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13417,"src":"10120:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10127:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10120:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13431,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13360,"src":"10149:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13432,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10154:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10149:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13433,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13417,"src":"10168:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10174:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10168:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13430,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"10135:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10135:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13437,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10177:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"10135:48:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10120:63:43","trueExpression":{"hexValue":"30","id":13429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10131:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":13366,"id":13439,"nodeType":"Return","src":"10113:70:43"}]},"documentation":{"id":13357,"nodeType":"StructuredDocumentation","src":"9285:294:43","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none.\n NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n keys)."},"id":13441,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookupRecent","nameLocation":"9593:17:43","nodeType":"FunctionDefinition","parameters":{"id":13363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13360,"mutability":"mutable","name":"self","nameLocation":"9628:4:43","nodeType":"VariableDeclaration","scope":13441,"src":"9611:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13359,"nodeType":"UserDefinedTypeName","pathNode":{"id":13358,"name":"Trace208","nameLocations":["9611:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"9611:8:43"},"referencedDeclaration":13246,"src":"9611:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13362,"mutability":"mutable","name":"key","nameLocation":"9641:3:43","nodeType":"VariableDeclaration","scope":13441,"src":"9634:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13361,"name":"uint48","nodeType":"ElementaryTypeName","src":"9634:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"9610:35:43"},"returnParameters":{"id":13366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13365,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13441,"src":"9669:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13364,"name":"uint208","nodeType":"ElementaryTypeName","src":"9669:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9668:9:43"},"scope":14290,"src":"9584:606:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13470,"nodeType":"Block","src":"10381:135:43","statements":[{"assignments":[13451],"declarations":[{"constant":false,"id":13451,"mutability":"mutable","name":"pos","nameLocation":"10399:3:43","nodeType":"VariableDeclaration","scope":13470,"src":"10391:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13450,"name":"uint256","nodeType":"ElementaryTypeName","src":"10391:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13455,"initialValue":{"expression":{"expression":{"id":13452,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13445,"src":"10405:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13453,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10410:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10405:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10423:6:43","memberName":"length","nodeType":"MemberAccess","src":"10405:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10391:38:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13456,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13451,"src":"10446:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10453:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10446:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13461,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13445,"src":"10475:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13462,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10480:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10475:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13463,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13451,"src":"10494:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13464,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10500:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10494:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13460,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"10461:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10461:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13467,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10503:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"10461:48:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10446:63:43","trueExpression":{"hexValue":"30","id":13459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10457:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":13449,"id":13469,"nodeType":"Return","src":"10439:70:43"}]},"documentation":{"id":13442,"nodeType":"StructuredDocumentation","src":"10196:109:43","text":" @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints."},"id":13471,"implemented":true,"kind":"function","modifiers":[],"name":"latest","nameLocation":"10319:6:43","nodeType":"FunctionDefinition","parameters":{"id":13446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13445,"mutability":"mutable","name":"self","nameLocation":"10343:4:43","nodeType":"VariableDeclaration","scope":13471,"src":"10326:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13444,"nodeType":"UserDefinedTypeName","pathNode":{"id":13443,"name":"Trace208","nameLocations":["10326:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"10326:8:43"},"referencedDeclaration":13246,"src":"10326:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"}],"src":"10325:23:43"},"returnParameters":{"id":13449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13448,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13471,"src":"10372:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13447,"name":"uint208","nodeType":"ElementaryTypeName","src":"10372:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"10371:9:43"},"scope":14290,"src":"10310:206:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13519,"nodeType":"Block","src":"10809:275:43","statements":[{"assignments":[13485],"declarations":[{"constant":false,"id":13485,"mutability":"mutable","name":"pos","nameLocation":"10827:3:43","nodeType":"VariableDeclaration","scope":13519,"src":"10819:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13484,"name":"uint256","nodeType":"ElementaryTypeName","src":"10819:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13489,"initialValue":{"expression":{"expression":{"id":13486,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13475,"src":"10833:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13487,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10838:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10833:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10851:6:43","memberName":"length","nodeType":"MemberAccess","src":"10833:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10819:38:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13490,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13485,"src":"10871:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10878:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10871:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13517,"nodeType":"Block","src":"10932:146:43","statements":[{"assignments":[13501],"declarations":[{"constant":false,"id":13501,"mutability":"mutable","name":"ckpt","nameLocation":"10968:4:43","nodeType":"VariableDeclaration","scope":13517,"src":"10946:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":13500,"nodeType":"UserDefinedTypeName","pathNode":{"id":13499,"name":"Checkpoint208","nameLocations":["10946:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"10946:13:43"},"referencedDeclaration":13251,"src":"10946:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"id":13509,"initialValue":{"arguments":[{"expression":{"id":13503,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13475,"src":"10989:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13504,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10994:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"10989:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13505,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13485,"src":"11008:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11014:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11008:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13502,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"10975:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10975:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"10946:70:43"},{"expression":{"components":[{"hexValue":"74727565","id":13510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11038:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":13511,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13501,"src":"11044:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13512,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11049:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"11044:9:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"expression":{"id":13513,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13501,"src":"11055:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13514,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11060:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"11055:11:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"id":13515,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11037:30:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint48_$_t_uint208_$","typeString":"tuple(bool,uint48,uint208)"}},"functionReturnParameters":13483,"id":13516,"nodeType":"Return","src":"11030:37:43"}]},"id":13518,"nodeType":"IfStatement","src":"10867:211:43","trueBody":{"id":13498,"nodeType":"Block","src":"10881:45:43","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":13493,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10903:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":13494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10910:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":13495,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10913:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":13496,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10902:13:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0,int_const 0)"}},"functionReturnParameters":13483,"id":13497,"nodeType":"Return","src":"10895:20:43"}]}}]},"documentation":{"id":13472,"nodeType":"StructuredDocumentation","src":"10522:168:43","text":" @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n in the most recent checkpoint."},"id":13520,"implemented":true,"kind":"function","modifiers":[],"name":"latestCheckpoint","nameLocation":"10704:16:43","nodeType":"FunctionDefinition","parameters":{"id":13476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13475,"mutability":"mutable","name":"self","nameLocation":"10738:4:43","nodeType":"VariableDeclaration","scope":13520,"src":"10721:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13474,"nodeType":"UserDefinedTypeName","pathNode":{"id":13473,"name":"Trace208","nameLocations":["10721:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"10721:8:43"},"referencedDeclaration":13246,"src":"10721:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"}],"src":"10720:23:43"},"returnParameters":{"id":13483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13478,"mutability":"mutable","name":"exists","nameLocation":"10772:6:43","nodeType":"VariableDeclaration","scope":13520,"src":"10767:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13477,"name":"bool","nodeType":"ElementaryTypeName","src":"10767:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":13480,"mutability":"mutable","name":"_key","nameLocation":"10787:4:43","nodeType":"VariableDeclaration","scope":13520,"src":"10780:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13479,"name":"uint48","nodeType":"ElementaryTypeName","src":"10780:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13482,"mutability":"mutable","name":"_value","nameLocation":"10801:6:43","nodeType":"VariableDeclaration","scope":13520,"src":"10793:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13481,"name":"uint208","nodeType":"ElementaryTypeName","src":"10793:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"10766:42:43"},"scope":14290,"src":"10695:389:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13533,"nodeType":"Block","src":"11223:48:43","statements":[{"expression":{"expression":{"expression":{"id":13529,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13524,"src":"11240:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13530,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11245:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"11240:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11258:6:43","memberName":"length","nodeType":"MemberAccess","src":"11240:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13528,"id":13532,"nodeType":"Return","src":"11233:31:43"}]},"documentation":{"id":13521,"nodeType":"StructuredDocumentation","src":"11090:57:43","text":" @dev Returns the number of checkpoint."},"id":13534,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"11161:6:43","nodeType":"FunctionDefinition","parameters":{"id":13525,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13524,"mutability":"mutable","name":"self","nameLocation":"11185:4:43","nodeType":"VariableDeclaration","scope":13534,"src":"11168:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13523,"nodeType":"UserDefinedTypeName","pathNode":{"id":13522,"name":"Trace208","nameLocations":["11168:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"11168:8:43"},"referencedDeclaration":13246,"src":"11168:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"}],"src":"11167:23:43"},"returnParameters":{"id":13528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13527,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13534,"src":"11214:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13526,"name":"uint256","nodeType":"ElementaryTypeName","src":"11214:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11213:9:43"},"scope":14290,"src":"11152:119:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13551,"nodeType":"Block","src":"11435:46:43","statements":[{"expression":{"baseExpression":{"expression":{"id":13546,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13538,"src":"11452:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13547,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11457:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"11452:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13549,"indexExpression":{"id":13548,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13540,"src":"11470:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11452:22:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref"}},"functionReturnParameters":13545,"id":13550,"nodeType":"Return","src":"11445:29:43"}]},"documentation":{"id":13535,"nodeType":"StructuredDocumentation","src":"11277:61:43","text":" @dev Returns checkpoint at given position."},"id":13552,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"11352:2:43","nodeType":"FunctionDefinition","parameters":{"id":13541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13538,"mutability":"mutable","name":"self","nameLocation":"11372:4:43","nodeType":"VariableDeclaration","scope":13552,"src":"11355:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13537,"nodeType":"UserDefinedTypeName","pathNode":{"id":13536,"name":"Trace208","nameLocations":["11355:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"11355:8:43"},"referencedDeclaration":13246,"src":"11355:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13246_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13540,"mutability":"mutable","name":"pos","nameLocation":"11385:3:43","nodeType":"VariableDeclaration","scope":13552,"src":"11378:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13539,"name":"uint32","nodeType":"ElementaryTypeName","src":"11378:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11354:35:43"},"returnParameters":{"id":13545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13544,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13552,"src":"11413:20:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":13543,"nodeType":"UserDefinedTypeName","pathNode":{"id":13542,"name":"Checkpoint208","nameLocations":["11413:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"11413:13:43"},"referencedDeclaration":13251,"src":"11413:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"11412:22:43"},"scope":14290,"src":"11343:138:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13645,"nodeType":"Block","src":"11814:765:43","statements":[{"assignments":[13569],"declarations":[{"constant":false,"id":13569,"mutability":"mutable","name":"pos","nameLocation":"11832:3:43","nodeType":"VariableDeclaration","scope":13645,"src":"11824:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13568,"name":"uint256","nodeType":"ElementaryTypeName","src":"11824:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13572,"initialValue":{"expression":{"id":13570,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13557,"src":"11838:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},"id":13571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11843:6:43","memberName":"length","nodeType":"MemberAccess","src":"11838:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11824:25:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13573,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13569,"src":"11864:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":13574,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11870:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11864:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13643,"nodeType":"Block","src":"12465:108:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":13634,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13559,"src":"12510:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":13635,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13561,"src":"12523:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":13633,"name":"Checkpoint208","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13251,"src":"12489:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12504:4:43","12515:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"12489:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}],"expression":{"id":13630,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13557,"src":"12479:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},"id":13632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12484:4:43","memberName":"push","nodeType":"MemberAccess","src":"12479:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint208_$13251_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,struct Checkpoints.Checkpoint208 storage ref)"}},"id":13637,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12479:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13638,"nodeType":"ExpressionStatement","src":"12479:52:43"},{"expression":{"components":[{"hexValue":"30","id":13639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12553:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13640,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13561,"src":"12556:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"id":13641,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12552:10:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_uint208_$","typeString":"tuple(int_const 0,uint208)"}},"functionReturnParameters":13567,"id":13642,"nodeType":"Return","src":"12545:17:43"}]},"id":13644,"nodeType":"IfStatement","src":"11860:713:43","trueBody":{"id":13629,"nodeType":"Block","src":"11873:586:43","statements":[{"assignments":[13578],"declarations":[{"constant":false,"id":13578,"mutability":"mutable","name":"last","nameLocation":"11909:4:43","nodeType":"VariableDeclaration","scope":13629,"src":"11887:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":13577,"nodeType":"UserDefinedTypeName","pathNode":{"id":13576,"name":"Checkpoint208","nameLocations":["11887:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"11887:13:43"},"referencedDeclaration":13251,"src":"11887:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"id":13585,"initialValue":{"arguments":[{"id":13580,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13557,"src":"11930:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13581,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13569,"src":"11936:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13582,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11942:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11936:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13579,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"11916:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11916:28:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"11887:57:43"},{"assignments":[13587],"declarations":[{"constant":false,"id":13587,"mutability":"mutable","name":"lastKey","nameLocation":"11965:7:43","nodeType":"VariableDeclaration","scope":13629,"src":"11958:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13586,"name":"uint48","nodeType":"ElementaryTypeName","src":"11958:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":13590,"initialValue":{"expression":{"id":13588,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13578,"src":"11975:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13589,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11980:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"11975:9:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"11958:26:43"},{"assignments":[13592],"declarations":[{"constant":false,"id":13592,"mutability":"mutable","name":"lastValue","nameLocation":"12006:9:43","nodeType":"VariableDeclaration","scope":13629,"src":"11998:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13591,"name":"uint208","nodeType":"ElementaryTypeName","src":"11998:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"id":13595,"initialValue":{"expression":{"id":13593,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13578,"src":"12018:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13594,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12023:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"12018:11:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"VariableDeclarationStatement","src":"11998:31:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":13598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13596,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13587,"src":"12103:7:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13597,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13559,"src":"12113:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"12103:13:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13603,"nodeType":"IfStatement","src":"12099:89:43","trueBody":{"id":13602,"nodeType":"Block","src":"12118:70:43","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13599,"name":"CheckpointUnorderedInsertion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12717,"src":"12143:28:43","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":13600,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12143:30:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13601,"nodeType":"RevertStatement","src":"12136:37:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":13606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13604,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13587,"src":"12251:7:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13605,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13559,"src":"12262:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"12251:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13623,"nodeType":"Block","src":"12325:85:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":13618,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13559,"src":"12374:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":13619,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13561,"src":"12387:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":13617,"name":"Checkpoint208","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13251,"src":"12353:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12368:4:43","12379:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"12353:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint208_$13251_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}],"expression":{"id":13614,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13557,"src":"12343:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},"id":13616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12348:4:43","memberName":"push","nodeType":"MemberAccess","src":"12343:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint208_$13251_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,struct Checkpoints.Checkpoint208 storage ref)"}},"id":13621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12343:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13622,"nodeType":"ExpressionStatement","src":"12343:52:43"}]},"id":13624,"nodeType":"IfStatement","src":"12247:163:43","trueBody":{"id":13613,"nodeType":"Block","src":"12267:52:43","statements":[{"expression":{"id":13611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":13607,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13578,"src":"12285:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13609,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12290:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"12285:11:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13610,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13561,"src":"12299:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"12285:19:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13612,"nodeType":"ExpressionStatement","src":"12285:19:43"}]}},{"expression":{"components":[{"id":13625,"name":"lastValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13592,"src":"12431:9:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},{"id":13626,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13561,"src":"12442:5:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"id":13627,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12430:18:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"functionReturnParameters":13567,"id":13628,"nodeType":"Return","src":"12423:25:43"}]}}]},"documentation":{"id":13553,"nodeType":"StructuredDocumentation","src":"11487:165:43","text":" @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n or by updating the last one."},"id":13646,"implemented":true,"kind":"function","modifiers":[],"name":"_insert","nameLocation":"11666:7:43","nodeType":"FunctionDefinition","parameters":{"id":13562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13557,"mutability":"mutable","name":"self","nameLocation":"11707:4:43","nodeType":"VariableDeclaration","scope":13646,"src":"11683:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13555,"nodeType":"UserDefinedTypeName","pathNode":{"id":13554,"name":"Checkpoint208","nameLocations":["11683:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"11683:13:43"},"referencedDeclaration":13251,"src":"11683:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13556,"nodeType":"ArrayTypeName","src":"11683:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":13559,"mutability":"mutable","name":"key","nameLocation":"11728:3:43","nodeType":"VariableDeclaration","scope":13646,"src":"11721:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13558,"name":"uint48","nodeType":"ElementaryTypeName","src":"11721:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13561,"mutability":"mutable","name":"value","nameLocation":"11749:5:43","nodeType":"VariableDeclaration","scope":13646,"src":"11741:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13560,"name":"uint208","nodeType":"ElementaryTypeName","src":"11741:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"11673:87:43"},"returnParameters":{"id":13567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13564,"mutability":"mutable","name":"oldValue","nameLocation":"11786:8:43","nodeType":"VariableDeclaration","scope":13646,"src":"11778:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13563,"name":"uint208","nodeType":"ElementaryTypeName","src":"11778:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":13566,"mutability":"mutable","name":"newValue","nameLocation":"11804:8:43","nodeType":"VariableDeclaration","scope":13646,"src":"11796:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13565,"name":"uint208","nodeType":"ElementaryTypeName","src":"11796:7:43","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"11777:36:43"},"scope":14290,"src":"11657:922:43","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":13697,"nodeType":"Block","src":"13095:267:43","statements":[{"body":{"id":13693,"nodeType":"Block","src":"13124:211:43","statements":[{"assignments":[13666],"declarations":[{"constant":false,"id":13666,"mutability":"mutable","name":"mid","nameLocation":"13146:3:43","nodeType":"VariableDeclaration","scope":13693,"src":"13138:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13665,"name":"uint256","nodeType":"ElementaryTypeName","src":"13138:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13672,"initialValue":{"arguments":[{"id":13669,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13655,"src":"13165:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13670,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13657,"src":"13170:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13667,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"13152:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13157:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"13152:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13152:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13138:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":13679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13674,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13651,"src":"13207:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},{"id":13675,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13666,"src":"13213:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13673,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"13193:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13676,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13193:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13677,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13218:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"13193:29:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13678,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13653,"src":"13225:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"13193:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13691,"nodeType":"Block","src":"13279:46:43","statements":[{"expression":{"id":13689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13685,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13655,"src":"13297:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13686,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13666,"src":"13303:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13309:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"13303:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13297:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13690,"nodeType":"ExpressionStatement","src":"13297:13:43"}]},"id":13692,"nodeType":"IfStatement","src":"13189:136:43","trueBody":{"id":13684,"nodeType":"Block","src":"13230:43:43","statements":[{"expression":{"id":13682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13680,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13657,"src":"13248:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13681,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13666,"src":"13255:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13248:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13683,"nodeType":"ExpressionStatement","src":"13248:10:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13662,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13655,"src":"13112:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13663,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13657,"src":"13118:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13112:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13694,"nodeType":"WhileStatement","src":"13105:230:43"},{"expression":{"id":13695,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13657,"src":"13351:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13661,"id":13696,"nodeType":"Return","src":"13344:11:43"}]},"documentation":{"id":13647,"nodeType":"StructuredDocumentation","src":"12585:339:43","text":" @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":13698,"implemented":true,"kind":"function","modifiers":[],"name":"_upperBinaryLookup","nameLocation":"12938:18:43","nodeType":"FunctionDefinition","parameters":{"id":13658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13651,"mutability":"mutable","name":"self","nameLocation":"12990:4:43","nodeType":"VariableDeclaration","scope":13698,"src":"12966:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13649,"nodeType":"UserDefinedTypeName","pathNode":{"id":13648,"name":"Checkpoint208","nameLocations":["12966:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"12966:13:43"},"referencedDeclaration":13251,"src":"12966:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13650,"nodeType":"ArrayTypeName","src":"12966:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":13653,"mutability":"mutable","name":"key","nameLocation":"13011:3:43","nodeType":"VariableDeclaration","scope":13698,"src":"13004:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13652,"name":"uint48","nodeType":"ElementaryTypeName","src":"13004:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13655,"mutability":"mutable","name":"low","nameLocation":"13032:3:43","nodeType":"VariableDeclaration","scope":13698,"src":"13024:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13654,"name":"uint256","nodeType":"ElementaryTypeName","src":"13024:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13657,"mutability":"mutable","name":"high","nameLocation":"13053:4:43","nodeType":"VariableDeclaration","scope":13698,"src":"13045:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13656,"name":"uint256","nodeType":"ElementaryTypeName","src":"13045:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12956:107:43"},"returnParameters":{"id":13661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13660,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13698,"src":"13086:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13659,"name":"uint256","nodeType":"ElementaryTypeName","src":"13086:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13085:9:43"},"scope":14290,"src":"12929:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13749,"nodeType":"Block","src":"13879:267:43","statements":[{"body":{"id":13745,"nodeType":"Block","src":"13908:211:43","statements":[{"assignments":[13718],"declarations":[{"constant":false,"id":13718,"mutability":"mutable","name":"mid","nameLocation":"13930:3:43","nodeType":"VariableDeclaration","scope":13745,"src":"13922:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13717,"name":"uint256","nodeType":"ElementaryTypeName","src":"13922:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13724,"initialValue":{"arguments":[{"id":13721,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13707,"src":"13949:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13722,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13709,"src":"13954:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13719,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"13936:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13941:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"13936:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13723,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13936:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13922:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":13731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13726,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13703,"src":"13991:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},{"id":13727,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13718,"src":"13997:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13725,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":13765,"src":"13977:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13251_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13728,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13977:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13729,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14002:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13248,"src":"13977:29:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13730,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13705,"src":"14009:3:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"13977:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13743,"nodeType":"Block","src":"14066:43:43","statements":[{"expression":{"id":13741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13739,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13709,"src":"14084:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13740,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13718,"src":"14091:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14084:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13742,"nodeType":"ExpressionStatement","src":"14084:10:43"}]},"id":13744,"nodeType":"IfStatement","src":"13973:136:43","trueBody":{"id":13738,"nodeType":"Block","src":"14014:46:43","statements":[{"expression":{"id":13736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13732,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13707,"src":"14032:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13733,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13718,"src":"14038:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14044:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"14038:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14032:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13737,"nodeType":"ExpressionStatement","src":"14032:13:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13714,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13707,"src":"13896:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13715,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13709,"src":"13902:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13896:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13746,"nodeType":"WhileStatement","src":"13889:230:43"},{"expression":{"id":13747,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13709,"src":"14135:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13713,"id":13748,"nodeType":"Return","src":"14128:11:43"}]},"documentation":{"id":13699,"nodeType":"StructuredDocumentation","src":"13368:340:43","text":" @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":13750,"implemented":true,"kind":"function","modifiers":[],"name":"_lowerBinaryLookup","nameLocation":"13722:18:43","nodeType":"FunctionDefinition","parameters":{"id":13710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13703,"mutability":"mutable","name":"self","nameLocation":"13774:4:43","nodeType":"VariableDeclaration","scope":13750,"src":"13750:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13701,"nodeType":"UserDefinedTypeName","pathNode":{"id":13700,"name":"Checkpoint208","nameLocations":["13750:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"13750:13:43"},"referencedDeclaration":13251,"src":"13750:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13702,"nodeType":"ArrayTypeName","src":"13750:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":13705,"mutability":"mutable","name":"key","nameLocation":"13795:3:43","nodeType":"VariableDeclaration","scope":13750,"src":"13788:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13704,"name":"uint48","nodeType":"ElementaryTypeName","src":"13788:6:43","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13707,"mutability":"mutable","name":"low","nameLocation":"13816:3:43","nodeType":"VariableDeclaration","scope":13750,"src":"13808:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13706,"name":"uint256","nodeType":"ElementaryTypeName","src":"13808:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13709,"mutability":"mutable","name":"high","nameLocation":"13837:4:43","nodeType":"VariableDeclaration","scope":13750,"src":"13829:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13708,"name":"uint256","nodeType":"ElementaryTypeName","src":"13829:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13740:107:43"},"returnParameters":{"id":13713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13712,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13750,"src":"13870:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13711,"name":"uint256","nodeType":"ElementaryTypeName","src":"13870:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13869:9:43"},"scope":14290,"src":"13713:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13764,"nodeType":"Block","src":"14429:125:43","statements":[{"AST":{"nodeType":"YulBlock","src":"14448:100:43","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14469:1:43","type":"","value":"0"},{"name":"self.slot","nodeType":"YulIdentifier","src":"14472:9:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14462:6:43"},"nodeType":"YulFunctionCall","src":"14462:20:43"},"nodeType":"YulExpressionStatement","src":"14462:20:43"},{"nodeType":"YulAssignment","src":"14495:43:43","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14524:1:43","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"14527:4:43","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"14514:9:43"},"nodeType":"YulFunctionCall","src":"14514:18:43"},{"name":"pos","nodeType":"YulIdentifier","src":"14534:3:43"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14510:3:43"},"nodeType":"YulFunctionCall","src":"14510:28:43"},"variableNames":[{"name":"result.slot","nodeType":"YulIdentifier","src":"14495:11:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":13757,"isOffset":false,"isSlot":false,"src":"14534:3:43","valueSize":1},{"declaration":13761,"isOffset":false,"isSlot":true,"src":"14495:11:43","suffix":"slot","valueSize":1},{"declaration":13755,"isOffset":false,"isSlot":true,"src":"14472:9:43","suffix":"slot","valueSize":1}],"id":13763,"nodeType":"InlineAssembly","src":"14439:109:43"}]},"documentation":{"id":13751,"nodeType":"StructuredDocumentation","src":"14152:132:43","text":" @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds."},"id":13765,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeAccess","nameLocation":"14298:13:43","nodeType":"FunctionDefinition","parameters":{"id":13758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13755,"mutability":"mutable","name":"self","nameLocation":"14345:4:43","nodeType":"VariableDeclaration","scope":13765,"src":"14321:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13753,"nodeType":"UserDefinedTypeName","pathNode":{"id":13752,"name":"Checkpoint208","nameLocations":["14321:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"14321:13:43"},"referencedDeclaration":13251,"src":"14321:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13754,"nodeType":"ArrayTypeName","src":"14321:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13251_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":13757,"mutability":"mutable","name":"pos","nameLocation":"14367:3:43","nodeType":"VariableDeclaration","scope":13765,"src":"14359:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13756,"name":"uint256","nodeType":"ElementaryTypeName","src":"14359:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14311:65:43"},"returnParameters":{"id":13762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13761,"mutability":"mutable","name":"result","nameLocation":"14421:6:43","nodeType":"VariableDeclaration","scope":13765,"src":"14399:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":13760,"nodeType":"UserDefinedTypeName","pathNode":{"id":13759,"name":"Checkpoint208","nameLocations":["14399:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13251,"src":"14399:13:43"},"referencedDeclaration":13251,"src":"14399:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13251_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"14398:30:43"},"scope":14290,"src":"14289:265:43","stateMutability":"pure","virtual":false,"visibility":"private"},{"canonicalName":"Checkpoints.Trace160","id":13770,"members":[{"constant":false,"id":13769,"mutability":"mutable","name":"_checkpoints","nameLocation":"14602:12:43","nodeType":"VariableDeclaration","scope":13770,"src":"14586:28:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":13767,"nodeType":"UserDefinedTypeName","pathNode":{"id":13766,"name":"Checkpoint160","nameLocations":["14586:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"14586:13:43"},"referencedDeclaration":13775,"src":"14586:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":13768,"nodeType":"ArrayTypeName","src":"14586:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"}],"name":"Trace160","nameLocation":"14567:8:43","nodeType":"StructDefinition","scope":14290,"src":"14560:61:43","visibility":"public"},{"canonicalName":"Checkpoints.Checkpoint160","id":13775,"members":[{"constant":false,"id":13772,"mutability":"mutable","name":"_key","nameLocation":"14665:4:43","nodeType":"VariableDeclaration","scope":13775,"src":"14658:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13771,"name":"uint96","nodeType":"ElementaryTypeName","src":"14658:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":13774,"mutability":"mutable","name":"_value","nameLocation":"14687:6:43","nodeType":"VariableDeclaration","scope":13775,"src":"14679:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13773,"name":"uint160","nodeType":"ElementaryTypeName","src":"14679:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"name":"Checkpoint160","nameLocation":"14634:13:43","nodeType":"StructDefinition","scope":14290,"src":"14627:73:43","visibility":"public"},{"body":{"id":13797,"nodeType":"Block","src":"15161:62:43","statements":[{"expression":{"arguments":[{"expression":{"id":13791,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13779,"src":"15186:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13792,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15191:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"15186:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13793,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13781,"src":"15205:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":13794,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13783,"src":"15210:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":13790,"name":"_insert","nodeType":"Identifier","overloadedDeclarations":[13122,13646,14170],"referencedDeclaration":14170,"src":"15178:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint96_$_t_uint160_$returns$_t_uint160_$_t_uint160_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint96,uint160) returns (uint160,uint160)"}},"id":13795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15178:38:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint160_$_t_uint160_$","typeString":"tuple(uint160,uint160)"}},"functionReturnParameters":13789,"id":13796,"nodeType":"Return","src":"15171:45:43"}]},"documentation":{"id":13776,"nodeType":"StructuredDocumentation","src":"14706:302:43","text":" @dev Pushes a (`key`, `value`) pair into a Trace160 so that it is stored as the checkpoint.\n Returns previous value and new value.\n IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint96).max` key set will disable the\n library."},"id":13798,"implemented":true,"kind":"function","modifiers":[],"name":"push","nameLocation":"15022:4:43","nodeType":"FunctionDefinition","parameters":{"id":13784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13779,"mutability":"mutable","name":"self","nameLocation":"15053:4:43","nodeType":"VariableDeclaration","scope":13798,"src":"15036:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13778,"nodeType":"UserDefinedTypeName","pathNode":{"id":13777,"name":"Trace160","nameLocations":["15036:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"15036:8:43"},"referencedDeclaration":13770,"src":"15036:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":13781,"mutability":"mutable","name":"key","nameLocation":"15074:3:43","nodeType":"VariableDeclaration","scope":13798,"src":"15067:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13780,"name":"uint96","nodeType":"ElementaryTypeName","src":"15067:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":13783,"mutability":"mutable","name":"value","nameLocation":"15095:5:43","nodeType":"VariableDeclaration","scope":13798,"src":"15087:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13782,"name":"uint160","nodeType":"ElementaryTypeName","src":"15087:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15026:80:43"},"returnParameters":{"id":13789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13786,"mutability":"mutable","name":"oldValue","nameLocation":"15133:8:43","nodeType":"VariableDeclaration","scope":13798,"src":"15125:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13785,"name":"uint160","nodeType":"ElementaryTypeName","src":"15125:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":13788,"mutability":"mutable","name":"newValue","nameLocation":"15151:8:43","nodeType":"VariableDeclaration","scope":13798,"src":"15143:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13787,"name":"uint160","nodeType":"ElementaryTypeName","src":"15143:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15124:36:43"},"scope":14290,"src":"15013:210:43","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13837,"nodeType":"Block","src":"15476:207:43","statements":[{"assignments":[13810],"declarations":[{"constant":false,"id":13810,"mutability":"mutable","name":"len","nameLocation":"15494:3:43","nodeType":"VariableDeclaration","scope":13837,"src":"15486:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13809,"name":"uint256","nodeType":"ElementaryTypeName","src":"15486:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13814,"initialValue":{"expression":{"expression":{"id":13811,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13802,"src":"15500:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13812,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15505:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"15500:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":13813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15518:6:43","memberName":"length","nodeType":"MemberAccess","src":"15500:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15486:38:43"},{"assignments":[13816],"declarations":[{"constant":false,"id":13816,"mutability":"mutable","name":"pos","nameLocation":"15542:3:43","nodeType":"VariableDeclaration","scope":13837,"src":"15534:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13815,"name":"uint256","nodeType":"ElementaryTypeName","src":"15534:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13824,"initialValue":{"arguments":[{"expression":{"id":13818,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13802,"src":"15567:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13819,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15572:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"15567:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13820,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13804,"src":"15586:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"hexValue":"30","id":13821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15591:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13822,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13810,"src":"15594:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13817,"name":"_lowerBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13226,13750,14274],"referencedDeclaration":14274,"src":"15548:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint96_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint96,uint256,uint256) view returns (uint256)"}},"id":13823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15548:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15534:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13825,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13816,"src":"15615:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13826,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13810,"src":"15622:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15615:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13830,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13802,"src":"15646:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13831,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15651:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"15646:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13832,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13816,"src":"15665:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13829,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"15632:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":13833,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15632:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":13834,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15670:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"15632:44:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":13835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"15615:61:43","trueExpression":{"hexValue":"30","id":13828,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15628:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":13808,"id":13836,"nodeType":"Return","src":"15608:68:43"}]},"documentation":{"id":13799,"nodeType":"StructuredDocumentation","src":"15229:154:43","text":" @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n there is none."},"id":13838,"implemented":true,"kind":"function","modifiers":[],"name":"lowerLookup","nameLocation":"15397:11:43","nodeType":"FunctionDefinition","parameters":{"id":13805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13802,"mutability":"mutable","name":"self","nameLocation":"15426:4:43","nodeType":"VariableDeclaration","scope":13838,"src":"15409:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13801,"nodeType":"UserDefinedTypeName","pathNode":{"id":13800,"name":"Trace160","nameLocations":["15409:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"15409:8:43"},"referencedDeclaration":13770,"src":"15409:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":13804,"mutability":"mutable","name":"key","nameLocation":"15439:3:43","nodeType":"VariableDeclaration","scope":13838,"src":"15432:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13803,"name":"uint96","nodeType":"ElementaryTypeName","src":"15432:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"15408:35:43"},"returnParameters":{"id":13808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13807,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13838,"src":"15467:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13806,"name":"uint160","nodeType":"ElementaryTypeName","src":"15467:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15466:9:43"},"scope":14290,"src":"15388:295:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13879,"nodeType":"Block","src":"15938:209:43","statements":[{"assignments":[13850],"declarations":[{"constant":false,"id":13850,"mutability":"mutable","name":"len","nameLocation":"15956:3:43","nodeType":"VariableDeclaration","scope":13879,"src":"15948:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13849,"name":"uint256","nodeType":"ElementaryTypeName","src":"15948:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13854,"initialValue":{"expression":{"expression":{"id":13851,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13842,"src":"15962:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13852,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15967:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"15962:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":13853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15980:6:43","memberName":"length","nodeType":"MemberAccess","src":"15962:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15948:38:43"},{"assignments":[13856],"declarations":[{"constant":false,"id":13856,"mutability":"mutable","name":"pos","nameLocation":"16004:3:43","nodeType":"VariableDeclaration","scope":13879,"src":"15996:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13855,"name":"uint256","nodeType":"ElementaryTypeName","src":"15996:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13864,"initialValue":{"arguments":[{"expression":{"id":13858,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13842,"src":"16029:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13859,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16034:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"16029:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13860,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13844,"src":"16048:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"hexValue":"30","id":13861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16053:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13862,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13850,"src":"16056:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13857,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":14222,"src":"16010:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint96_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint96,uint256,uint256) view returns (uint256)"}},"id":13863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16010:50:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15996:64:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13865,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13856,"src":"16077:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13866,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16084:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16077:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13870,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13842,"src":"16106:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13871,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16111:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"16106:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13872,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13856,"src":"16125:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16131:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"16125:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13869,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"16092:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":13875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16092:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":13876,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16134:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"16092:48:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":13877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"16077:63:43","trueExpression":{"hexValue":"30","id":13868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16088:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":13848,"id":13878,"nodeType":"Return","src":"16070:70:43"}]},"documentation":{"id":13839,"nodeType":"StructuredDocumentation","src":"15689:156:43","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none."},"id":13880,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookup","nameLocation":"15859:11:43","nodeType":"FunctionDefinition","parameters":{"id":13845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13842,"mutability":"mutable","name":"self","nameLocation":"15888:4:43","nodeType":"VariableDeclaration","scope":13880,"src":"15871:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13841,"nodeType":"UserDefinedTypeName","pathNode":{"id":13840,"name":"Trace160","nameLocations":["15871:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"15871:8:43"},"referencedDeclaration":13770,"src":"15871:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":13844,"mutability":"mutable","name":"key","nameLocation":"15901:3:43","nodeType":"VariableDeclaration","scope":13880,"src":"15894:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13843,"name":"uint96","nodeType":"ElementaryTypeName","src":"15894:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"15870:35:43"},"returnParameters":{"id":13848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13847,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13880,"src":"15929:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13846,"name":"uint160","nodeType":"ElementaryTypeName","src":"15929:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15928:9:43"},"scope":14290,"src":"15850:297:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13964,"nodeType":"Block","src":"16546:512:43","statements":[{"assignments":[13892],"declarations":[{"constant":false,"id":13892,"mutability":"mutable","name":"len","nameLocation":"16564:3:43","nodeType":"VariableDeclaration","scope":13964,"src":"16556:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13891,"name":"uint256","nodeType":"ElementaryTypeName","src":"16556:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13896,"initialValue":{"expression":{"expression":{"id":13893,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13884,"src":"16570:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13894,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16575:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"16570:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":13895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16588:6:43","memberName":"length","nodeType":"MemberAccess","src":"16570:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16556:38:43"},{"assignments":[13898],"declarations":[{"constant":false,"id":13898,"mutability":"mutable","name":"low","nameLocation":"16613:3:43","nodeType":"VariableDeclaration","scope":13964,"src":"16605:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13897,"name":"uint256","nodeType":"ElementaryTypeName","src":"16605:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13900,"initialValue":{"hexValue":"30","id":13899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16619:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"16605:15:43"},{"assignments":[13902],"declarations":[{"constant":false,"id":13902,"mutability":"mutable","name":"high","nameLocation":"16638:4:43","nodeType":"VariableDeclaration","scope":13964,"src":"16630:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13901,"name":"uint256","nodeType":"ElementaryTypeName","src":"16630:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13904,"initialValue":{"id":13903,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13892,"src":"16645:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16630:18:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13905,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13892,"src":"16663:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":13906,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16669:1:43","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"16663:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13939,"nodeType":"IfStatement","src":"16659:234:43","trueBody":{"id":13938,"nodeType":"Block","src":"16672:221:43","statements":[{"assignments":[13909],"declarations":[{"constant":false,"id":13909,"mutability":"mutable","name":"mid","nameLocation":"16694:3:43","nodeType":"VariableDeclaration","scope":13938,"src":"16686:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13908,"name":"uint256","nodeType":"ElementaryTypeName","src":"16686:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13916,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13910,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13892,"src":"16700:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":13913,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13892,"src":"16716:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13911,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"16706:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":13912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16711:4:43","memberName":"sqrt","nodeType":"MemberAccess","referencedDeclaration":10179,"src":"16706:9:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":13914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16706:14:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16700:20:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16686:34:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":13924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13917,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13886,"src":"16738:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"expression":{"id":13919,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13884,"src":"16758:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13920,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16763:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"16758:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13921,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13909,"src":"16777:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13918,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"16744:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":13922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16744:37:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":13923,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16782:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13772,"src":"16744:42:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"16738:48:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13936,"nodeType":"Block","src":"16837:46:43","statements":[{"expression":{"id":13934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13930,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13898,"src":"16855:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13931,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13909,"src":"16861:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13932,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16867:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"16861:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16855:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13935,"nodeType":"ExpressionStatement","src":"16855:13:43"}]},"id":13937,"nodeType":"IfStatement","src":"16734:149:43","trueBody":{"id":13929,"nodeType":"Block","src":"16788:43:43","statements":[{"expression":{"id":13927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13925,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13902,"src":"16806:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13926,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13909,"src":"16813:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16806:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13928,"nodeType":"ExpressionStatement","src":"16806:10:43"}]}}]}},{"assignments":[13941],"declarations":[{"constant":false,"id":13941,"mutability":"mutable","name":"pos","nameLocation":"16911:3:43","nodeType":"VariableDeclaration","scope":13964,"src":"16903:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13940,"name":"uint256","nodeType":"ElementaryTypeName","src":"16903:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13949,"initialValue":{"arguments":[{"expression":{"id":13943,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13884,"src":"16936:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13944,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16941:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"16936:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":13945,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13886,"src":"16955:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":13946,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13898,"src":"16960:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13947,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13902,"src":"16965:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13942,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13174,13698,14222],"referencedDeclaration":14222,"src":"16917:18:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint96_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint96,uint256,uint256) view returns (uint256)"}},"id":13948,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16917:53:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16903:67:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13950,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13941,"src":"16988:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16995:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16988:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13955,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13884,"src":"17017:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13956,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17022:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"17017:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13957,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13941,"src":"17036:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17042:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17036:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13954,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"17003:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":13960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17003:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":13961,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17045:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"17003:48:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":13962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"16988:63:43","trueExpression":{"hexValue":"30","id":13953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16999:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":13890,"id":13963,"nodeType":"Return","src":"16981:70:43"}]},"documentation":{"id":13881,"nodeType":"StructuredDocumentation","src":"16153:294:43","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none.\n NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n keys)."},"id":13965,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookupRecent","nameLocation":"16461:17:43","nodeType":"FunctionDefinition","parameters":{"id":13887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13884,"mutability":"mutable","name":"self","nameLocation":"16496:4:43","nodeType":"VariableDeclaration","scope":13965,"src":"16479:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13883,"nodeType":"UserDefinedTypeName","pathNode":{"id":13882,"name":"Trace160","nameLocations":["16479:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"16479:8:43"},"referencedDeclaration":13770,"src":"16479:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":13886,"mutability":"mutable","name":"key","nameLocation":"16509:3:43","nodeType":"VariableDeclaration","scope":13965,"src":"16502:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13885,"name":"uint96","nodeType":"ElementaryTypeName","src":"16502:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"16478:35:43"},"returnParameters":{"id":13890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13889,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13965,"src":"16537:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13888,"name":"uint160","nodeType":"ElementaryTypeName","src":"16537:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"16536:9:43"},"scope":14290,"src":"16452:606:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13994,"nodeType":"Block","src":"17249:135:43","statements":[{"assignments":[13975],"declarations":[{"constant":false,"id":13975,"mutability":"mutable","name":"pos","nameLocation":"17267:3:43","nodeType":"VariableDeclaration","scope":13994,"src":"17259:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13974,"name":"uint256","nodeType":"ElementaryTypeName","src":"17259:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13979,"initialValue":{"expression":{"expression":{"id":13976,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13969,"src":"17273:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13977,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17278:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"17273:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":13978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17291:6:43","memberName":"length","nodeType":"MemberAccess","src":"17273:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17259:38:43"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13982,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13980,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13975,"src":"17314:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17321:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17314:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13985,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13969,"src":"17343:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":13986,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17348:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"17343:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13987,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13975,"src":"17362:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17368:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17362:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13984,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"17329:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":13990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17329:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":13991,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17371:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"17329:48:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":13992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"17314:63:43","trueExpression":{"hexValue":"30","id":13983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17325:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":13973,"id":13993,"nodeType":"Return","src":"17307:70:43"}]},"documentation":{"id":13966,"nodeType":"StructuredDocumentation","src":"17064:109:43","text":" @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints."},"id":13995,"implemented":true,"kind":"function","modifiers":[],"name":"latest","nameLocation":"17187:6:43","nodeType":"FunctionDefinition","parameters":{"id":13970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13969,"mutability":"mutable","name":"self","nameLocation":"17211:4:43","nodeType":"VariableDeclaration","scope":13995,"src":"17194:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13968,"nodeType":"UserDefinedTypeName","pathNode":{"id":13967,"name":"Trace160","nameLocations":["17194:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"17194:8:43"},"referencedDeclaration":13770,"src":"17194:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"}],"src":"17193:23:43"},"returnParameters":{"id":13973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13972,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13995,"src":"17240:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":13971,"name":"uint160","nodeType":"ElementaryTypeName","src":"17240:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"17239:9:43"},"scope":14290,"src":"17178:206:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14043,"nodeType":"Block","src":"17677:275:43","statements":[{"assignments":[14009],"declarations":[{"constant":false,"id":14009,"mutability":"mutable","name":"pos","nameLocation":"17695:3:43","nodeType":"VariableDeclaration","scope":14043,"src":"17687:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14008,"name":"uint256","nodeType":"ElementaryTypeName","src":"17687:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14013,"initialValue":{"expression":{"expression":{"id":14010,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13999,"src":"17701:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14011,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17706:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"17701:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17719:6:43","memberName":"length","nodeType":"MemberAccess","src":"17701:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17687:38:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14014,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14009,"src":"17739:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17746:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17739:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14041,"nodeType":"Block","src":"17800:146:43","statements":[{"assignments":[14025],"declarations":[{"constant":false,"id":14025,"mutability":"mutable","name":"ckpt","nameLocation":"17836:4:43","nodeType":"VariableDeclaration","scope":14041,"src":"17814:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14024,"nodeType":"UserDefinedTypeName","pathNode":{"id":14023,"name":"Checkpoint160","nameLocations":["17814:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"17814:13:43"},"referencedDeclaration":13775,"src":"17814:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"id":14033,"initialValue":{"arguments":[{"expression":{"id":14027,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13999,"src":"17857:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14028,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17862:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"17857:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14029,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14009,"src":"17876:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14030,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17882:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17876:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14026,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"17843:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17843:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"17814:70:43"},{"expression":{"components":[{"hexValue":"74727565","id":14034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17906:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":14035,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14025,"src":"17912:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14036,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17917:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13772,"src":"17912:9:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"expression":{"id":14037,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14025,"src":"17923:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14038,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17928:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"17923:11:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"id":14039,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17905:30:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint96_$_t_uint160_$","typeString":"tuple(bool,uint96,uint160)"}},"functionReturnParameters":14007,"id":14040,"nodeType":"Return","src":"17898:37:43"}]},"id":14042,"nodeType":"IfStatement","src":"17735:211:43","trueBody":{"id":14022,"nodeType":"Block","src":"17749:45:43","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":14017,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17771:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":14018,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17778:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":14019,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17781:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":14020,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"17770:13:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0,int_const 0)"}},"functionReturnParameters":14007,"id":14021,"nodeType":"Return","src":"17763:20:43"}]}}]},"documentation":{"id":13996,"nodeType":"StructuredDocumentation","src":"17390:168:43","text":" @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n in the most recent checkpoint."},"id":14044,"implemented":true,"kind":"function","modifiers":[],"name":"latestCheckpoint","nameLocation":"17572:16:43","nodeType":"FunctionDefinition","parameters":{"id":14000,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13999,"mutability":"mutable","name":"self","nameLocation":"17606:4:43","nodeType":"VariableDeclaration","scope":14044,"src":"17589:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":13998,"nodeType":"UserDefinedTypeName","pathNode":{"id":13997,"name":"Trace160","nameLocations":["17589:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"17589:8:43"},"referencedDeclaration":13770,"src":"17589:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"}],"src":"17588:23:43"},"returnParameters":{"id":14007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14002,"mutability":"mutable","name":"exists","nameLocation":"17640:6:43","nodeType":"VariableDeclaration","scope":14044,"src":"17635:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14001,"name":"bool","nodeType":"ElementaryTypeName","src":"17635:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14004,"mutability":"mutable","name":"_key","nameLocation":"17655:4:43","nodeType":"VariableDeclaration","scope":14044,"src":"17648:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14003,"name":"uint96","nodeType":"ElementaryTypeName","src":"17648:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14006,"mutability":"mutable","name":"_value","nameLocation":"17669:6:43","nodeType":"VariableDeclaration","scope":14044,"src":"17661:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14005,"name":"uint160","nodeType":"ElementaryTypeName","src":"17661:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"17634:42:43"},"scope":14290,"src":"17563:389:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14057,"nodeType":"Block","src":"18091:48:43","statements":[{"expression":{"expression":{"expression":{"id":14053,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14048,"src":"18108:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14054,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18113:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"18108:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18126:6:43","memberName":"length","nodeType":"MemberAccess","src":"18108:24:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14052,"id":14056,"nodeType":"Return","src":"18101:31:43"}]},"documentation":{"id":14045,"nodeType":"StructuredDocumentation","src":"17958:57:43","text":" @dev Returns the number of checkpoint."},"id":14058,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"18029:6:43","nodeType":"FunctionDefinition","parameters":{"id":14049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14048,"mutability":"mutable","name":"self","nameLocation":"18053:4:43","nodeType":"VariableDeclaration","scope":14058,"src":"18036:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14047,"nodeType":"UserDefinedTypeName","pathNode":{"id":14046,"name":"Trace160","nameLocations":["18036:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"18036:8:43"},"referencedDeclaration":13770,"src":"18036:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"}],"src":"18035:23:43"},"returnParameters":{"id":14052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14051,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14058,"src":"18082:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14050,"name":"uint256","nodeType":"ElementaryTypeName","src":"18082:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18081:9:43"},"scope":14290,"src":"18020:119:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14075,"nodeType":"Block","src":"18303:46:43","statements":[{"expression":{"baseExpression":{"expression":{"id":14070,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14062,"src":"18320:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14071,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18325:12:43","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13769,"src":"18320:17:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14073,"indexExpression":{"id":14072,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14064,"src":"18338:3:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18320:22:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref"}},"functionReturnParameters":14069,"id":14074,"nodeType":"Return","src":"18313:29:43"}]},"documentation":{"id":14059,"nodeType":"StructuredDocumentation","src":"18145:61:43","text":" @dev Returns checkpoint at given position."},"id":14076,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"18220:2:43","nodeType":"FunctionDefinition","parameters":{"id":14065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14062,"mutability":"mutable","name":"self","nameLocation":"18240:4:43","nodeType":"VariableDeclaration","scope":14076,"src":"18223:21:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14061,"nodeType":"UserDefinedTypeName","pathNode":{"id":14060,"name":"Trace160","nameLocations":["18223:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"18223:8:43"},"referencedDeclaration":13770,"src":"18223:8:43","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$13770_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":14064,"mutability":"mutable","name":"pos","nameLocation":"18253:3:43","nodeType":"VariableDeclaration","scope":14076,"src":"18246:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14063,"name":"uint32","nodeType":"ElementaryTypeName","src":"18246:6:43","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"18222:35:43"},"returnParameters":{"id":14069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14068,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14076,"src":"18281:20:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_memory_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14067,"nodeType":"UserDefinedTypeName","pathNode":{"id":14066,"name":"Checkpoint160","nameLocations":["18281:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"18281:13:43"},"referencedDeclaration":13775,"src":"18281:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"src":"18280:22:43"},"scope":14290,"src":"18211:138:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14169,"nodeType":"Block","src":"18682:765:43","statements":[{"assignments":[14093],"declarations":[{"constant":false,"id":14093,"mutability":"mutable","name":"pos","nameLocation":"18700:3:43","nodeType":"VariableDeclaration","scope":14169,"src":"18692:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14092,"name":"uint256","nodeType":"ElementaryTypeName","src":"18692:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14096,"initialValue":{"expression":{"id":14094,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14081,"src":"18706:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},"id":14095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18711:6:43","memberName":"length","nodeType":"MemberAccess","src":"18706:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18692:25:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14097,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14093,"src":"18732:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18738:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18732:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14167,"nodeType":"Block","src":"19333:108:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":14158,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14083,"src":"19378:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":14159,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"19391:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":14157,"name":"Checkpoint160","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13775,"src":"19357:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["19372:4:43","19383:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"19357:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint160_$13775_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}],"expression":{"id":14154,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14081,"src":"19347:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},"id":14156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19352:4:43","memberName":"push","nodeType":"MemberAccess","src":"19347:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint160_$13775_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,struct Checkpoints.Checkpoint160 storage ref)"}},"id":14161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19347:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14162,"nodeType":"ExpressionStatement","src":"19347:52:43"},{"expression":{"components":[{"hexValue":"30","id":14163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19421:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":14164,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"19424:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"id":14165,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19420:10:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_uint160_$","typeString":"tuple(int_const 0,uint160)"}},"functionReturnParameters":14091,"id":14166,"nodeType":"Return","src":"19413:17:43"}]},"id":14168,"nodeType":"IfStatement","src":"18728:713:43","trueBody":{"id":14153,"nodeType":"Block","src":"18741:586:43","statements":[{"assignments":[14102],"declarations":[{"constant":false,"id":14102,"mutability":"mutable","name":"last","nameLocation":"18777:4:43","nodeType":"VariableDeclaration","scope":14153,"src":"18755:26:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14101,"nodeType":"UserDefinedTypeName","pathNode":{"id":14100,"name":"Checkpoint160","nameLocations":["18755:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"18755:13:43"},"referencedDeclaration":13775,"src":"18755:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"id":14109,"initialValue":{"arguments":[{"id":14104,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14081,"src":"18798:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14105,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14093,"src":"18804:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18810:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"18804:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14103,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"18784:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18784:28:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"18755:57:43"},{"assignments":[14111],"declarations":[{"constant":false,"id":14111,"mutability":"mutable","name":"lastKey","nameLocation":"18833:7:43","nodeType":"VariableDeclaration","scope":14153,"src":"18826:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14110,"name":"uint96","nodeType":"ElementaryTypeName","src":"18826:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"id":14114,"initialValue":{"expression":{"id":14112,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14102,"src":"18843:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14113,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18848:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13772,"src":"18843:9:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"VariableDeclarationStatement","src":"18826:26:43"},{"assignments":[14116],"declarations":[{"constant":false,"id":14116,"mutability":"mutable","name":"lastValue","nameLocation":"18874:9:43","nodeType":"VariableDeclaration","scope":14153,"src":"18866:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14115,"name":"uint160","nodeType":"ElementaryTypeName","src":"18866:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"id":14119,"initialValue":{"expression":{"id":14117,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14102,"src":"18886:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14118,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18891:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"18886:11:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"nodeType":"VariableDeclarationStatement","src":"18866:31:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14120,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14111,"src":"18971:7:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14121,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14083,"src":"18981:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"18971:13:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14127,"nodeType":"IfStatement","src":"18967:89:43","trueBody":{"id":14126,"nodeType":"Block","src":"18986:70:43","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14123,"name":"CheckpointUnorderedInsertion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12717,"src":"19011:28:43","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":14124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19011:30:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14125,"nodeType":"RevertStatement","src":"19004:37:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14128,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14111,"src":"19119:7:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":14129,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14083,"src":"19130:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"19119:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14147,"nodeType":"Block","src":"19193:85:43","statements":[{"expression":{"arguments":[{"arguments":[{"id":14142,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14083,"src":"19242:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":14143,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"19255:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":14141,"name":"Checkpoint160","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13775,"src":"19221:13:43","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["19236:4:43","19247:6:43"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"19221:41:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint160_$13775_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}],"expression":{"id":14138,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14081,"src":"19211:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},"id":14140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19216:4:43","memberName":"push","nodeType":"MemberAccess","src":"19211:9:43","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint160_$13775_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,struct Checkpoints.Checkpoint160 storage ref)"}},"id":14145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19211:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14146,"nodeType":"ExpressionStatement","src":"19211:52:43"}]},"id":14148,"nodeType":"IfStatement","src":"19115:163:43","trueBody":{"id":14137,"nodeType":"Block","src":"19135:52:43","statements":[{"expression":{"id":14135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14131,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14102,"src":"19153:4:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14133,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"19158:6:43","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13774,"src":"19153:11:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14134,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"19167:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"19153:19:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":14136,"nodeType":"ExpressionStatement","src":"19153:19:43"}]}},{"expression":{"components":[{"id":14149,"name":"lastValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14116,"src":"19299:9:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},{"id":14150,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"19310:5:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"id":14151,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19298:18:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint160_$_t_uint160_$","typeString":"tuple(uint160,uint160)"}},"functionReturnParameters":14091,"id":14152,"nodeType":"Return","src":"19291:25:43"}]}}]},"documentation":{"id":14077,"nodeType":"StructuredDocumentation","src":"18355:165:43","text":" @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n or by updating the last one."},"id":14170,"implemented":true,"kind":"function","modifiers":[],"name":"_insert","nameLocation":"18534:7:43","nodeType":"FunctionDefinition","parameters":{"id":14086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14081,"mutability":"mutable","name":"self","nameLocation":"18575:4:43","nodeType":"VariableDeclaration","scope":14170,"src":"18551:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14079,"nodeType":"UserDefinedTypeName","pathNode":{"id":14078,"name":"Checkpoint160","nameLocations":["18551:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"18551:13:43"},"referencedDeclaration":13775,"src":"18551:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14080,"nodeType":"ArrayTypeName","src":"18551:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14083,"mutability":"mutable","name":"key","nameLocation":"18596:3:43","nodeType":"VariableDeclaration","scope":14170,"src":"18589:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14082,"name":"uint96","nodeType":"ElementaryTypeName","src":"18589:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14085,"mutability":"mutable","name":"value","nameLocation":"18617:5:43","nodeType":"VariableDeclaration","scope":14170,"src":"18609:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14084,"name":"uint160","nodeType":"ElementaryTypeName","src":"18609:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"18541:87:43"},"returnParameters":{"id":14091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14088,"mutability":"mutable","name":"oldValue","nameLocation":"18654:8:43","nodeType":"VariableDeclaration","scope":14170,"src":"18646:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14087,"name":"uint160","nodeType":"ElementaryTypeName","src":"18646:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":14090,"mutability":"mutable","name":"newValue","nameLocation":"18672:8:43","nodeType":"VariableDeclaration","scope":14170,"src":"18664:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14089,"name":"uint160","nodeType":"ElementaryTypeName","src":"18664:7:43","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"18645:36:43"},"scope":14290,"src":"18525:922:43","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":14221,"nodeType":"Block","src":"19963:267:43","statements":[{"body":{"id":14217,"nodeType":"Block","src":"19992:211:43","statements":[{"assignments":[14190],"declarations":[{"constant":false,"id":14190,"mutability":"mutable","name":"mid","nameLocation":"20014:3:43","nodeType":"VariableDeclaration","scope":14217,"src":"20006:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14189,"name":"uint256","nodeType":"ElementaryTypeName","src":"20006:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14196,"initialValue":{"arguments":[{"id":14193,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14179,"src":"20033:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14194,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14181,"src":"20038:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14191,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"20020:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":14192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20025:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"20020:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":14195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20020:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20006:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":14198,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14175,"src":"20075:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},{"id":14199,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14190,"src":"20081:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14197,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"20061:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14200,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20061:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14201,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20086:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13772,"src":"20061:29:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14202,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14177,"src":"20093:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"20061:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14215,"nodeType":"Block","src":"20147:46:43","statements":[{"expression":{"id":14213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14209,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14179,"src":"20165:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14210,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14190,"src":"20171:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20177:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20171:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20165:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14214,"nodeType":"ExpressionStatement","src":"20165:13:43"}]},"id":14216,"nodeType":"IfStatement","src":"20057:136:43","trueBody":{"id":14208,"nodeType":"Block","src":"20098:43:43","statements":[{"expression":{"id":14206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14204,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14181,"src":"20116:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14205,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14190,"src":"20123:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20116:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14207,"nodeType":"ExpressionStatement","src":"20116:10:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14186,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14179,"src":"19980:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14187,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14181,"src":"19986:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19980:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14218,"nodeType":"WhileStatement","src":"19973:230:43"},{"expression":{"id":14219,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14181,"src":"20219:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14185,"id":14220,"nodeType":"Return","src":"20212:11:43"}]},"documentation":{"id":14171,"nodeType":"StructuredDocumentation","src":"19453:339:43","text":" @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":14222,"implemented":true,"kind":"function","modifiers":[],"name":"_upperBinaryLookup","nameLocation":"19806:18:43","nodeType":"FunctionDefinition","parameters":{"id":14182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14175,"mutability":"mutable","name":"self","nameLocation":"19858:4:43","nodeType":"VariableDeclaration","scope":14222,"src":"19834:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14173,"nodeType":"UserDefinedTypeName","pathNode":{"id":14172,"name":"Checkpoint160","nameLocations":["19834:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"19834:13:43"},"referencedDeclaration":13775,"src":"19834:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14174,"nodeType":"ArrayTypeName","src":"19834:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14177,"mutability":"mutable","name":"key","nameLocation":"19879:3:43","nodeType":"VariableDeclaration","scope":14222,"src":"19872:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14176,"name":"uint96","nodeType":"ElementaryTypeName","src":"19872:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14179,"mutability":"mutable","name":"low","nameLocation":"19900:3:43","nodeType":"VariableDeclaration","scope":14222,"src":"19892:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14178,"name":"uint256","nodeType":"ElementaryTypeName","src":"19892:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14181,"mutability":"mutable","name":"high","nameLocation":"19921:4:43","nodeType":"VariableDeclaration","scope":14222,"src":"19913:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14180,"name":"uint256","nodeType":"ElementaryTypeName","src":"19913:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19824:107:43"},"returnParameters":{"id":14185,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14184,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14222,"src":"19954:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14183,"name":"uint256","nodeType":"ElementaryTypeName","src":"19954:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19953:9:43"},"scope":14290,"src":"19797:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":14273,"nodeType":"Block","src":"20747:267:43","statements":[{"body":{"id":14269,"nodeType":"Block","src":"20776:211:43","statements":[{"assignments":[14242],"declarations":[{"constant":false,"id":14242,"mutability":"mutable","name":"mid","nameLocation":"20798:3:43","nodeType":"VariableDeclaration","scope":14269,"src":"20790:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14241,"name":"uint256","nodeType":"ElementaryTypeName","src":"20790:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14248,"initialValue":{"arguments":[{"id":14245,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14231,"src":"20817:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14246,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14233,"src":"20822:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14243,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"20804:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":14244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20809:7:43","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":9452,"src":"20804:12:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":14247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20804:23:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20790:37:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":14250,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14227,"src":"20859:4:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},{"id":14251,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14242,"src":"20865:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14249,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13241,13765,14289],"referencedDeclaration":14289,"src":"20845:13:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$13775_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20845:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14253,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20870:4:43","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13772,"src":"20845:29:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14254,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14229,"src":"20877:3:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"20845:35:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14267,"nodeType":"Block","src":"20934:43:43","statements":[{"expression":{"id":14265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14263,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14233,"src":"20952:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14264,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14242,"src":"20959:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20952:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14266,"nodeType":"ExpressionStatement","src":"20952:10:43"}]},"id":14268,"nodeType":"IfStatement","src":"20841:136:43","trueBody":{"id":14262,"nodeType":"Block","src":"20882:46:43","statements":[{"expression":{"id":14260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14256,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14231,"src":"20900:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14257,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14242,"src":"20906:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20912:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20906:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20900:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14261,"nodeType":"ExpressionStatement","src":"20900:13:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14238,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14231,"src":"20764:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14239,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14233,"src":"20770:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20764:10:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14270,"nodeType":"WhileStatement","src":"20757:230:43"},{"expression":{"id":14271,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14233,"src":"21003:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14237,"id":14272,"nodeType":"Return","src":"20996:11:43"}]},"documentation":{"id":14223,"nodeType":"StructuredDocumentation","src":"20236:340:43","text":" @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":14274,"implemented":true,"kind":"function","modifiers":[],"name":"_lowerBinaryLookup","nameLocation":"20590:18:43","nodeType":"FunctionDefinition","parameters":{"id":14234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14227,"mutability":"mutable","name":"self","nameLocation":"20642:4:43","nodeType":"VariableDeclaration","scope":14274,"src":"20618:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14225,"nodeType":"UserDefinedTypeName","pathNode":{"id":14224,"name":"Checkpoint160","nameLocations":["20618:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"20618:13:43"},"referencedDeclaration":13775,"src":"20618:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14226,"nodeType":"ArrayTypeName","src":"20618:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14229,"mutability":"mutable","name":"key","nameLocation":"20663:3:43","nodeType":"VariableDeclaration","scope":14274,"src":"20656:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14228,"name":"uint96","nodeType":"ElementaryTypeName","src":"20656:6:43","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14231,"mutability":"mutable","name":"low","nameLocation":"20684:3:43","nodeType":"VariableDeclaration","scope":14274,"src":"20676:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14230,"name":"uint256","nodeType":"ElementaryTypeName","src":"20676:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14233,"mutability":"mutable","name":"high","nameLocation":"20705:4:43","nodeType":"VariableDeclaration","scope":14274,"src":"20697:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14232,"name":"uint256","nodeType":"ElementaryTypeName","src":"20697:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20608:107:43"},"returnParameters":{"id":14237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14236,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14274,"src":"20738:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14235,"name":"uint256","nodeType":"ElementaryTypeName","src":"20738:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20737:9:43"},"scope":14290,"src":"20581:433:43","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":14288,"nodeType":"Block","src":"21297:125:43","statements":[{"AST":{"nodeType":"YulBlock","src":"21316:100:43","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21337:1:43","type":"","value":"0"},{"name":"self.slot","nodeType":"YulIdentifier","src":"21340:9:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21330:6:43"},"nodeType":"YulFunctionCall","src":"21330:20:43"},"nodeType":"YulExpressionStatement","src":"21330:20:43"},{"nodeType":"YulAssignment","src":"21363:43:43","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21392:1:43","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"21395:4:43","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"21382:9:43"},"nodeType":"YulFunctionCall","src":"21382:18:43"},{"name":"pos","nodeType":"YulIdentifier","src":"21402:3:43"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21378:3:43"},"nodeType":"YulFunctionCall","src":"21378:28:43"},"variableNames":[{"name":"result.slot","nodeType":"YulIdentifier","src":"21363:11:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":14281,"isOffset":false,"isSlot":false,"src":"21402:3:43","valueSize":1},{"declaration":14285,"isOffset":false,"isSlot":true,"src":"21363:11:43","suffix":"slot","valueSize":1},{"declaration":14279,"isOffset":false,"isSlot":true,"src":"21340:9:43","suffix":"slot","valueSize":1}],"id":14287,"nodeType":"InlineAssembly","src":"21307:109:43"}]},"documentation":{"id":14275,"nodeType":"StructuredDocumentation","src":"21020:132:43","text":" @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds."},"id":14289,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeAccess","nameLocation":"21166:13:43","nodeType":"FunctionDefinition","parameters":{"id":14282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14279,"mutability":"mutable","name":"self","nameLocation":"21213:4:43","nodeType":"VariableDeclaration","scope":14289,"src":"21189:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14277,"nodeType":"UserDefinedTypeName","pathNode":{"id":14276,"name":"Checkpoint160","nameLocations":["21189:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"21189:13:43"},"referencedDeclaration":13775,"src":"21189:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14278,"nodeType":"ArrayTypeName","src":"21189:15:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$13775_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14281,"mutability":"mutable","name":"pos","nameLocation":"21235:3:43","nodeType":"VariableDeclaration","scope":14289,"src":"21227:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14280,"name":"uint256","nodeType":"ElementaryTypeName","src":"21227:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21179:65:43"},"returnParameters":{"id":14286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14285,"mutability":"mutable","name":"result","nameLocation":"21289:6:43","nodeType":"VariableDeclaration","scope":14289,"src":"21267:28:43","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14284,"nodeType":"UserDefinedTypeName","pathNode":{"id":14283,"name":"Checkpoint160","nameLocations":["21267:13:43"],"nodeType":"IdentifierPath","referencedDeclaration":13775,"src":"21267:13:43"},"referencedDeclaration":13775,"src":"21267:13:43","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$13775_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"src":"21266:30:43"},"scope":14290,"src":"21157:265:43","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":14291,"src":"668:20756:43","usedErrors":[12717],"usedEvents":[]}],"src":"201:21224:43"},"id":43},"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol","exportedSymbols":{"DoubleEndedQueue":[14645],"Panic":[6860]},"id":14646,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":14292,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"117:24:44"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":14294,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14646,"sourceUnit":6861,"src":"143:35:44","symbolAliases":[{"foreign":{"id":14293,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"151:5:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"DoubleEndedQueue","contractDependencies":[],"contractKind":"library","documentation":{"id":14295,"nodeType":"StructuredDocumentation","src":"180:638:44","text":" @dev A sequence of items with the ability to efficiently push and pop items (i.e. insert and remove) on both ends of\n the sequence (called front and back). Among other access patterns, it can be used to implement efficient LIFO and\n FIFO queues. Storage use is optimized, and all operations are O(1) constant time. This includes {clear}, given that\n the existing queue contents are left in storage.\n The struct is called `Bytes32Deque`. Other types can be cast to and from `bytes32`. This data structure can only be\n used in storage, and not in memory.\n ```solidity\n DoubleEndedQueue.Bytes32Deque queue;\n ```"},"fullyImplemented":true,"id":14645,"linearizedBaseContracts":[14645],"name":"DoubleEndedQueue","nameLocation":"827:16:44","nodeType":"ContractDefinition","nodes":[{"canonicalName":"DoubleEndedQueue.Bytes32Deque","documentation":{"id":14296,"nodeType":"StructuredDocumentation","src":"850:513:44","text":" @dev Indices are 128 bits so begin and end are packed in a single storage slot for efficient access.\n Struct members have an underscore prefix indicating that they are \"private\" and should not be read or written to\n directly. Use the functions provided below instead. Modifying the struct manually may violate assumptions and\n lead to unexpected behavior.\n The first item is at data[begin] and the last item is at data[end - 1]. This range can wrap around."},"id":14305,"members":[{"constant":false,"id":14298,"mutability":"mutable","name":"_begin","nameLocation":"1406:6:44","nodeType":"VariableDeclaration","scope":14305,"src":"1398:14:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14297,"name":"uint128","nodeType":"ElementaryTypeName","src":"1398:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":14300,"mutability":"mutable","name":"_end","nameLocation":"1430:4:44","nodeType":"VariableDeclaration","scope":14305,"src":"1422:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14299,"name":"uint128","nodeType":"ElementaryTypeName","src":"1422:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":14304,"mutability":"mutable","name":"_data","nameLocation":"1478:5:44","nodeType":"VariableDeclaration","scope":14305,"src":"1444:39:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"},"typeName":{"id":14303,"keyName":"index","keyNameLocation":"1460:5:44","keyType":{"id":14301,"name":"uint128","nodeType":"ElementaryTypeName","src":"1452:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Mapping","src":"1444:33:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":14302,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1469:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},"visibility":"internal"}],"name":"Bytes32Deque","nameLocation":"1375:12:44","nodeType":"StructDefinition","scope":14645,"src":"1368:122:44","visibility":"public"},{"body":{"id":14350,"nodeType":"Block","src":"1707:247:44","statements":[{"id":14349,"nodeType":"UncheckedBlock","src":"1717:231:44","statements":[{"assignments":[14315],"declarations":[{"constant":false,"id":14315,"mutability":"mutable","name":"backIndex","nameLocation":"1749:9:44","nodeType":"VariableDeclaration","scope":14349,"src":"1741:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14314,"name":"uint128","nodeType":"ElementaryTypeName","src":"1741:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":14318,"initialValue":{"expression":{"id":14316,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14309,"src":"1761:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14317,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1767:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"1761:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"1741:30:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14319,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14315,"src":"1789:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1801:1:44","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1789:13:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14322,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14309,"src":"1806:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14323,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1812:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"1806:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1789:29:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14332,"nodeType":"IfStatement","src":"1785:68:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14328,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"1832:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14329,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1838:14:44","memberName":"RESOURCE_ERROR","nodeType":"MemberAccess","referencedDeclaration":6847,"src":"1832:20:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14325,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"1820:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1826:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"1820:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1820:33:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14331,"nodeType":"ExpressionStatement","src":"1820:33:44"}},{"expression":{"id":14339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":14333,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14309,"src":"1867:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14336,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1873:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"1867:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14337,"indexExpression":{"id":14335,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14315,"src":"1879:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1867:22:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14338,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14311,"src":"1892:5:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"1867:30:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14340,"nodeType":"ExpressionStatement","src":"1867:30:44"},{"expression":{"id":14347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14341,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14309,"src":"1911:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14343,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1917:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"1911:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14344,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14315,"src":"1924:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14345,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1936:1:44","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1924:13:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1911:26:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14348,"nodeType":"ExpressionStatement","src":"1911:26:44"}]}]},"documentation":{"id":14306,"nodeType":"StructuredDocumentation","src":"1496:136:44","text":" @dev Inserts an item at the end of the queue.\n Reverts with {Panic-RESOURCE_ERROR} if the queue is full."},"id":14351,"implemented":true,"kind":"function","modifiers":[],"name":"pushBack","nameLocation":"1646:8:44","nodeType":"FunctionDefinition","parameters":{"id":14312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14309,"mutability":"mutable","name":"deque","nameLocation":"1676:5:44","nodeType":"VariableDeclaration","scope":14351,"src":"1655:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14308,"nodeType":"UserDefinedTypeName","pathNode":{"id":14307,"name":"Bytes32Deque","nameLocations":["1655:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"1655:12:44"},"referencedDeclaration":14305,"src":"1655:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"},{"constant":false,"id":14311,"mutability":"mutable","name":"value","nameLocation":"1691:5:44","nodeType":"VariableDeclaration","scope":14351,"src":"1683:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14310,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1683:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1654:43:44"},"returnParameters":{"id":14313,"nodeType":"ParameterList","parameters":[],"src":"1707:0:44"},"scope":14645,"src":"1637:317:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14400,"nodeType":"Block","src":"2197:308:44","statements":[{"id":14399,"nodeType":"UncheckedBlock","src":"2207:292:44","statements":[{"assignments":[14361],"declarations":[{"constant":false,"id":14361,"mutability":"mutable","name":"backIndex","nameLocation":"2239:9:44","nodeType":"VariableDeclaration","scope":14399,"src":"2231:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14360,"name":"uint128","nodeType":"ElementaryTypeName","src":"2231:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":14364,"initialValue":{"expression":{"id":14362,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2251:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14363,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2257:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"2251:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"2231:30:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14365,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14361,"src":"2279:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14366,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2292:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14367,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2298:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"2292:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2279:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14376,"nodeType":"IfStatement","src":"2275:65:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14372,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"2318:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14373,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2324:15:44","memberName":"EMPTY_ARRAY_POP","nodeType":"MemberAccess","referencedDeclaration":6839,"src":"2318:21:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14369,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"2306:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2312:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"2306:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2306:34:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14375,"nodeType":"ExpressionStatement","src":"2306:34:44"}},{"expression":{"id":14378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2354:11:44","subExpression":{"id":14377,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14361,"src":"2356:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14379,"nodeType":"ExpressionStatement","src":"2354:11:44"},{"expression":{"id":14385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14380,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14358,"src":"2379:5:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"id":14381,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2387:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14382,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2393:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"2387:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14384,"indexExpression":{"id":14383,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14361,"src":"2399:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2387:22:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2379:30:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14386,"nodeType":"ExpressionStatement","src":"2379:30:44"},{"expression":{"id":14391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"2423:29:44","subExpression":{"baseExpression":{"expression":{"id":14387,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2430:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14388,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2436:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"2430:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14390,"indexExpression":{"id":14389,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14361,"src":"2442:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2430:22:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14392,"nodeType":"ExpressionStatement","src":"2423:29:44"},{"expression":{"id":14397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14393,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2466:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14395,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2472:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"2466:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14396,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14361,"src":"2479:9:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2466:22:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14398,"nodeType":"ExpressionStatement","src":"2466:22:44"}]}]},"documentation":{"id":14352,"nodeType":"StructuredDocumentation","src":"1960:154:44","text":" @dev Removes the item at the end of the queue and returns it.\n Reverts with {Panic-EMPTY_ARRAY_POP} if the queue is empty."},"id":14401,"implemented":true,"kind":"function","modifiers":[],"name":"popBack","nameLocation":"2128:7:44","nodeType":"FunctionDefinition","parameters":{"id":14356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14355,"mutability":"mutable","name":"deque","nameLocation":"2157:5:44","nodeType":"VariableDeclaration","scope":14401,"src":"2136:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14354,"nodeType":"UserDefinedTypeName","pathNode":{"id":14353,"name":"Bytes32Deque","nameLocations":["2136:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"2136:12:44"},"referencedDeclaration":14305,"src":"2136:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"2135:28:44"},"returnParameters":{"id":14359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14358,"mutability":"mutable","name":"value","nameLocation":"2190:5:44","nodeType":"VariableDeclaration","scope":14401,"src":"2182:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14357,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2182:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2181:15:44"},"scope":14645,"src":"2119:386:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14444,"nodeType":"Block","src":"2729:249:44","statements":[{"id":14443,"nodeType":"UncheckedBlock","src":"2739:233:44","statements":[{"assignments":[14411],"declarations":[{"constant":false,"id":14411,"mutability":"mutable","name":"frontIndex","nameLocation":"2771:10:44","nodeType":"VariableDeclaration","scope":14443,"src":"2763:18:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14410,"name":"uint128","nodeType":"ElementaryTypeName","src":"2763:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":14416,"initialValue":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14412,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14405,"src":"2784:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14413,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2790:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"2784:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2799:1:44","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2784:16:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"2763:37:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14417,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14411,"src":"2818:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14418,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14405,"src":"2832:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14419,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2838:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"2832:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2818:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14428,"nodeType":"IfStatement","src":"2814:63:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14424,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"2856:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14425,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2862:14:44","memberName":"RESOURCE_ERROR","nodeType":"MemberAccess","referencedDeclaration":6847,"src":"2856:20:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14421,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"2844:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2850:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"2844:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:33:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14427,"nodeType":"ExpressionStatement","src":"2844:33:44"}},{"expression":{"id":14435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":14429,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14405,"src":"2891:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14432,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2897:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"2891:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14433,"indexExpression":{"id":14431,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14411,"src":"2903:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2891:23:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14434,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14407,"src":"2917:5:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2891:31:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14436,"nodeType":"ExpressionStatement","src":"2891:31:44"},{"expression":{"id":14441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14437,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14405,"src":"2936:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14439,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2942:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"2936:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14440,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14411,"src":"2951:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2936:25:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14442,"nodeType":"ExpressionStatement","src":"2936:25:44"}]}]},"documentation":{"id":14402,"nodeType":"StructuredDocumentation","src":"2511:142:44","text":" @dev Inserts an item at the beginning of the queue.\n Reverts with {Panic-RESOURCE_ERROR} if the queue is full."},"id":14445,"implemented":true,"kind":"function","modifiers":[],"name":"pushFront","nameLocation":"2667:9:44","nodeType":"FunctionDefinition","parameters":{"id":14408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14405,"mutability":"mutable","name":"deque","nameLocation":"2698:5:44","nodeType":"VariableDeclaration","scope":14445,"src":"2677:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14404,"nodeType":"UserDefinedTypeName","pathNode":{"id":14403,"name":"Bytes32Deque","nameLocations":["2677:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"2677:12:44"},"referencedDeclaration":14305,"src":"2677:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"},{"constant":false,"id":14407,"mutability":"mutable","name":"value","nameLocation":"2713:5:44","nodeType":"VariableDeclaration","scope":14445,"src":"2705:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14406,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2705:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2676:43:44"},"returnParameters":{"id":14409,"nodeType":"ParameterList","parameters":[],"src":"2729:0:44"},"scope":14645,"src":"2658:320:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14493,"nodeType":"Block","src":"3228:294:44","statements":[{"id":14492,"nodeType":"UncheckedBlock","src":"3238:278:44","statements":[{"assignments":[14455],"declarations":[{"constant":false,"id":14455,"mutability":"mutable","name":"frontIndex","nameLocation":"3270:10:44","nodeType":"VariableDeclaration","scope":14492,"src":"3262:18:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14454,"name":"uint128","nodeType":"ElementaryTypeName","src":"3262:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":14458,"initialValue":{"expression":{"id":14456,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"3283:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14457,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3289:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"3283:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"3262:33:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14459,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14455,"src":"3313:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14460,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"3327:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14461,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3333:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"3327:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"3313:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14470,"nodeType":"IfStatement","src":"3309:64:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14466,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"3351:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14467,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3357:15:44","memberName":"EMPTY_ARRAY_POP","nodeType":"MemberAccess","referencedDeclaration":6839,"src":"3351:21:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14463,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"3339:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3345:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"3339:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3339:34:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14469,"nodeType":"ExpressionStatement","src":"3339:34:44"}},{"expression":{"id":14476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14471,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14452,"src":"3387:5:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"id":14472,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"3395:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14473,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3401:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"3395:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14475,"indexExpression":{"id":14474,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14455,"src":"3407:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3395:23:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3387:31:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14477,"nodeType":"ExpressionStatement","src":"3387:31:44"},{"expression":{"id":14482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"3432:30:44","subExpression":{"baseExpression":{"expression":{"id":14478,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"3439:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14479,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3445:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"3439:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14481,"indexExpression":{"id":14480,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14455,"src":"3451:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3439:23:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14483,"nodeType":"ExpressionStatement","src":"3432:30:44"},{"expression":{"id":14490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14484,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"3476:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14486,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3482:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"3476:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14487,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14455,"src":"3491:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14488,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3504:1:44","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3491:14:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"3476:29:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14491,"nodeType":"ExpressionStatement","src":"3476:29:44"}]}]},"documentation":{"id":14446,"nodeType":"StructuredDocumentation","src":"2984:160:44","text":" @dev Removes the item at the beginning of the queue and returns it.\n Reverts with {Panic-EMPTY_ARRAY_POP} if the queue is empty."},"id":14494,"implemented":true,"kind":"function","modifiers":[],"name":"popFront","nameLocation":"3158:8:44","nodeType":"FunctionDefinition","parameters":{"id":14450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14449,"mutability":"mutable","name":"deque","nameLocation":"3188:5:44","nodeType":"VariableDeclaration","scope":14494,"src":"3167:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14448,"nodeType":"UserDefinedTypeName","pathNode":{"id":14447,"name":"Bytes32Deque","nameLocations":["3167:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"3167:12:44"},"referencedDeclaration":14305,"src":"3167:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"3166:28:44"},"returnParameters":{"id":14453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14452,"mutability":"mutable","name":"value","nameLocation":"3221:5:44","nodeType":"VariableDeclaration","scope":14494,"src":"3213:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14451,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3213:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3212:15:44"},"scope":14645,"src":"3149:373:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14520,"nodeType":"Block","src":"3763:115:44","statements":[{"condition":{"arguments":[{"id":14504,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14498,"src":"3783:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}],"id":14503,"name":"empty","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14644,"src":"3777:5:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$_t_bool_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (bool)"}},"id":14505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3777:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14513,"nodeType":"IfStatement","src":"3773:56:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14509,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"3803:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14510,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3809:19:44","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":6843,"src":"3803:25:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14506,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"3791:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3797:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"3791:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3791:38:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14512,"nodeType":"ExpressionStatement","src":"3791:38:44"}},{"expression":{"baseExpression":{"expression":{"id":14514,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14498,"src":"3846:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14515,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3852:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"3846:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14518,"indexExpression":{"expression":{"id":14516,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14498,"src":"3858:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14517,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3864:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"3858:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3846:25:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14502,"id":14519,"nodeType":"Return","src":"3839:32:44"}]},"documentation":{"id":14495,"nodeType":"StructuredDocumentation","src":"3528:149:44","text":" @dev Returns the item at the beginning of the queue.\n Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the queue is empty."},"id":14521,"implemented":true,"kind":"function","modifiers":[],"name":"front","nameLocation":"3691:5:44","nodeType":"FunctionDefinition","parameters":{"id":14499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14498,"mutability":"mutable","name":"deque","nameLocation":"3718:5:44","nodeType":"VariableDeclaration","scope":14521,"src":"3697:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14497,"nodeType":"UserDefinedTypeName","pathNode":{"id":14496,"name":"Bytes32Deque","nameLocations":["3697:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"3697:12:44"},"referencedDeclaration":14305,"src":"3697:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"3696:28:44"},"returnParameters":{"id":14502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14501,"mutability":"mutable","name":"value","nameLocation":"3756:5:44","nodeType":"VariableDeclaration","scope":14521,"src":"3748:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14500,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3748:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3747:15:44"},"scope":14645,"src":"3682:196:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14550,"nodeType":"Block","src":"4112:151:44","statements":[{"condition":{"arguments":[{"id":14531,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14525,"src":"4132:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}],"id":14530,"name":"empty","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14644,"src":"4126:5:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$_t_bool_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (bool)"}},"id":14532,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4126:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14540,"nodeType":"IfStatement","src":"4122:56:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14536,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4152:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14537,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4158:19:44","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":6843,"src":"4152:25:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14533,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4140:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4146:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"4140:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4140:38:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14539,"nodeType":"ExpressionStatement","src":"4140:38:44"}},{"id":14549,"nodeType":"UncheckedBlock","src":"4188:69:44","statements":[{"expression":{"baseExpression":{"expression":{"id":14541,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14525,"src":"4219:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14542,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4225:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"4219:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14547,"indexExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14543,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14525,"src":"4231:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14544,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4237:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"4231:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4244:1:44","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4231:14:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4219:27:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14529,"id":14548,"nodeType":"Return","src":"4212:34:44"}]}]},"documentation":{"id":14522,"nodeType":"StructuredDocumentation","src":"3884:143:44","text":" @dev Returns the item at the end of the queue.\n Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the queue is empty."},"id":14551,"implemented":true,"kind":"function","modifiers":[],"name":"back","nameLocation":"4041:4:44","nodeType":"FunctionDefinition","parameters":{"id":14526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14525,"mutability":"mutable","name":"deque","nameLocation":"4067:5:44","nodeType":"VariableDeclaration","scope":14551,"src":"4046:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14524,"nodeType":"UserDefinedTypeName","pathNode":{"id":14523,"name":"Bytes32Deque","nameLocations":["4046:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"4046:12:44"},"referencedDeclaration":14305,"src":"4046:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"4045:28:44"},"returnParameters":{"id":14529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14528,"mutability":"mutable","name":"value","nameLocation":"4105:5:44","nodeType":"VariableDeclaration","scope":14551,"src":"4097:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14527,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4097:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4096:15:44"},"scope":14645,"src":"4032:231:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14587,"nodeType":"Block","src":"4607:297:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14562,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14557,"src":"4621:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"arguments":[{"id":14564,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14555,"src":"4637:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}],"id":14563,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14628,"src":"4630:6:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14305_storage_ptr_$returns$_t_uint256_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (uint256)"}},"id":14565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4630:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4621:22:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14574,"nodeType":"IfStatement","src":"4617:66:44","trueBody":{"expression":{"arguments":[{"expression":{"id":14570,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4657:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14571,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4663:19:44","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":6843,"src":"4657:25:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14567,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6860,"src":"4645:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$6860_$","typeString":"type(library Panic)"}},"id":14569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4651:5:44","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":6859,"src":"4645:11:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4645:38:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14573,"nodeType":"ExpressionStatement","src":"4645:38:44"}},{"id":14586,"nodeType":"UncheckedBlock","src":"4814:84:44","statements":[{"expression":{"baseExpression":{"expression":{"id":14575,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14555,"src":"4845:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14576,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4851:5:44","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14304,"src":"4845:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14584,"indexExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14577,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14555,"src":"4857:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14578,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4863:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"4857:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"id":14581,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14557,"src":"4880:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14580,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4872:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":14579,"name":"uint128","nodeType":"ElementaryTypeName","src":"4872:7:44","typeDescriptions":{}}},"id":14582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4872:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"4857:29:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4845:42:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14561,"id":14585,"nodeType":"Return","src":"4838:49:44"}]}]},"documentation":{"id":14552,"nodeType":"StructuredDocumentation","src":"4269:240:44","text":" @dev Return the item at a position in the queue given by `index`, with the first item at 0 and last item at\n `length(deque) - 1`.\n Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the index is out of bounds."},"id":14588,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"4523:2:44","nodeType":"FunctionDefinition","parameters":{"id":14558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14555,"mutability":"mutable","name":"deque","nameLocation":"4547:5:44","nodeType":"VariableDeclaration","scope":14588,"src":"4526:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14554,"nodeType":"UserDefinedTypeName","pathNode":{"id":14553,"name":"Bytes32Deque","nameLocations":["4526:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"4526:12:44"},"referencedDeclaration":14305,"src":"4526:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"},{"constant":false,"id":14557,"mutability":"mutable","name":"index","nameLocation":"4562:5:44","nodeType":"VariableDeclaration","scope":14588,"src":"4554:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14556,"name":"uint256","nodeType":"ElementaryTypeName","src":"4554:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4525:43:44"},"returnParameters":{"id":14561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14560,"mutability":"mutable","name":"value","nameLocation":"4600:5:44","nodeType":"VariableDeclaration","scope":14588,"src":"4592:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14559,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4592:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4591:15:44"},"scope":14645,"src":"4514:390:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14607,"nodeType":"Block","src":"5193:57:44","statements":[{"expression":{"id":14599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14595,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14592,"src":"5203:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14597,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5209:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"5203:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":14598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5218:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5203:16:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14600,"nodeType":"ExpressionStatement","src":"5203:16:44"},{"expression":{"id":14605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14601,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14592,"src":"5229:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14603,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5235:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"5229:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":14604,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5242:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5229:14:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14606,"nodeType":"ExpressionStatement","src":"5229:14:44"}]},"documentation":{"id":14589,"nodeType":"StructuredDocumentation","src":"4910:226:44","text":" @dev Resets the queue back to being empty.\n NOTE: The current items are left behind in storage. This does not affect the functioning of the queue, but misses\n out on potential gas refunds."},"id":14608,"implemented":true,"kind":"function","modifiers":[],"name":"clear","nameLocation":"5150:5:44","nodeType":"FunctionDefinition","parameters":{"id":14593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14592,"mutability":"mutable","name":"deque","nameLocation":"5177:5:44","nodeType":"VariableDeclaration","scope":14608,"src":"5156:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14591,"nodeType":"UserDefinedTypeName","pathNode":{"id":14590,"name":"Bytes32Deque","nameLocations":["5156:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"5156:12:44"},"referencedDeclaration":14305,"src":"5156:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"5155:28:44"},"returnParameters":{"id":14594,"nodeType":"ParameterList","parameters":[],"src":"5193:0:44"},"scope":14645,"src":"5141:109:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14627,"nodeType":"Block","src":"5402:92:44","statements":[{"id":14626,"nodeType":"UncheckedBlock","src":"5412:76:44","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14619,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14612,"src":"5451:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14620,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5457:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"5451:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":14621,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14612,"src":"5464:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14622,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5470:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"5464:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"5451:25:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":14618,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5443:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":14617,"name":"uint256","nodeType":"ElementaryTypeName","src":"5443:7:44","typeDescriptions":{}}},"id":14624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5443:34:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14616,"id":14625,"nodeType":"Return","src":"5436:41:44"}]}]},"documentation":{"id":14609,"nodeType":"StructuredDocumentation","src":"5256:65:44","text":" @dev Returns the number of items in the queue."},"id":14628,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"5335:6:44","nodeType":"FunctionDefinition","parameters":{"id":14613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14612,"mutability":"mutable","name":"deque","nameLocation":"5363:5:44","nodeType":"VariableDeclaration","scope":14628,"src":"5342:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14611,"nodeType":"UserDefinedTypeName","pathNode":{"id":14610,"name":"Bytes32Deque","nameLocations":["5342:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"5342:12:44"},"referencedDeclaration":14305,"src":"5342:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"5341:28:44"},"returnParameters":{"id":14616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14615,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14628,"src":"5393:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14614,"name":"uint256","nodeType":"ElementaryTypeName","src":"5393:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5392:9:44"},"scope":14645,"src":"5326:168:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14643,"nodeType":"Block","src":"5636:50:44","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14637,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14632,"src":"5653:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14638,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5659:4:44","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14300,"src":"5653:10:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14639,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14632,"src":"5667:5:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14640,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5673:6:44","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14298,"src":"5667:12:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"5653:26:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14636,"id":14642,"nodeType":"Return","src":"5646:33:44"}]},"documentation":{"id":14629,"nodeType":"StructuredDocumentation","src":"5500:59:44","text":" @dev Returns true if the queue is empty."},"id":14644,"implemented":true,"kind":"function","modifiers":[],"name":"empty","nameLocation":"5573:5:44","nodeType":"FunctionDefinition","parameters":{"id":14633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14632,"mutability":"mutable","name":"deque","nameLocation":"5600:5:44","nodeType":"VariableDeclaration","scope":14644,"src":"5579:26:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14631,"nodeType":"UserDefinedTypeName","pathNode":{"id":14630,"name":"Bytes32Deque","nameLocations":["5579:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":14305,"src":"5579:12:44"},"referencedDeclaration":14305,"src":"5579:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14305_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"5578:28:44"},"returnParameters":{"id":14636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14635,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14644,"src":"5630:4:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14634,"name":"bool","nodeType":"ElementaryTypeName","src":"5630:4:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5629:6:44"},"scope":14645,"src":"5564:122:44","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":14646,"src":"819:4869:44","usedErrors":[],"usedEvents":[]}],"src":"117:5572:44"},"id":44},"@openzeppelin/contracts/utils/types/Time.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","exportedSymbols":{"Math":[10800],"SafeCast":[12565],"Time":[14919]},"id":14920,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":14647,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"104:24:45"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../math/Math.sol","id":14649,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14920,"sourceUnit":10801,"src":"130:38:45","symbolAliases":[{"foreign":{"id":14648,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"138:4:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../math/SafeCast.sol","id":14651,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14920,"sourceUnit":12566,"src":"169:46:45","symbolAliases":[{"foreign":{"id":14650,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"177:8:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Time","contractDependencies":[],"contractKind":"library","documentation":{"id":14652,"nodeType":"StructuredDocumentation","src":"217:422:45","text":" @dev This library provides helpers for manipulating time-related objects.\n It uses the following types:\n - `uint48` for timepoints\n - `uint32` for durations\n While the library doesn't provide specific types for timepoints and duration, it does provide:\n - a `Delay` type to represent duration that can be programmed to change value automatically at a given point\n - additional helper functions"},"fullyImplemented":true,"id":14919,"linearizedBaseContracts":[14919],"name":"Time","nameLocation":"648:4:45","nodeType":"ContractDefinition","nodes":[{"global":false,"id":14654,"libraryName":{"id":14653,"name":"Time","nameLocations":["665:4:45"],"nodeType":"IdentifierPath","referencedDeclaration":14919,"src":"665:4:45"},"nodeType":"UsingForDirective","src":"659:17:45"},{"body":{"id":14666,"nodeType":"Block","src":"802:58:45","statements":[{"expression":{"arguments":[{"expression":{"id":14662,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"837:5:45","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":14663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"843:9:45","memberName":"timestamp","nodeType":"MemberAccess","src":"837:15:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14660,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"819:8:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":14661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"828:8:45","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"819:17:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":14664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"819:34:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":14659,"id":14665,"nodeType":"Return","src":"812:41:45"}]},"documentation":{"id":14655,"nodeType":"StructuredDocumentation","src":"682:63:45","text":" @dev Get the block timestamp as a Timepoint."},"id":14667,"implemented":true,"kind":"function","modifiers":[],"name":"timestamp","nameLocation":"759:9:45","nodeType":"FunctionDefinition","parameters":{"id":14656,"nodeType":"ParameterList","parameters":[],"src":"768:2:45"},"returnParameters":{"id":14659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14658,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14667,"src":"794:6:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14657,"name":"uint48","nodeType":"ElementaryTypeName","src":"794:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"793:8:45"},"scope":14919,"src":"750:110:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14679,"nodeType":"Block","src":"985:55:45","statements":[{"expression":{"arguments":[{"expression":{"id":14675,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1020:5:45","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":14676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1026:6:45","memberName":"number","nodeType":"MemberAccess","src":"1020:12:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14673,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12565,"src":"1002:8:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$12565_$","typeString":"type(library SafeCast)"}},"id":14674,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1011:8:45","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":11555,"src":"1002:17:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":14677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1002:31:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":14672,"id":14678,"nodeType":"Return","src":"995:38:45"}]},"documentation":{"id":14668,"nodeType":"StructuredDocumentation","src":"866:60:45","text":" @dev Get the block number as a Timepoint."},"id":14680,"implemented":true,"kind":"function","modifiers":[],"name":"blockNumber","nameLocation":"940:11:45","nodeType":"FunctionDefinition","parameters":{"id":14669,"nodeType":"ParameterList","parameters":[],"src":"951:2:45"},"returnParameters":{"id":14672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14671,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14680,"src":"977:6:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14670,"name":"uint48","nodeType":"ElementaryTypeName","src":"977:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"976:8:45"},"scope":14919,"src":"931:109:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"canonicalName":"Time.Delay","id":14682,"name":"Delay","nameLocation":"2377:5:45","nodeType":"UserDefinedValueTypeDefinition","src":"2372:22:45","underlyingType":{"id":14681,"name":"uint112","nodeType":"ElementaryTypeName","src":"2386:7:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}},{"body":{"id":14696,"nodeType":"Block","src":"2572:44:45","statements":[{"expression":{"arguments":[{"id":14693,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14685,"src":"2600:8:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":14691,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14682,"src":"2589:5:45","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$14682_$","typeString":"type(Time.Delay)"}},"id":14692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2595:4:45","memberName":"wrap","nodeType":"MemberAccess","src":"2589:10:45","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":14694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2589:20:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"functionReturnParameters":14690,"id":14695,"nodeType":"Return","src":"2582:27:45"}]},"documentation":{"id":14683,"nodeType":"StructuredDocumentation","src":"2400:103:45","text":" @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature"},"id":14697,"implemented":true,"kind":"function","modifiers":[],"name":"toDelay","nameLocation":"2517:7:45","nodeType":"FunctionDefinition","parameters":{"id":14686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14685,"mutability":"mutable","name":"duration","nameLocation":"2532:8:45","nodeType":"VariableDeclaration","scope":14697,"src":"2525:15:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14684,"name":"uint32","nodeType":"ElementaryTypeName","src":"2525:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2524:17:45"},"returnParameters":{"id":14690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14689,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14697,"src":"2565:5:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14688,"nodeType":"UserDefinedTypeName","pathNode":{"id":14687,"name":"Delay","nameLocations":["2565:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"2565:5:45"},"referencedDeclaration":14682,"src":"2565:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"2564:7:45"},"scope":14919,"src":"2508:108:45","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14734,"nodeType":"Block","src":"3016:159:45","statements":[{"expression":{"id":14719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":14712,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14706,"src":"3027:11:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14713,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14708,"src":"3040:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14714,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14710,"src":"3052:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":14715,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"3026:33:45","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":14716,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14701,"src":"3062:4:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"id":14717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3067:6:45","memberName":"unpack","nodeType":"MemberAccess","referencedDeclaration":14880,"src":"3062:11:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$14682_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (Time.Delay) pure returns (uint32,uint32,uint48)"}},"id":14718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3062:13:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"3026:49:45","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14720,"nodeType":"ExpressionStatement","src":"3026:49:45"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":14723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14721,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14710,"src":"3092:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":14722,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14703,"src":"3102:9:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3092:19:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"id":14728,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14706,"src":"3136:11:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14729,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14708,"src":"3149:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14730,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14710,"src":"3161:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":14731,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3135:33:45","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"id":14732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3092:76:45","trueExpression":{"components":[{"id":14724,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14708,"src":"3115:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":14725,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3127:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":14726,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3130:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":14727,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3114:18:45","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(uint32,int_const 0,int_const 0)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":14711,"id":14733,"nodeType":"Return","src":"3085:83:45"}]},"documentation":{"id":14698,"nodeType":"StructuredDocumentation","src":"2622:241:45","text":" @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled\n change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered."},"id":14735,"implemented":true,"kind":"function","modifiers":[],"name":"_getFullAt","nameLocation":"2877:10:45","nodeType":"FunctionDefinition","parameters":{"id":14704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14701,"mutability":"mutable","name":"self","nameLocation":"2903:4:45","nodeType":"VariableDeclaration","scope":14735,"src":"2897:10:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14700,"nodeType":"UserDefinedTypeName","pathNode":{"id":14699,"name":"Delay","nameLocations":["2897:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"2897:5:45"},"referencedDeclaration":14682,"src":"2897:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":14703,"mutability":"mutable","name":"timepoint","nameLocation":"2924:9:45","nodeType":"VariableDeclaration","scope":14735,"src":"2917:16:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14702,"name":"uint48","nodeType":"ElementaryTypeName","src":"2917:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2887:52:45"},"returnParameters":{"id":14711,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14706,"mutability":"mutable","name":"valueBefore","nameLocation":"2969:11:45","nodeType":"VariableDeclaration","scope":14735,"src":"2962:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14705,"name":"uint32","nodeType":"ElementaryTypeName","src":"2962:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14708,"mutability":"mutable","name":"valueAfter","nameLocation":"2989:10:45","nodeType":"VariableDeclaration","scope":14735,"src":"2982:17:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14707,"name":"uint32","nodeType":"ElementaryTypeName","src":"2982:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14710,"mutability":"mutable","name":"effect","nameLocation":"3008:6:45","nodeType":"VariableDeclaration","scope":14735,"src":"3001:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14709,"name":"uint48","nodeType":"ElementaryTypeName","src":"3001:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2961:54:45"},"scope":14919,"src":"2868:307:45","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":14754,"nodeType":"Block","src":"3499:53:45","statements":[{"expression":{"arguments":[{"id":14749,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14739,"src":"3527:4:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},{"arguments":[],"expression":{"argumentTypes":[],"id":14750,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14667,"src":"3533:9:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":14751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3533:11:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":14748,"name":"_getFullAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14735,"src":"3516:10:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$14682_$_t_uint48_$returns$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (Time.Delay,uint48) pure returns (uint32,uint32,uint48)"}},"id":14752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3516:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":14747,"id":14753,"nodeType":"Return","src":"3509:36:45"}]},"documentation":{"id":14736,"nodeType":"StructuredDocumentation","src":"3181:207:45","text":" @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the\n effect timepoint is 0, then the pending value should not be considered."},"id":14755,"implemented":true,"kind":"function","modifiers":[],"name":"getFull","nameLocation":"3402:7:45","nodeType":"FunctionDefinition","parameters":{"id":14740,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14739,"mutability":"mutable","name":"self","nameLocation":"3416:4:45","nodeType":"VariableDeclaration","scope":14755,"src":"3410:10:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14738,"nodeType":"UserDefinedTypeName","pathNode":{"id":14737,"name":"Delay","nameLocations":["3410:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"3410:5:45"},"referencedDeclaration":14682,"src":"3410:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3409:12:45"},"returnParameters":{"id":14747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14742,"mutability":"mutable","name":"valueBefore","nameLocation":"3452:11:45","nodeType":"VariableDeclaration","scope":14755,"src":"3445:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14741,"name":"uint32","nodeType":"ElementaryTypeName","src":"3445:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14744,"mutability":"mutable","name":"valueAfter","nameLocation":"3472:10:45","nodeType":"VariableDeclaration","scope":14755,"src":"3465:17:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14743,"name":"uint32","nodeType":"ElementaryTypeName","src":"3465:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14746,"mutability":"mutable","name":"effect","nameLocation":"3491:6:45","nodeType":"VariableDeclaration","scope":14755,"src":"3484:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14745,"name":"uint48","nodeType":"ElementaryTypeName","src":"3484:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3444:54:45"},"scope":14919,"src":"3393:159:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14772,"nodeType":"Block","src":"3665:74:45","statements":[{"assignments":[14765,null,null],"declarations":[{"constant":false,"id":14765,"mutability":"mutable","name":"delay","nameLocation":"3683:5:45","nodeType":"VariableDeclaration","scope":14772,"src":"3676:12:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14764,"name":"uint32","nodeType":"ElementaryTypeName","src":"3676:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":14769,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":14766,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14759,"src":"3696:4:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"id":14767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3701:7:45","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":14755,"src":"3696:12:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$14682_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":14768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3696:14:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"3675:35:45"},{"expression":{"id":14770,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14765,"src":"3727:5:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":14763,"id":14771,"nodeType":"Return","src":"3720:12:45"}]},"documentation":{"id":14756,"nodeType":"StructuredDocumentation","src":"3558:46:45","text":" @dev Get the current value."},"id":14773,"implemented":true,"kind":"function","modifiers":[],"name":"get","nameLocation":"3618:3:45","nodeType":"FunctionDefinition","parameters":{"id":14760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14759,"mutability":"mutable","name":"self","nameLocation":"3628:4:45","nodeType":"VariableDeclaration","scope":14773,"src":"3622:10:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14758,"nodeType":"UserDefinedTypeName","pathNode":{"id":14757,"name":"Delay","nameLocations":["3622:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"3622:5:45"},"referencedDeclaration":14682,"src":"3622:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3621:12:45"},"returnParameters":{"id":14763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14762,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14773,"src":"3657:6:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14761,"name":"uint32","nodeType":"ElementaryTypeName","src":"3657:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3656:8:45"},"scope":14919,"src":"3609:130:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14828,"nodeType":"Block","src":"4189:234:45","statements":[{"assignments":[14790],"declarations":[{"constant":false,"id":14790,"mutability":"mutable","name":"value","nameLocation":"4206:5:45","nodeType":"VariableDeclaration","scope":14828,"src":"4199:12:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14789,"name":"uint32","nodeType":"ElementaryTypeName","src":"4199:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":14794,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":14791,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14777,"src":"4214:4:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"id":14792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4219:3:45","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":14773,"src":"4214:8:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$14682_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":14793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4214:10:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4199:25:45"},{"assignments":[14796],"declarations":[{"constant":false,"id":14796,"mutability":"mutable","name":"setback","nameLocation":"4241:7:45","nodeType":"VariableDeclaration","scope":14828,"src":"4234:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14795,"name":"uint32","nodeType":"ElementaryTypeName","src":"4234:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":14812,"initialValue":{"arguments":[{"arguments":[{"id":14801,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14781,"src":"4267:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":14804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14802,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14790,"src":"4279:5:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14803,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14779,"src":"4287:8:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4279:16:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":14808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4317:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":14809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4279:39:45","trueExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":14807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14805,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14790,"src":"4298:5:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":14806,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14779,"src":"4306:8:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4298:16:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":14799,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10800,"src":"4258:4:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$10800_$","typeString":"type(library Math)"}},"id":14800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4263:3:45","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":9410,"src":"4258:8:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":14810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4258:61:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14798,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4251:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":14797,"name":"uint32","nodeType":"ElementaryTypeName","src":"4251:6:45","typeDescriptions":{}}},"id":14811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4251:69:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4234:86:45"},{"expression":{"id":14818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14813,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14787,"src":"4330:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":14817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":14814,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14667,"src":"4339:9:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":14815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4339:11:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":14816,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14796,"src":"4353:7:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4339:21:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4330:30:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":14819,"nodeType":"ExpressionStatement","src":"4330:30:45"},{"expression":{"components":[{"arguments":[{"id":14821,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14790,"src":"4383:5:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14822,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14779,"src":"4390:8:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14823,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14787,"src":"4400:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":14820,"name":"pack","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14918,"src":"4378:4:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint48_$returns$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (uint32,uint32,uint48) pure returns (Time.Delay)"}},"id":14824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4378:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},{"id":14825,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14787,"src":"4409:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":14826,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4377:39:45","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$14682_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"functionReturnParameters":14788,"id":14827,"nodeType":"Return","src":"4370:46:45"}]},"documentation":{"id":14774,"nodeType":"StructuredDocumentation","src":"3745:283:45","text":" @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to\n enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the\n new delay becomes effective."},"id":14829,"implemented":true,"kind":"function","modifiers":[],"name":"withUpdate","nameLocation":"4042:10:45","nodeType":"FunctionDefinition","parameters":{"id":14782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14777,"mutability":"mutable","name":"self","nameLocation":"4068:4:45","nodeType":"VariableDeclaration","scope":14829,"src":"4062:10:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14776,"nodeType":"UserDefinedTypeName","pathNode":{"id":14775,"name":"Delay","nameLocations":["4062:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"4062:5:45"},"referencedDeclaration":14682,"src":"4062:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":14779,"mutability":"mutable","name":"newValue","nameLocation":"4089:8:45","nodeType":"VariableDeclaration","scope":14829,"src":"4082:15:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14778,"name":"uint32","nodeType":"ElementaryTypeName","src":"4082:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14781,"mutability":"mutable","name":"minSetback","nameLocation":"4114:10:45","nodeType":"VariableDeclaration","scope":14829,"src":"4107:17:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14780,"name":"uint32","nodeType":"ElementaryTypeName","src":"4107:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4052:78:45"},"returnParameters":{"id":14788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14785,"mutability":"mutable","name":"updatedDelay","nameLocation":"4160:12:45","nodeType":"VariableDeclaration","scope":14829,"src":"4154:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14784,"nodeType":"UserDefinedTypeName","pathNode":{"id":14783,"name":"Delay","nameLocations":["4154:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"4154:5:45"},"referencedDeclaration":14682,"src":"4154:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":14787,"mutability":"mutable","name":"effect","nameLocation":"4181:6:45","nodeType":"VariableDeclaration","scope":14829,"src":"4174:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14786,"name":"uint48","nodeType":"ElementaryTypeName","src":"4174:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4153:35:45"},"scope":14919,"src":"4033:390:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14879,"nodeType":"Block","src":"4656:212:45","statements":[{"assignments":[14843],"declarations":[{"constant":false,"id":14843,"mutability":"mutable","name":"raw","nameLocation":"4674:3:45","nodeType":"VariableDeclaration","scope":14879,"src":"4666:11:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":14842,"name":"uint112","nodeType":"ElementaryTypeName","src":"4666:7:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"id":14848,"initialValue":{"arguments":[{"id":14846,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14833,"src":"4693:4:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}],"expression":{"id":14844,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14682,"src":"4680:5:45","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$14682_$","typeString":"type(Time.Delay)"}},"id":14845,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4686:6:45","memberName":"unwrap","nodeType":"MemberAccess","src":"4680:12:45","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Delay_$14682_$returns$_t_uint112_$","typeString":"function (Time.Delay) pure returns (uint112)"}},"id":14847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4680:18:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"VariableDeclarationStatement","src":"4666:32:45"},{"expression":{"id":14854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14849,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14838,"src":"4709:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":14852,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14843,"src":"4729:3:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":14851,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4722:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":14850,"name":"uint32","nodeType":"ElementaryTypeName","src":"4722:6:45","typeDescriptions":{}}},"id":14853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4722:11:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4709:24:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":14855,"nodeType":"ExpressionStatement","src":"4709:24:45"},{"expression":{"id":14863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14856,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14836,"src":"4743:11:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14859,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14843,"src":"4764:3:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":14860,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4771:2:45","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"4764:9:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":14858,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4757:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":14857,"name":"uint32","nodeType":"ElementaryTypeName","src":"4757:6:45","typeDescriptions":{}}},"id":14862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4757:17:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4743:31:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":14864,"nodeType":"ExpressionStatement","src":"4743:31:45"},{"expression":{"id":14872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14865,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14840,"src":"4784:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14868,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14843,"src":"4800:3:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":14869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4807:2:45","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"4800:9:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":14867,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4793:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":14866,"name":"uint48","nodeType":"ElementaryTypeName","src":"4793:6:45","typeDescriptions":{}}},"id":14871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4793:17:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4784:26:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":14873,"nodeType":"ExpressionStatement","src":"4784:26:45"},{"expression":{"components":[{"id":14874,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14836,"src":"4829:11:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14875,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14838,"src":"4842:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":14876,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14840,"src":"4854:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":14877,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4828:33:45","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":14841,"id":14878,"nodeType":"Return","src":"4821:40:45"}]},"documentation":{"id":14830,"nodeType":"StructuredDocumentation","src":"4429:117:45","text":" @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint)."},"id":14880,"implemented":true,"kind":"function","modifiers":[],"name":"unpack","nameLocation":"4560:6:45","nodeType":"FunctionDefinition","parameters":{"id":14834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14833,"mutability":"mutable","name":"self","nameLocation":"4573:4:45","nodeType":"VariableDeclaration","scope":14880,"src":"4567:10:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14832,"nodeType":"UserDefinedTypeName","pathNode":{"id":14831,"name":"Delay","nameLocations":["4567:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"4567:5:45"},"referencedDeclaration":14682,"src":"4567:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"4566:12:45"},"returnParameters":{"id":14841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14836,"mutability":"mutable","name":"valueBefore","nameLocation":"4609:11:45","nodeType":"VariableDeclaration","scope":14880,"src":"4602:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14835,"name":"uint32","nodeType":"ElementaryTypeName","src":"4602:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14838,"mutability":"mutable","name":"valueAfter","nameLocation":"4629:10:45","nodeType":"VariableDeclaration","scope":14880,"src":"4622:17:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14837,"name":"uint32","nodeType":"ElementaryTypeName","src":"4622:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14840,"mutability":"mutable","name":"effect","nameLocation":"4648:6:45","nodeType":"VariableDeclaration","scope":14880,"src":"4641:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14839,"name":"uint48","nodeType":"ElementaryTypeName","src":"4641:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4601:54:45"},"scope":14919,"src":"4551:317:45","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14917,"nodeType":"Block","src":"5041:112:45","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14897,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14887,"src":"5078:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":14896,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5070:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":14895,"name":"uint112","nodeType":"ElementaryTypeName","src":"5070:7:45","typeDescriptions":{}}},"id":14898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5070:15:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":14899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5089:2:45","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"5070:21:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":14901,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5069:23:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":14907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14904,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14883,"src":"5104:11:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":14903,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5096:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":14902,"name":"uint112","nodeType":"ElementaryTypeName","src":"5096:7:45","typeDescriptions":{}}},"id":14905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5096:20:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":14906,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5120:2:45","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"5096:26:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":14908,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5095:28:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5069:54:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"id":14912,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14885,"src":"5134:10:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":14911,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5126:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":14910,"name":"uint112","nodeType":"ElementaryTypeName","src":"5126:7:45","typeDescriptions":{}}},"id":14913,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5126:19:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5069:76:45","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"expression":{"id":14893,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14682,"src":"5058:5:45","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$14682_$","typeString":"type(Time.Delay)"}},"id":14894,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5064:4:45","memberName":"wrap","nodeType":"MemberAccess","src":"5058:10:45","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$14682_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":14915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5058:88:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"functionReturnParameters":14892,"id":14916,"nodeType":"Return","src":"5051:95:45"}]},"documentation":{"id":14881,"nodeType":"StructuredDocumentation","src":"4874:64:45","text":" @dev pack the components into a Delay object."},"id":14918,"implemented":true,"kind":"function","modifiers":[],"name":"pack","nameLocation":"4952:4:45","nodeType":"FunctionDefinition","parameters":{"id":14888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14883,"mutability":"mutable","name":"valueBefore","nameLocation":"4964:11:45","nodeType":"VariableDeclaration","scope":14918,"src":"4957:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14882,"name":"uint32","nodeType":"ElementaryTypeName","src":"4957:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14885,"mutability":"mutable","name":"valueAfter","nameLocation":"4984:10:45","nodeType":"VariableDeclaration","scope":14918,"src":"4977:17:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14884,"name":"uint32","nodeType":"ElementaryTypeName","src":"4977:6:45","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14887,"mutability":"mutable","name":"effect","nameLocation":"5003:6:45","nodeType":"VariableDeclaration","scope":14918,"src":"4996:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14886,"name":"uint48","nodeType":"ElementaryTypeName","src":"4996:6:45","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4956:54:45"},"returnParameters":{"id":14892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14891,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14918,"src":"5034:5:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"},"typeName":{"id":14890,"nodeType":"UserDefinedTypeName","pathNode":{"id":14889,"name":"Delay","nameLocations":["5034:5:45"],"nodeType":"IdentifierPath","referencedDeclaration":14682,"src":"5034:5:45"},"referencedDeclaration":14682,"src":"5034:5:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$14682","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"5033:7:45"},"scope":14919,"src":"4943:210:45","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":14920,"src":"640:4515:45","usedErrors":[],"usedEvents":[]}],"src":"104:5052:45"},"id":45},"contracts/DLE.sol":{"ast":{"absolutePath":"contracts/DLE.sol","exportedSymbols":{"Address":[6688],"Checkpoints":[14290],"Context":[6718],"DLE":[15715],"DoubleEndedQueue":[14645],"EIP712":[8976],"ERC165":[9182],"ERC20":[6147],"ERC20Votes":[6357],"Governor":[2134],"GovernorCountingSimple":[3840],"GovernorSettings":[4021],"GovernorTimelockControl":[4366],"GovernorVotes":[4482],"GovernorVotesQuorumFraction":[4677],"IERC1155Receiver":[5551],"IERC165":[9194],"IERC6372":[5372],"IERC721Receiver":[6401],"IGovernor":[2588],"IVotes":[4760],"Nonces":[6808],"SafeCast":[12565],"SignatureChecker":[9158],"Strings":[8401],"TimelockController":[3608],"Votes":[5303]},"id":15716,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":14921,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:46"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol","id":14922,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15716,"sourceUnit":6358,"src":"58:71:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"@openzeppelin/contracts/governance/Governor.sol","id":14923,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15716,"sourceUnit":2135,"src":"130:57:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol","id":14924,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15716,"sourceUnit":4022,"src":"188:76:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol","id":14925,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15716,"sourceUnit":3841,"src":"265:82:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol","id":14926,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15716,"sourceUnit":4678,"src":"348:87:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol","id":14927,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15716,"sourceUnit":4367,"src":"436:83:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","file":"@openzeppelin/contracts/governance/utils/IVotes.sol","id":14928,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15716,"sourceUnit":4761,"src":"520:61:46","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"@openzeppelin/contracts/utils/Nonces.sol","id":14929,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15716,"sourceUnit":6809,"src":"582:50:46","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":14931,"name":"ERC20Votes","nameLocations":["803:10:46"],"nodeType":"IdentifierPath","referencedDeclaration":6357,"src":"803:10:46"},"id":14932,"nodeType":"InheritanceSpecifier","src":"803:10:46"},{"baseName":{"id":14933,"name":"Governor","nameLocations":["820:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"820:8:46"},"id":14934,"nodeType":"InheritanceSpecifier","src":"820:8:46"},{"baseName":{"id":14935,"name":"GovernorSettings","nameLocations":["835:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":4021,"src":"835:16:46"},"id":14936,"nodeType":"InheritanceSpecifier","src":"835:16:46"},{"baseName":{"id":14937,"name":"GovernorCountingSimple","nameLocations":["858:22:46"],"nodeType":"IdentifierPath","referencedDeclaration":3840,"src":"858:22:46"},"id":14938,"nodeType":"InheritanceSpecifier","src":"858:22:46"},{"baseName":{"id":14939,"name":"GovernorVotesQuorumFraction","nameLocations":["887:27:46"],"nodeType":"IdentifierPath","referencedDeclaration":4677,"src":"887:27:46"},"id":14940,"nodeType":"InheritanceSpecifier","src":"887:27:46"},{"baseName":{"id":14941,"name":"GovernorTimelockControl","nameLocations":["921:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"921:23:46"},"id":14942,"nodeType":"InheritanceSpecifier","src":"921:23:46"}],"canonicalName":"DLE","contractDependencies":[],"contractKind":"contract","documentation":{"id":14930,"nodeType":"StructuredDocumentation","src":"634:147:46","text":" @title DLE (Digital Legal Entity)\n @dev Основной контракт DLE с отдельным модулем TimelockController."},"fullyImplemented":true,"id":15715,"internalFunctionIDs":{"5280":1,"5294":2},"linearizedBaseContracts":[15715,4366,4677,4482,3840,4021,2134,5551,6401,2588,6357,5303,5357,4760,5372,6808,8976,5346,9182,9194,6147,5414,6383,6225,6718],"name":"DLE","nameLocation":"791:3:46","nodeType":"ContractDefinition","nodes":[{"canonicalName":"DLE.DLEInfo","id":14964,"members":[{"constant":false,"id":14944,"mutability":"mutable","name":"name","nameLocation":"984:4:46","nodeType":"VariableDeclaration","scope":14964,"src":"977:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14943,"name":"string","nodeType":"ElementaryTypeName","src":"977:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14946,"mutability":"mutable","name":"symbol","nameLocation":"1005:6:46","nodeType":"VariableDeclaration","scope":14964,"src":"998:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14945,"name":"string","nodeType":"ElementaryTypeName","src":"998:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14948,"mutability":"mutable","name":"location","nameLocation":"1028:8:46","nodeType":"VariableDeclaration","scope":14964,"src":"1021:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14947,"name":"string","nodeType":"ElementaryTypeName","src":"1021:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14950,"mutability":"mutable","name":"coordinates","nameLocation":"1053:11:46","nodeType":"VariableDeclaration","scope":14964,"src":"1046:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14949,"name":"string","nodeType":"ElementaryTypeName","src":"1046:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14952,"mutability":"mutable","name":"jurisdiction","nameLocation":"1082:12:46","nodeType":"VariableDeclaration","scope":14964,"src":"1074:20:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14951,"name":"uint256","nodeType":"ElementaryTypeName","src":"1074:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14954,"mutability":"mutable","name":"oktmo","nameLocation":"1112:5:46","nodeType":"VariableDeclaration","scope":14964,"src":"1104:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14953,"name":"uint256","nodeType":"ElementaryTypeName","src":"1104:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14957,"mutability":"mutable","name":"okvedCodes","nameLocation":"1136:10:46","nodeType":"VariableDeclaration","scope":14964,"src":"1127:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":14955,"name":"string","nodeType":"ElementaryTypeName","src":"1127:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":14956,"nodeType":"ArrayTypeName","src":"1127:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":14959,"mutability":"mutable","name":"kpp","nameLocation":"1164:3:46","nodeType":"VariableDeclaration","scope":14964,"src":"1156:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14958,"name":"uint256","nodeType":"ElementaryTypeName","src":"1156:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14961,"mutability":"mutable","name":"creationTimestamp","nameLocation":"1185:17:46","nodeType":"VariableDeclaration","scope":14964,"src":"1177:25:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14960,"name":"uint256","nodeType":"ElementaryTypeName","src":"1177:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14963,"mutability":"mutable","name":"isActive","nameLocation":"1217:8:46","nodeType":"VariableDeclaration","scope":14964,"src":"1212:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14962,"name":"bool","nodeType":"ElementaryTypeName","src":"1212:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"DLEInfo","nameLocation":"959:7:46","nodeType":"StructDefinition","scope":15715,"src":"952:280:46","visibility":"public"},{"canonicalName":"DLE.DLEConfig","id":14990,"members":[{"constant":false,"id":14966,"mutability":"mutable","name":"name","nameLocation":"1272:4:46","nodeType":"VariableDeclaration","scope":14990,"src":"1265:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14965,"name":"string","nodeType":"ElementaryTypeName","src":"1265:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14968,"mutability":"mutable","name":"symbol","nameLocation":"1293:6:46","nodeType":"VariableDeclaration","scope":14990,"src":"1286:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14967,"name":"string","nodeType":"ElementaryTypeName","src":"1286:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14970,"mutability":"mutable","name":"location","nameLocation":"1316:8:46","nodeType":"VariableDeclaration","scope":14990,"src":"1309:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14969,"name":"string","nodeType":"ElementaryTypeName","src":"1309:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14972,"mutability":"mutable","name":"coordinates","nameLocation":"1341:11:46","nodeType":"VariableDeclaration","scope":14990,"src":"1334:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":14971,"name":"string","nodeType":"ElementaryTypeName","src":"1334:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":14974,"mutability":"mutable","name":"jurisdiction","nameLocation":"1370:12:46","nodeType":"VariableDeclaration","scope":14990,"src":"1362:20:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14973,"name":"uint256","nodeType":"ElementaryTypeName","src":"1362:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14976,"mutability":"mutable","name":"oktmo","nameLocation":"1400:5:46","nodeType":"VariableDeclaration","scope":14990,"src":"1392:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14975,"name":"uint256","nodeType":"ElementaryTypeName","src":"1392:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14979,"mutability":"mutable","name":"okvedCodes","nameLocation":"1424:10:46","nodeType":"VariableDeclaration","scope":14990,"src":"1415:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":14977,"name":"string","nodeType":"ElementaryTypeName","src":"1415:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":14978,"nodeType":"ArrayTypeName","src":"1415:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":14981,"mutability":"mutable","name":"kpp","nameLocation":"1452:3:46","nodeType":"VariableDeclaration","scope":14990,"src":"1444:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14980,"name":"uint256","nodeType":"ElementaryTypeName","src":"1444:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14983,"mutability":"mutable","name":"votingDelay","nameLocation":"1472:11:46","nodeType":"VariableDeclaration","scope":14990,"src":"1465:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14982,"name":"uint48","nodeType":"ElementaryTypeName","src":"1465:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":14985,"mutability":"mutable","name":"votingPeriod","nameLocation":"1500:12:46","nodeType":"VariableDeclaration","scope":14990,"src":"1493:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14984,"name":"uint32","nodeType":"ElementaryTypeName","src":"1493:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":14987,"mutability":"mutable","name":"proposalThreshold","nameLocation":"1530:17:46","nodeType":"VariableDeclaration","scope":14990,"src":"1522:25:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14986,"name":"uint256","nodeType":"ElementaryTypeName","src":"1522:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14989,"mutability":"mutable","name":"quorumPercentage","nameLocation":"1565:16:46","nodeType":"VariableDeclaration","scope":14990,"src":"1557:24:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14988,"name":"uint256","nodeType":"ElementaryTypeName","src":"1557:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"DLEConfig","nameLocation":"1245:9:46","nodeType":"StructDefinition","scope":15715,"src":"1238:350:46","visibility":"public"},{"canonicalName":"DLE.Proposal","id":15011,"members":[{"constant":false,"id":14992,"mutability":"mutable","name":"operation","nameLocation":"1626:9:46","nodeType":"VariableDeclaration","scope":15011,"src":"1620:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":14991,"name":"bytes","nodeType":"ElementaryTypeName","src":"1620:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":14995,"mutability":"mutable","name":"targetChains","nameLocation":"1655:12:46","nodeType":"VariableDeclaration","scope":15011,"src":"1645:22:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":14993,"name":"uint256","nodeType":"ElementaryTypeName","src":"1645:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14994,"nodeType":"ArrayTypeName","src":"1645:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":14997,"mutability":"mutable","name":"timelock","nameLocation":"1685:8:46","nodeType":"VariableDeclaration","scope":15011,"src":"1677:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14996,"name":"uint256","nodeType":"ElementaryTypeName","src":"1677:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14999,"mutability":"mutable","name":"governanceChain","nameLocation":"1711:15:46","nodeType":"VariableDeclaration","scope":15011,"src":"1703:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14998,"name":"uint256","nodeType":"ElementaryTypeName","src":"1703:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15001,"mutability":"mutable","name":"initiator","nameLocation":"1744:9:46","nodeType":"VariableDeclaration","scope":15011,"src":"1736:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15000,"name":"address","nodeType":"ElementaryTypeName","src":"1736:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15004,"mutability":"mutable","name":"signatures","nameLocation":"1771:10:46","nodeType":"VariableDeclaration","scope":15011,"src":"1763:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":15002,"name":"bytes","nodeType":"ElementaryTypeName","src":"1763:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15003,"nodeType":"ArrayTypeName","src":"1763:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":15006,"mutability":"mutable","name":"executed","nameLocation":"1796:8:46","nodeType":"VariableDeclaration","scope":15011,"src":"1791:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15005,"name":"bool","nodeType":"ElementaryTypeName","src":"1791:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":15008,"mutability":"mutable","name":"quorumRequired","nameLocation":"1822:14:46","nodeType":"VariableDeclaration","scope":15011,"src":"1814:22:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15007,"name":"uint256","nodeType":"ElementaryTypeName","src":"1814:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15010,"mutability":"mutable","name":"signaturesCount","nameLocation":"1854:15:46","nodeType":"VariableDeclaration","scope":15011,"src":"1846:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15009,"name":"uint256","nodeType":"ElementaryTypeName","src":"1846:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Proposal","nameLocation":"1601:8:46","nodeType":"StructDefinition","scope":15715,"src":"1594:282:46","visibility":"public"},{"constant":false,"functionSelector":"f2c26a47","id":15014,"mutability":"mutable","name":"dleInfo","nameLocation":"1897:7:46","nodeType":"VariableDeclaration","scope":15715,"src":"1882:22:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$14964_storage","typeString":"struct DLE.DLEInfo"},"typeName":{"id":15013,"nodeType":"UserDefinedTypeName","pathNode":{"id":15012,"name":"DLEInfo","nameLocations":["1882:7:46"],"nodeType":"IdentifierPath","referencedDeclaration":14964,"src":"1882:7:46"},"referencedDeclaration":14964,"src":"1882:7:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$14964_storage_ptr","typeString":"struct DLE.DLEInfo"}},"visibility":"public"},{"constant":false,"functionSelector":"013cf08b","id":15019,"mutability":"mutable","name":"proposals","nameLocation":"1946:9:46","nodeType":"VariableDeclaration","scope":15715,"src":"1910:45:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$15011_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal)"},"typeName":{"id":15018,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":15015,"name":"uint256","nodeType":"ElementaryTypeName","src":"1918:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1910:28:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$15011_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":15017,"nodeType":"UserDefinedTypeName","pathNode":{"id":15016,"name":"Proposal","nameLocations":["1929:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":15011,"src":"1929:8:46"},"referencedDeclaration":15011,"src":"1929:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal"}}},"visibility":"public"},{"constant":false,"functionSelector":"0c0512e9","id":15021,"mutability":"mutable","name":"proposalCounter","nameLocation":"1976:15:46","nodeType":"VariableDeclaration","scope":15715,"src":"1961:30:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15020,"name":"uint256","nodeType":"ElementaryTypeName","src":"1961:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"4fa76ec9","id":15023,"mutability":"mutable","name":"quorumPercentage","nameLocation":"2012:16:46","nodeType":"VariableDeclaration","scope":15715,"src":"1997:31:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15022,"name":"uint256","nodeType":"ElementaryTypeName","src":"1997:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"anonymous":false,"eventSelector":"5cc2d55798cee8f02a1864e506ff754519b7fbe25d3bd5258441c00b83b7bb04","id":15048,"name":"DLEInitialized","nameLocation":"2041:14:46","nodeType":"EventDefinition","parameters":{"id":15047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15025,"indexed":false,"mutability":"mutable","name":"name","nameLocation":"2072:4:46","nodeType":"VariableDeclaration","scope":15048,"src":"2065:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15024,"name":"string","nodeType":"ElementaryTypeName","src":"2065:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15027,"indexed":false,"mutability":"mutable","name":"symbol","nameLocation":"2093:6:46","nodeType":"VariableDeclaration","scope":15048,"src":"2086:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15026,"name":"string","nodeType":"ElementaryTypeName","src":"2086:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15029,"indexed":false,"mutability":"mutable","name":"location","nameLocation":"2116:8:46","nodeType":"VariableDeclaration","scope":15048,"src":"2109:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15028,"name":"string","nodeType":"ElementaryTypeName","src":"2109:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15031,"indexed":false,"mutability":"mutable","name":"coordinates","nameLocation":"2141:11:46","nodeType":"VariableDeclaration","scope":15048,"src":"2134:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15030,"name":"string","nodeType":"ElementaryTypeName","src":"2134:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15033,"indexed":false,"mutability":"mutable","name":"jurisdiction","nameLocation":"2170:12:46","nodeType":"VariableDeclaration","scope":15048,"src":"2162:20:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15032,"name":"uint256","nodeType":"ElementaryTypeName","src":"2162:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15035,"indexed":false,"mutability":"mutable","name":"oktmo","nameLocation":"2200:5:46","nodeType":"VariableDeclaration","scope":15048,"src":"2192:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15034,"name":"uint256","nodeType":"ElementaryTypeName","src":"2192:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15038,"indexed":false,"mutability":"mutable","name":"okvedCodes","nameLocation":"2224:10:46","nodeType":"VariableDeclaration","scope":15048,"src":"2215:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":15036,"name":"string","nodeType":"ElementaryTypeName","src":"2215:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":15037,"nodeType":"ArrayTypeName","src":"2215:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":15040,"indexed":false,"mutability":"mutable","name":"kpp","nameLocation":"2252:3:46","nodeType":"VariableDeclaration","scope":15048,"src":"2244:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15039,"name":"uint256","nodeType":"ElementaryTypeName","src":"2244:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15042,"indexed":false,"mutability":"mutable","name":"tokenAddress","nameLocation":"2273:12:46","nodeType":"VariableDeclaration","scope":15048,"src":"2265:20:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15041,"name":"address","nodeType":"ElementaryTypeName","src":"2265:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15044,"indexed":false,"mutability":"mutable","name":"timelockAddress","nameLocation":"2303:15:46","nodeType":"VariableDeclaration","scope":15048,"src":"2295:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15043,"name":"address","nodeType":"ElementaryTypeName","src":"2295:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15046,"indexed":false,"mutability":"mutable","name":"governorAddress","nameLocation":"2336:15:46","nodeType":"VariableDeclaration","scope":15048,"src":"2328:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15045,"name":"address","nodeType":"ElementaryTypeName","src":"2328:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2055:302:46"},"src":"2035:323:46"},{"anonymous":false,"eventSelector":"03be9b2a692d7f70f180696d23ab769875fec1b9ec86909e5e62e96e3d709cd0","id":15056,"name":"TokensDistributed","nameLocation":"2369:17:46","nodeType":"EventDefinition","parameters":{"id":15055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15051,"indexed":false,"mutability":"mutable","name":"partners","nameLocation":"2397:8:46","nodeType":"VariableDeclaration","scope":15056,"src":"2387:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15049,"name":"address","nodeType":"ElementaryTypeName","src":"2387:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15050,"nodeType":"ArrayTypeName","src":"2387:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15054,"indexed":false,"mutability":"mutable","name":"amounts","nameLocation":"2417:7:46","nodeType":"VariableDeclaration","scope":15056,"src":"2407:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15052,"name":"uint256","nodeType":"ElementaryTypeName","src":"2407:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15053,"nodeType":"ArrayTypeName","src":"2407:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"2386:39:46"},"src":"2363:63:46"},{"anonymous":false,"eventSelector":"2de0b4ad2878fff8e0328d13d59576e6595e750e974aec7069bd4e182d2d5aaf","id":15064,"name":"ProposalCreated","nameLocation":"2437:15:46","nodeType":"EventDefinition","parameters":{"id":15063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15058,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"2461:10:46","nodeType":"VariableDeclaration","scope":15064,"src":"2453:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15057,"name":"uint256","nodeType":"ElementaryTypeName","src":"2453:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15060,"indexed":false,"mutability":"mutable","name":"initiator","nameLocation":"2481:9:46","nodeType":"VariableDeclaration","scope":15064,"src":"2473:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15059,"name":"address","nodeType":"ElementaryTypeName","src":"2473:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15062,"indexed":false,"mutability":"mutable","name":"operation","nameLocation":"2498:9:46","nodeType":"VariableDeclaration","scope":15064,"src":"2492:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15061,"name":"bytes","nodeType":"ElementaryTypeName","src":"2492:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2452:56:46"},"src":"2431:78:46"},{"anonymous":false,"eventSelector":"9f1b808ccd95cfad6377948752267d2ad18cbd81217ec7abd183a497d47c81d1","id":15072,"name":"ProposalSigned","nameLocation":"2520:14:46","nodeType":"EventDefinition","parameters":{"id":15071,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15066,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"2543:10:46","nodeType":"VariableDeclaration","scope":15072,"src":"2535:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15065,"name":"uint256","nodeType":"ElementaryTypeName","src":"2535:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15068,"indexed":false,"mutability":"mutable","name":"signer","nameLocation":"2563:6:46","nodeType":"VariableDeclaration","scope":15072,"src":"2555:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15067,"name":"address","nodeType":"ElementaryTypeName","src":"2555:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15070,"indexed":false,"mutability":"mutable","name":"signaturesCount","nameLocation":"2579:15:46","nodeType":"VariableDeclaration","scope":15072,"src":"2571:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15069,"name":"uint256","nodeType":"ElementaryTypeName","src":"2571:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2534:61:46"},"src":"2514:82:46"},{"anonymous":false,"eventSelector":"5c84c0144a4e16e610c6c44c3571a58af67ce17b61280f57e6feeb2c363eaa60","id":15078,"name":"ModuleInstalled","nameLocation":"2607:15:46","nodeType":"EventDefinition","parameters":{"id":15077,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15074,"indexed":false,"mutability":"mutable","name":"moduleName","nameLocation":"2630:10:46","nodeType":"VariableDeclaration","scope":15078,"src":"2623:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15073,"name":"string","nodeType":"ElementaryTypeName","src":"2623:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15076,"indexed":false,"mutability":"mutable","name":"moduleAddress","nameLocation":"2650:13:46","nodeType":"VariableDeclaration","scope":15078,"src":"2642:21:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15075,"name":"address","nodeType":"ElementaryTypeName","src":"2642:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2622:42:46"},"src":"2601:64:46"},{"body":{"id":15181,"nodeType":"Block","src":"3107:825:46","statements":[{"expression":{"id":15146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15124,"name":"dleInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15014,"src":"3117:7:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$14964_storage","typeString":"struct DLE.DLEInfo storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":15126,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3155:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15127,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3162:4:46","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":14966,"src":"3155:11:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15128,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3188:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15129,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3195:6:46","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":14968,"src":"3188:13:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15130,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3225:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15131,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3232:8:46","memberName":"location","nodeType":"MemberAccess","referencedDeclaration":14970,"src":"3225:15:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15132,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3267:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15133,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3274:11:46","memberName":"coordinates","nodeType":"MemberAccess","referencedDeclaration":14972,"src":"3267:18:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15134,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3313:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15135,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3320:12:46","memberName":"jurisdiction","nodeType":"MemberAccess","referencedDeclaration":14974,"src":"3313:19:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15136,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3353:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15137,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3360:5:46","memberName":"oktmo","nodeType":"MemberAccess","referencedDeclaration":14976,"src":"3353:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15138,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3391:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15139,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3398:10:46","memberName":"okvedCodes","nodeType":"MemberAccess","referencedDeclaration":14979,"src":"3391:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"expression":{"id":15140,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3427:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15141,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3434:3:46","memberName":"kpp","nodeType":"MemberAccess","referencedDeclaration":14981,"src":"3427:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15142,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3470:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3476:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"3470:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":15144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3509:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":15125,"name":"DLEInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14964,"src":"3127:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DLEInfo_$14964_storage_ptr_$","typeString":"type(struct DLE.DLEInfo storage pointer)"}},"id":15145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["3149:4:46","3180:6:46","3215:8:46","3254:11:46","3299:12:46","3346:5:46","3379:10:46","3422:3:46","3451:17:46","3499:8:46"],"names":["name","symbol","location","coordinates","jurisdiction","oktmo","okvedCodes","kpp","creationTimestamp","isActive"],"nodeType":"FunctionCall","src":"3127:397:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$14964_memory_ptr","typeString":"struct DLE.DLEInfo memory"}},"src":"3117:407:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEInfo_$14964_storage","typeString":"struct DLE.DLEInfo storage ref"}},"id":15147,"nodeType":"ExpressionStatement","src":"3117:407:46"},{"expression":{"id":15151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15148,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15023,"src":"3534:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":15149,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3553:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15150,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3560:16:46","memberName":"quorumPercentage","nodeType":"MemberAccess","referencedDeclaration":14989,"src":"3553:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3534:42:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15152,"nodeType":"ExpressionStatement","src":"3534:42:46"},{"eventCall":{"arguments":[{"expression":{"id":15154,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3619:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3626:4:46","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":14966,"src":"3619:11:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15156,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3644:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15157,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3651:6:46","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":14968,"src":"3644:13:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15158,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3671:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15159,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3678:8:46","memberName":"location","nodeType":"MemberAccess","referencedDeclaration":14970,"src":"3671:15:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15160,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3700:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15161,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3707:11:46","memberName":"coordinates","nodeType":"MemberAccess","referencedDeclaration":14972,"src":"3700:18:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15162,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3732:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15163,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3739:12:46","memberName":"jurisdiction","nodeType":"MemberAccess","referencedDeclaration":14974,"src":"3732:19:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15164,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3765:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15165,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3772:5:46","memberName":"oktmo","nodeType":"MemberAccess","referencedDeclaration":14976,"src":"3765:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15166,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3791:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15167,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3798:10:46","memberName":"okvedCodes","nodeType":"MemberAccess","referencedDeclaration":14979,"src":"3791:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"expression":{"id":15168,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"3822:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15169,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3829:3:46","memberName":"kpp","nodeType":"MemberAccess","referencedDeclaration":14981,"src":"3822:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":15172,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3854:4:46","typeDescriptions":{"typeIdentifier":"t_contract$_DLE_$15715","typeString":"contract DLE"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_DLE_$15715","typeString":"contract DLE"}],"id":15171,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3846:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15170,"name":"address","nodeType":"ElementaryTypeName","src":"3846:7:46","typeDescriptions":{}}},"id":15173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3846:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15174,"name":"timelockAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15083,"src":"3873:15:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":15177,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3910:4:46","typeDescriptions":{"typeIdentifier":"t_contract$_DLE_$15715","typeString":"contract DLE"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_DLE_$15715","typeString":"contract DLE"}],"id":15176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3902:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15175,"name":"address","nodeType":"ElementaryTypeName","src":"3902:7:46","typeDescriptions":{}}},"id":15178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3902:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":15153,"name":"DLEInitialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15048,"src":"3591:14:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$_t_uint256_$_t_address_$_t_address_$_t_address_$returns$__$","typeString":"function (string memory,string memory,string memory,string memory,uint256,uint256,string memory[] memory,uint256,address,address,address)"}},"id":15179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3591:334:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15180,"nodeType":"EmitStatement","src":"3586:339:46"}]},"id":15182,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"expression":{"id":15086,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"2769:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15087,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2776:4:46","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":14966,"src":"2769:11:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":15088,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"2782:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15089,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2789:6:46","memberName":"symbol","nodeType":"MemberAccess","referencedDeclaration":14968,"src":"2782:13:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":15090,"kind":"baseConstructorSpecifier","modifierName":{"id":15085,"name":"ERC20","nameLocations":["2763:5:46"],"nodeType":"IdentifierPath","referencedDeclaration":6147,"src":"2763:5:46"},"nodeType":"ModifierInvocation","src":"2763:33:46"},{"arguments":[{"expression":{"id":15092,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"2814:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15093,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2821:4:46","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":14966,"src":"2814:11:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":15094,"kind":"baseConstructorSpecifier","modifierName":{"id":15091,"name":"Governor","nameLocations":["2805:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"2805:8:46"},"nodeType":"ModifierInvocation","src":"2805:21:46"},{"arguments":[{"expression":{"id":15096,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"2852:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15097,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2859:11:46","memberName":"votingDelay","nodeType":"MemberAccess","referencedDeclaration":14983,"src":"2852:18:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"expression":{"id":15098,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"2872:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15099,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2879:12:46","memberName":"votingPeriod","nodeType":"MemberAccess","referencedDeclaration":14985,"src":"2872:19:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":15100,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"2893:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15101,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2900:17:46","memberName":"proposalThreshold","nodeType":"MemberAccess","referencedDeclaration":14987,"src":"2893:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15102,"kind":"baseConstructorSpecifier","modifierName":{"id":15095,"name":"GovernorSettings","nameLocations":["2835:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":4021,"src":"2835:16:46"},"nodeType":"ModifierInvocation","src":"2835:83:46"},{"arguments":[{"expression":{"id":15104,"name":"config","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15081,"src":"2955:6:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig memory"}},"id":15105,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2962:16:46","memberName":"quorumPercentage","nodeType":"MemberAccess","referencedDeclaration":14989,"src":"2955:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15106,"kind":"baseConstructorSpecifier","modifierName":{"id":15103,"name":"GovernorVotesQuorumFraction","nameLocations":["2927:27:46"],"nodeType":"IdentifierPath","referencedDeclaration":4677,"src":"2927:27:46"},"nodeType":"ModifierInvocation","src":"2927:52:46"},{"arguments":[{"arguments":[{"arguments":[{"id":15111,"name":"timelockAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15083,"src":"3039:15:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15110,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3031:8:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":15109,"name":"address","nodeType":"ElementaryTypeName","src":"3031:8:46","stateMutability":"payable","typeDescriptions":{}}},"id":15112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3031:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"}],"id":15108,"name":"TimelockController","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3608,"src":"3012:18:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_TimelockController_$3608_$","typeString":"type(contract TimelockController)"}},"id":15113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3012:44:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3608","typeString":"contract TimelockController"}}],"id":15114,"kind":"baseConstructorSpecifier","modifierName":{"id":15107,"name":"GovernorTimelockControl","nameLocations":["2988:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"2988:23:46"},"nodeType":"ModifierInvocation","src":"2988:69:46"},{"arguments":[{"arguments":[{"arguments":[{"id":15119,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3095:4:46","typeDescriptions":{"typeIdentifier":"t_contract$_DLE_$15715","typeString":"contract DLE"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_DLE_$15715","typeString":"contract DLE"}],"id":15118,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3087:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15117,"name":"address","nodeType":"ElementaryTypeName","src":"3087:7:46","typeDescriptions":{}}},"id":15120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3087:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15116,"name":"IVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4760,"src":"3080:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IVotes_$4760_$","typeString":"type(contract IVotes)"}},"id":15121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3080:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4760","typeString":"contract IVotes"}}],"id":15122,"kind":"baseConstructorSpecifier","modifierName":{"id":15115,"name":"GovernorVotes","nameLocations":["3066:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":4482,"src":"3066:13:46"},"nodeType":"ModifierInvocation","src":"3066:36:46"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":15084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15081,"mutability":"mutable","name":"config","nameLocation":"2709:6:46","nodeType":"VariableDeclaration","scope":15182,"src":"2692:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_memory_ptr","typeString":"struct DLE.DLEConfig"},"typeName":{"id":15080,"nodeType":"UserDefinedTypeName","pathNode":{"id":15079,"name":"DLEConfig","nameLocations":["2692:9:46"],"nodeType":"IdentifierPath","referencedDeclaration":14990,"src":"2692:9:46"},"referencedDeclaration":14990,"src":"2692:9:46","typeDescriptions":{"typeIdentifier":"t_struct$_DLEConfig_$14990_storage_ptr","typeString":"struct DLE.DLEConfig"}},"visibility":"internal"},{"constant":false,"id":15083,"mutability":"mutable","name":"timelockAddress","nameLocation":"2733:15:46","nodeType":"VariableDeclaration","scope":15182,"src":"2725:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15082,"name":"address","nodeType":"ElementaryTypeName","src":"2725:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2682:72:46"},"returnParameters":{"id":15123,"nodeType":"ParameterList","parameters":[],"src":"3107:0:46"},"scope":15715,"src":"2671:1261:46","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":15256,"nodeType":"Block","src":"4057:426:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15192,"name":"_partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15185,"src":"4075:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4085:6:46","memberName":"length","nodeType":"MemberAccess","src":"4075:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15194,"name":"_amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15188,"src":"4095:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4104:6:46","memberName":"length","nodeType":"MemberAccess","src":"4095:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4075:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"417272617973206c656e677468206d69736d61746368","id":15197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4112:24:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c","typeString":"literal_string \"Arrays length mismatch\""},"value":"Arrays length mismatch"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c","typeString":"literal_string \"Arrays length mismatch\""}],"id":15191,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4067:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4067:70:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15199,"nodeType":"ExpressionStatement","src":"4067:70:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15201,"name":"_partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15185,"src":"4155:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4165:6:46","memberName":"length","nodeType":"MemberAccess","src":"4155:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4174:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4155:20:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456d70747920617272617973","id":15205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4177:14:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_920fc87d8e9a45232b5e4c2c36e3c0fff5f09b5434a80d6ec35d7f09f9d69c29","typeString":"literal_string \"Empty arrays\""},"value":"Empty arrays"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_920fc87d8e9a45232b5e4c2c36e3c0fff5f09b5434a80d6ec35d7f09f9d69c29","typeString":"literal_string \"Empty arrays\""}],"id":15200,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4147:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4147:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15207,"nodeType":"ExpressionStatement","src":"4147:45:46"},{"body":{"id":15249,"nodeType":"Block","src":"4249:175:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15220,"name":"_partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15185,"src":"4271:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15222,"indexExpression":{"id":15221,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15209,"src":"4281:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4271:12:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":15225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4295:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":15224,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4287:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15223,"name":"address","nodeType":"ElementaryTypeName","src":"4287:7:46","typeDescriptions":{}}},"id":15226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4287:10:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4271:26:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f2061646472657373","id":15228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4299:14:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_535d7636857fb1ab3a4f159f2a66b9583ce224510b4368fa2453e15bee0bc833","typeString":"literal_string \"Zero address\""},"value":"Zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_535d7636857fb1ab3a4f159f2a66b9583ce224510b4368fa2453e15bee0bc833","typeString":"literal_string \"Zero address\""}],"id":15219,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4263:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15229,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4263:51:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15230,"nodeType":"ExpressionStatement","src":"4263:51:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15232,"name":"_amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15188,"src":"4336:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15234,"indexExpression":{"id":15233,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15209,"src":"4345:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4336:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4350:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4336:15:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f20616d6f756e74","id":15237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4353:13:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_499f3f4b0ad3588aa1eb6e198be77bff643a4218ffbf2bef1370e58aadea5df4","typeString":"literal_string \"Zero amount\""},"value":"Zero amount"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_499f3f4b0ad3588aa1eb6e198be77bff643a4218ffbf2bef1370e58aadea5df4","typeString":"literal_string \"Zero amount\""}],"id":15231,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4328:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4328:39:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15239,"nodeType":"ExpressionStatement","src":"4328:39:46"},{"expression":{"arguments":[{"baseExpression":{"id":15241,"name":"_partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15185,"src":"4387:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15243,"indexExpression":{"id":15242,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15209,"src":"4397:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4387:12:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":15244,"name":"_amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15188,"src":"4401:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15246,"indexExpression":{"id":15245,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15209,"src":"4410:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4401:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15240,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5987,"src":"4381:5:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":15247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4381:32:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15248,"nodeType":"ExpressionStatement","src":"4381:32:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15212,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15209,"src":"4222:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15213,"name":"_partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15185,"src":"4226:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4236:6:46","memberName":"length","nodeType":"MemberAccess","src":"4226:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4222:20:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15250,"initializationExpression":{"assignments":[15209],"declarations":[{"constant":false,"id":15209,"mutability":"mutable","name":"i","nameLocation":"4215:1:46","nodeType":"VariableDeclaration","scope":15250,"src":"4207:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15208,"name":"uint256","nodeType":"ElementaryTypeName","src":"4207:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15211,"initialValue":{"hexValue":"30","id":15210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4219:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4207:13:46"},"loopExpression":{"expression":{"id":15217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"4244:3:46","subExpression":{"id":15216,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15209,"src":"4244:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15218,"nodeType":"ExpressionStatement","src":"4244:3:46"},"nodeType":"ForStatement","src":"4202:222:46"},{"eventCall":{"arguments":[{"id":15252,"name":"_partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15185,"src":"4456:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":15253,"name":"_amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15188,"src":"4467:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}],"id":15251,"name":"TokensDistributed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15056,"src":"4438:17:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$","typeString":"function (address[] memory,uint256[] memory)"}},"id":15254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4438:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15255,"nodeType":"EmitStatement","src":"4433:43:46"}]},"functionSelector":"824e83e1","id":15257,"implemented":true,"kind":"function","modifiers":[],"name":"distributeInitialTokens","nameLocation":"3947:23:46","nodeType":"FunctionDefinition","parameters":{"id":15189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15185,"mutability":"mutable","name":"_partners","nameLocation":"3997:9:46","nodeType":"VariableDeclaration","scope":15257,"src":"3980:26:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15183,"name":"address","nodeType":"ElementaryTypeName","src":"3980:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15184,"nodeType":"ArrayTypeName","src":"3980:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15188,"mutability":"mutable","name":"_amounts","nameLocation":"4033:8:46","nodeType":"VariableDeclaration","scope":15257,"src":"4016:25:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15186,"name":"uint256","nodeType":"ElementaryTypeName","src":"4016:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15187,"nodeType":"ArrayTypeName","src":"4016:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"3970:77:46"},"returnParameters":{"id":15190,"nodeType":"ParameterList","parameters":[],"src":"4057:0:46"},"scope":15715,"src":"3938:545:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15336,"nodeType":"Block","src":"4680:755:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15272,"name":"_operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15259,"src":"4698:10:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4709:6:46","memberName":"length","nodeType":"MemberAccess","src":"4698:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4718:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4698:21:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456d707479206f7065726174696f6e","id":15276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4721:17:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_cd09bdd42f6c1a61bf449f6e8ad93d8391047cb2fda233798b00826e24ffafac","typeString":"literal_string \"Empty operation\""},"value":"Empty operation"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cd09bdd42f6c1a61bf449f6e8ad93d8391047cb2fda233798b00826e24ffafac","typeString":"literal_string \"Empty operation\""}],"id":15271,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4690:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4690:49:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15278,"nodeType":"ExpressionStatement","src":"4690:49:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15280,"name":"_targetChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15262,"src":"4757:13:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4771:6:46","memberName":"length","nodeType":"MemberAccess","src":"4757:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4780:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4757:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456d7074792074617267657420636861696e73","id":15284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4783:21:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_0fa564c9920cbef2e2c4705af903afd7f0bc12a830b0afb83a272ea82b270921","typeString":"literal_string \"Empty target chains\""},"value":"Empty target chains"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0fa564c9920cbef2e2c4705af903afd7f0bc12a830b0afb83a272ea82b270921","typeString":"literal_string \"Empty target chains\""}],"id":15279,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4749:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4749:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15286,"nodeType":"ExpressionStatement","src":"4749:56:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15288,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15264,"src":"4823:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":15289,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4835:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4841:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"4835:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4823:27:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642074696d656c6f636b","id":15292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4852:18:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_1956dd88ccc34ec4f33505678f59b9873da158ffd0136231296e342d502bdf7f","typeString":"literal_string \"Invalid timelock\""},"value":"Invalid timelock"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1956dd88ccc34ec4f33505678f59b9873da158ffd0136231296e342d502bdf7f","typeString":"literal_string \"Invalid timelock\""}],"id":15287,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4815:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4815:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15294,"nodeType":"ExpressionStatement","src":"4815:56:46"},{"assignments":[15296],"declarations":[{"constant":false,"id":15296,"mutability":"mutable","name":"proposalId","nameLocation":"4889:10:46","nodeType":"VariableDeclaration","scope":15336,"src":"4881:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15295,"name":"uint256","nodeType":"ElementaryTypeName","src":"4881:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15299,"initialValue":{"id":15298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"4902:17:46","subExpression":{"id":15297,"name":"proposalCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15021,"src":"4902:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4881:38:46"},{"expression":{"id":15325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15300,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15019,"src":"4929:9:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$15011_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":15302,"indexExpression":{"id":15301,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15296,"src":"4939:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4929:21:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15304,"name":"_operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15259,"src":"4987:10:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":15305,"name":"_targetChains","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15262,"src":"5025:13:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":15306,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15264,"src":"5062:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15307,"name":"_governanceChain","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15266,"src":"5102:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15308,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"5143:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5147:6:46","memberName":"sender","nodeType":"MemberAccess","src":"5143:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":15313,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5191:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":15312,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5179:11:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory[] memory)"},"typeName":{"baseType":{"id":15310,"name":"bytes","nodeType":"ElementaryTypeName","src":"5183:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15311,"nodeType":"ArrayTypeName","src":"5183:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":15314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5179:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"66616c7365","id":15315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5217:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":15316,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5720,"src":"5253:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5253:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":15318,"name":"quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15023,"src":"5269:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5253:32:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15320,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5252:34:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":15321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5289:3:46","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"5252:40:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"30","id":15323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5323:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":15303,"name":"Proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15011,"src":"4953:8:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Proposal_$15011_storage_ptr_$","typeString":"type(struct DLE.Proposal storage pointer)"}},"id":15324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4976:9:46","5011:12:46","5052:8:46","5085:15:46","5132:9:46","5167:10:46","5207:8:46","5236:14:46","5306:15:46"],"names":["operation","targetChains","timelock","governanceChain","initiator","signatures","executed","quorumRequired","signaturesCount"],"nodeType":"FunctionCall","src":"4953:382:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_memory_ptr","typeString":"struct DLE.Proposal memory"}},"src":"4929:406:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage","typeString":"struct DLE.Proposal storage ref"}},"id":15326,"nodeType":"ExpressionStatement","src":"4929:406:46"},{"eventCall":{"arguments":[{"id":15328,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15296,"src":"5366:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15329,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"5378:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5382:6:46","memberName":"sender","nodeType":"MemberAccess","src":"5378:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15331,"name":"_operation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15259,"src":"5390:10:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15327,"name":"ProposalCreated","nodeType":"Identifier","overloadedDeclarations":[15064,2264],"referencedDeclaration":15064,"src":"5350:15:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (uint256,address,bytes memory)"}},"id":15332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5350:51:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15333,"nodeType":"EmitStatement","src":"5345:56:46"},{"expression":{"id":15334,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15296,"src":"5418:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15270,"id":15335,"nodeType":"Return","src":"5411:17:46"}]},"functionSelector":"d1fad4cd","id":15337,"implemented":true,"kind":"function","modifiers":[],"name":"createProposal","nameLocation":"4498:14:46","nodeType":"FunctionDefinition","parameters":{"id":15267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15259,"mutability":"mutable","name":"_operation","nameLocation":"4535:10:46","nodeType":"VariableDeclaration","scope":15337,"src":"4522:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15258,"name":"bytes","nodeType":"ElementaryTypeName","src":"4522:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15262,"mutability":"mutable","name":"_targetChains","nameLocation":"4572:13:46","nodeType":"VariableDeclaration","scope":15337,"src":"4555:30:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15260,"name":"uint256","nodeType":"ElementaryTypeName","src":"4555:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15261,"nodeType":"ArrayTypeName","src":"4555:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15264,"mutability":"mutable","name":"_timelock","nameLocation":"4603:9:46","nodeType":"VariableDeclaration","scope":15337,"src":"4595:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15263,"name":"uint256","nodeType":"ElementaryTypeName","src":"4595:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15266,"mutability":"mutable","name":"_governanceChain","nameLocation":"4630:16:46","nodeType":"VariableDeclaration","scope":15337,"src":"4622:24:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15265,"name":"uint256","nodeType":"ElementaryTypeName","src":"4622:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4512:140:46"},"returnParameters":{"id":15270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15269,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15337,"src":"4671:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15268,"name":"uint256","nodeType":"ElementaryTypeName","src":"4671:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4670:9:46"},"scope":15715,"src":"4489:946:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15419,"nodeType":"Block","src":"5493:625:46","statements":[{"assignments":[15344],"declarations":[{"constant":false,"id":15344,"mutability":"mutable","name":"proposal","nameLocation":"5520:8:46","nodeType":"VariableDeclaration","scope":15419,"src":"5503:25:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal"},"typeName":{"id":15343,"nodeType":"UserDefinedTypeName","pathNode":{"id":15342,"name":"Proposal","nameLocations":["5503:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":15011,"src":"5503:8:46"},"referencedDeclaration":15011,"src":"5503:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal"}},"visibility":"internal"}],"id":15348,"initialValue":{"baseExpression":{"id":15345,"name":"proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15019,"src":"5531:9:46","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Proposal_$15011_storage_$","typeString":"mapping(uint256 => struct DLE.Proposal storage ref)"}},"id":15347,"indexExpression":{"id":15346,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15339,"src":"5541:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5531:22:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage","typeString":"struct DLE.Proposal storage ref"}},"nodeType":"VariableDeclarationStatement","src":"5503:50:46"},{"expression":{"arguments":[{"id":15352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5571:18:46","subExpression":{"expression":{"id":15350,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15344,"src":"5572:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15351,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5581:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15006,"src":"5572:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c20616c7265616479206578656375746564","id":15353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5591:27:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""},"value":"Proposal already executed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2707e21e9aae26cb9edbd76c2d262b3de919daea0bd16a10af4500ba819ed5fd","typeString":"literal_string \"Proposal already executed\""}],"id":15349,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5563:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5563:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15355,"nodeType":"ExpressionStatement","src":"5563:56:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15357,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5637:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5643:9:46","memberName":"timestamp","nodeType":"MemberAccess","src":"5637:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15359,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15344,"src":"5655:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15360,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5664:8:46","memberName":"timelock","nodeType":"MemberAccess","referencedDeclaration":14997,"src":"5655:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5637:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f706f73616c2065787069726564","id":15362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5674:18:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_01a705e410a1149c996b4c69a0f0f64f9427d15b62a650a298a1d030b5a3d544","typeString":"literal_string \"Proposal expired\""},"value":"Proposal expired"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_01a705e410a1149c996b4c69a0f0f64f9427d15b62a650a298a1d030b5a3d544","typeString":"literal_string \"Proposal expired\""}],"id":15356,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5629:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5629:64:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15364,"nodeType":"ExpressionStatement","src":"5629:64:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":15367,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"5721:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5725:6:46","memberName":"sender","nodeType":"MemberAccess","src":"5721:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15366,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5733,"src":"5711:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5711:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5735:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5711:25:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f20746f6b656e7320746f207369676e","id":15372,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5738:19:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""},"value":"No tokens to sign"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_37e2d833e560c1ccf9c683771d8d4f9f76f0218dc9c833046d68f1d43e310ed7","typeString":"literal_string \"No tokens to sign\""}],"id":15365,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5703:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5703:55:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15374,"nodeType":"ExpressionStatement","src":"5703:55:46"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":15382,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"5810:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5814:6:46","memberName":"sender","nodeType":"MemberAccess","src":"5810:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15380,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5793:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15381,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5797:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"5793:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5793:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"expression":{"id":15375,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15344,"src":"5768:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15378,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5777:10:46","memberName":"signatures","nodeType":"MemberAccess","referencedDeclaration":15004,"src":"5768:19:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage","typeString":"bytes storage ref[] storage ref"}},"id":15379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5788:4:46","memberName":"push","nodeType":"MemberAccess","src":"5768:24:46","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_bytes_storage_$dyn_storage_ptr_$_t_bytes_storage_$returns$__$attached_to$_t_array$_t_bytes_storage_$dyn_storage_ptr_$","typeString":"function (bytes storage ref[] storage pointer,bytes storage ref)"}},"id":15385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5768:54:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15386,"nodeType":"ExpressionStatement","src":"5768:54:46"},{"expression":{"id":15390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"5832:26:46","subExpression":{"expression":{"id":15387,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15344,"src":"5832:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15389,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5841:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15010,"src":"5832:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15391,"nodeType":"ExpressionStatement","src":"5832:26:46"},{"eventCall":{"arguments":[{"id":15393,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15339,"src":"5888:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15394,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"5901:3:46","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5905:6:46","memberName":"sender","nodeType":"MemberAccess","src":"5901:10:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":15396,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15344,"src":"5913:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15397,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5922:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15010,"src":"5913:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15392,"name":"ProposalSigned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15072,"src":"5873:14:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,address,uint256)"}},"id":15398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5873:65:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15399,"nodeType":"EmitStatement","src":"5868:70:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15400,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15344,"src":"5952:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15401,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5961:15:46","memberName":"signaturesCount","nodeType":"MemberAccess","referencedDeclaration":15010,"src":"5952:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":15402,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15344,"src":"5980:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15403,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5989:14:46","memberName":"quorumRequired","nodeType":"MemberAccess","referencedDeclaration":15008,"src":"5980:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5952:51:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15418,"nodeType":"IfStatement","src":"5948:164:46","trueBody":{"id":15417,"nodeType":"Block","src":"6005:107:46","statements":[{"expression":{"id":15409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":15405,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15344,"src":"6019:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Proposal_$15011_storage_ptr","typeString":"struct DLE.Proposal storage pointer"}},"id":15407,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6028:8:46","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":15006,"src":"6019:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":15408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6039:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6019:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15410,"nodeType":"ExpressionStatement","src":"6019:24:46"},{"eventCall":{"arguments":[{"id":15414,"name":"_proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15339,"src":"6089:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15411,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2588,"src":"6062:9:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2588_$","typeString":"type(contract IGovernor)"}},"id":15413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6072:16:46","memberName":"ProposalExecuted","nodeType":"MemberAccess","referencedDeclaration":2276,"src":"6062:26:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":15415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6062:39:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15416,"nodeType":"EmitStatement","src":"6057:44:46"}]}}]},"functionSelector":"ab273016","id":15420,"implemented":true,"kind":"function","modifiers":[],"name":"signProposal","nameLocation":"5450:12:46","nodeType":"FunctionDefinition","parameters":{"id":15340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15339,"mutability":"mutable","name":"_proposalId","nameLocation":"5471:11:46","nodeType":"VariableDeclaration","scope":15420,"src":"5463:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15338,"name":"uint256","nodeType":"ElementaryTypeName","src":"5463:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5462:21:46"},"returnParameters":{"id":15341,"nodeType":"ParameterList","parameters":[],"src":"5493:0:46"},"scope":15715,"src":"5441:677:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15432,"nodeType":"Block","src":"6207:66:46","statements":[{"eventCall":{"arguments":[{"id":15428,"name":"_moduleName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15422,"src":"6238:11:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":15429,"name":"_moduleAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15424,"src":"6251:14:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_address","typeString":"address"}],"id":15427,"name":"ModuleInstalled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15078,"src":"6222:15:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$_t_address_$returns$__$","typeString":"function (string memory,address)"}},"id":15430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6222:44:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15431,"nodeType":"EmitStatement","src":"6217:49:46"}]},"functionSelector":"194a94fc","id":15433,"implemented":true,"kind":"function","modifiers":[],"name":"installModule","nameLocation":"6133:13:46","nodeType":"FunctionDefinition","parameters":{"id":15425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15422,"mutability":"mutable","name":"_moduleName","nameLocation":"6161:11:46","nodeType":"VariableDeclaration","scope":15433,"src":"6147:25:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15421,"name":"string","nodeType":"ElementaryTypeName","src":"6147:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15424,"mutability":"mutable","name":"_moduleAddress","nameLocation":"6182:14:46","nodeType":"VariableDeclaration","scope":15433,"src":"6174:22:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15423,"name":"address","nodeType":"ElementaryTypeName","src":"6174:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6146:51:46"},"returnParameters":{"id":15426,"nodeType":"ParameterList","parameters":[],"src":"6207:0:46"},"scope":15715,"src":"6124:149:46","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2101,4460,4849],"body":{"id":15444,"nodeType":"Block","src":"6462:55:46","statements":[{"expression":{"hexValue":"6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74","id":15442,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6479:31:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f79d44e499ce83a99049e0b7ebf2d6f56e249303be3c14798235137af5ea536","typeString":"literal_string \"mode=blocknumber&from=default\""},"value":"mode=blocknumber&from=default"},"functionReturnParameters":15441,"id":15443,"nodeType":"Return","src":"6472:38:46"}]},"functionSelector":"4bf5d7e9","id":15445,"implemented":true,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"6372:10:46","nodeType":"FunctionDefinition","overrides":{"id":15438,"nodeType":"OverrideSpecifier","overrides":[{"id":15435,"name":"Governor","nameLocations":["6406:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"6406:8:46"},{"id":15436,"name":"GovernorVotes","nameLocations":["6416:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":4482,"src":"6416:13:46"},{"id":15437,"name":"Votes","nameLocations":["6431:5:46"],"nodeType":"IdentifierPath","referencedDeclaration":5303,"src":"6431:5:46"}],"src":"6397:40:46"},"parameters":{"id":15434,"nodeType":"ParameterList","parameters":[],"src":"6382:2:46"},"returnParameters":{"id":15441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15440,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15445,"src":"6447:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15439,"name":"string","nodeType":"ElementaryTypeName","src":"6447:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6446:15:46"},"scope":15715,"src":"6363:154:46","stateMutability":"pure","virtual":false,"visibility":"public"},{"baseFunctions":[2095,4436,4829],"body":{"id":15460,"nodeType":"Block","src":"6609:44:46","statements":[{"expression":{"arguments":[{"expression":{"id":15456,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"6633:5:46","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6639:6:46","memberName":"number","nodeType":"MemberAccess","src":"6633:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15455,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6626:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":15454,"name":"uint48","nodeType":"ElementaryTypeName","src":"6626:6:46","typeDescriptions":{}}},"id":15458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6626:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":15453,"id":15459,"nodeType":"Return","src":"6619:27:46"}]},"functionSelector":"91ddadf4","id":15461,"implemented":true,"kind":"function","modifiers":[],"name":"clock","nameLocation":"6531:5:46","nodeType":"FunctionDefinition","overrides":{"id":15450,"nodeType":"OverrideSpecifier","overrides":[{"id":15447,"name":"Governor","nameLocations":["6560:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"6560:8:46"},{"id":15448,"name":"GovernorVotes","nameLocations":["6570:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":4482,"src":"6570:13:46"},{"id":15449,"name":"Votes","nameLocations":["6585:5:46"],"nodeType":"IdentifierPath","referencedDeclaration":5303,"src":"6585:5:46"}],"src":"6551:40:46"},"parameters":{"id":15446,"nodeType":"ParameterList","parameters":[],"src":"6536:2:46"},"returnParameters":{"id":15453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15452,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15461,"src":"6601:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15451,"name":"uint48","nodeType":"ElementaryTypeName","src":"6601:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"6600:8:46"},"scope":15715,"src":"6522:131:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[6312],"body":{"id":15480,"nodeType":"Block","src":"6747:48:46","statements":[{"expression":{"arguments":[{"id":15475,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15463,"src":"6771:4:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15476,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15465,"src":"6777:2:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15477,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15467,"src":"6781:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15472,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6757:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6763:7:46","memberName":"_update","nodeType":"MemberAccess","referencedDeclaration":6312,"src":"6757:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":15478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6757:31:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15479,"nodeType":"ExpressionStatement","src":"6757:31:46"}]},"id":15481,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"6667:7:46","nodeType":"FunctionDefinition","overrides":{"id":15470,"nodeType":"OverrideSpecifier","overrides":[{"id":15469,"name":"ERC20Votes","nameLocations":["6735:10:46"],"nodeType":"IdentifierPath","referencedDeclaration":6357,"src":"6735:10:46"}],"src":"6726:20:46"},"parameters":{"id":15468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15463,"mutability":"mutable","name":"from","nameLocation":"6683:4:46","nodeType":"VariableDeclaration","scope":15481,"src":"6675:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15462,"name":"address","nodeType":"ElementaryTypeName","src":"6675:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15465,"mutability":"mutable","name":"to","nameLocation":"6697:2:46","nodeType":"VariableDeclaration","scope":15481,"src":"6689:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15464,"name":"address","nodeType":"ElementaryTypeName","src":"6689:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15467,"mutability":"mutable","name":"amount","nameLocation":"6709:6:46","nodeType":"VariableDeclaration","scope":15481,"src":"6701:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15466,"name":"uint256","nodeType":"ElementaryTypeName","src":"6701:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6674:42:46"},"returnParameters":{"id":15471,"nodeType":"ParameterList","parameters":[],"src":"6747:0:46"},"scope":15715,"src":"6658:137:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[6767],"body":{"id":15495,"nodeType":"Block","src":"6878:43:46","statements":[{"expression":{"arguments":[{"id":15492,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15483,"src":"6908:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15490,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6895:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6901:6:46","memberName":"nonces","nodeType":"MemberAccess","referencedDeclaration":6767,"src":"6895:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6895:19:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15489,"id":15494,"nodeType":"Return","src":"6888:26:46"}]},"functionSelector":"7ecebe00","id":15496,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"6809:6:46","nodeType":"FunctionDefinition","overrides":{"id":15486,"nodeType":"OverrideSpecifier","overrides":[{"id":15485,"name":"Nonces","nameLocations":["6852:6:46"],"nodeType":"IdentifierPath","referencedDeclaration":6808,"src":"6852:6:46"}],"src":"6843:16:46"},"parameters":{"id":15484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15483,"mutability":"mutable","name":"owner","nameLocation":"6824:5:46","nodeType":"VariableDeclaration","scope":15496,"src":"6816:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15482,"name":"address","nodeType":"ElementaryTypeName","src":"6816:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6815:15:46"},"returnParameters":{"id":15489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15488,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15496,"src":"6869:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15487,"name":"uint256","nodeType":"ElementaryTypeName","src":"6869:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6868:9:46"},"scope":15715,"src":"6800:121:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[559,5693],"body":{"id":15508,"nodeType":"Block","src":"7004:36:46","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15504,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7021:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7027:4:46","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":559,"src":"7021:10:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":15506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7021:12:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":15503,"id":15507,"nodeType":"Return","src":"7014:19:46"}]},"functionSelector":"06fdde03","id":15509,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"6935:4:46","nodeType":"FunctionDefinition","overrides":{"id":15500,"nodeType":"OverrideSpecifier","overrides":[{"id":15498,"name":"ERC20","nameLocations":["6963:5:46"],"nodeType":"IdentifierPath","referencedDeclaration":6147,"src":"6963:5:46"},{"id":15499,"name":"Governor","nameLocations":["6970:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"6970:8:46"}],"src":"6954:25:46"},"parameters":{"id":15497,"nodeType":"ParameterList","parameters":[],"src":"6939:2:46"},"returnParameters":{"id":15503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15502,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15509,"src":"6989:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15501,"name":"string","nodeType":"ElementaryTypeName","src":"6989:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6988:15:46"},"scope":15715,"src":"6926:114:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[2107,3904],"body":{"id":15521,"nodeType":"Block","src":"7135:43:46","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15517,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7152:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7158:11:46","memberName":"votingDelay","nodeType":"MemberAccess","referencedDeclaration":3904,"src":"7152:17:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7152:19:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15516,"id":15520,"nodeType":"Return","src":"7145:26:46"}]},"functionSelector":"3932abb1","id":15522,"implemented":true,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"7054:11:46","nodeType":"FunctionDefinition","overrides":{"id":15513,"nodeType":"OverrideSpecifier","overrides":[{"id":15511,"name":"Governor","nameLocations":["7089:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"7089:8:46"},{"id":15512,"name":"GovernorSettings","nameLocations":["7099:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":4021,"src":"7099:16:46"}],"src":"7080:36:46"},"parameters":{"id":15510,"nodeType":"ParameterList","parameters":[],"src":"7065:2:46"},"returnParameters":{"id":15516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15515,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15522,"src":"7126:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15514,"name":"uint256","nodeType":"ElementaryTypeName","src":"7126:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7125:9:46"},"scope":15715,"src":"7045:133:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[2113,3914],"body":{"id":15534,"nodeType":"Block","src":"7274:44:46","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15530,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7291:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7297:12:46","memberName":"votingPeriod","nodeType":"MemberAccess","referencedDeclaration":3914,"src":"7291:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15532,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7291:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15529,"id":15533,"nodeType":"Return","src":"7284:27:46"}]},"functionSelector":"02a251a3","id":15535,"implemented":true,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"7192:12:46","nodeType":"FunctionDefinition","overrides":{"id":15526,"nodeType":"OverrideSpecifier","overrides":[{"id":15524,"name":"Governor","nameLocations":["7228:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"7228:8:46"},{"id":15525,"name":"GovernorSettings","nameLocations":["7238:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":4021,"src":"7238:16:46"}],"src":"7219:36:46"},"parameters":{"id":15523,"nodeType":"ParameterList","parameters":[],"src":"7204:2:46"},"returnParameters":{"id":15529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15528,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15535,"src":"7265:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15527,"name":"uint256","nodeType":"ElementaryTypeName","src":"7265:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7264:9:46"},"scope":15715,"src":"7183:135:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[2121,4620],"body":{"id":15550,"nodeType":"Block","src":"7438:49:46","statements":[{"expression":{"arguments":[{"id":15547,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15537,"src":"7468:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15545,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7455:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7461:6:46","memberName":"quorum","nodeType":"MemberAccess","referencedDeclaration":4620,"src":"7455:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":15548,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7455:25:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15544,"id":15549,"nodeType":"Return","src":"7448:32:46"}]},"functionSelector":"f8ce560a","id":15551,"implemented":true,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"7332:6:46","nodeType":"FunctionDefinition","overrides":{"id":15541,"nodeType":"OverrideSpecifier","overrides":[{"id":15539,"name":"Governor","nameLocations":["7381:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"7381:8:46"},{"id":15540,"name":"GovernorVotesQuorumFraction","nameLocations":["7391:27:46"],"nodeType":"IdentifierPath","referencedDeclaration":4677,"src":"7391:27:46"}],"src":"7372:47:46"},"parameters":{"id":15538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15537,"mutability":"mutable","name":"blockNumber","nameLocation":"7347:11:46","nodeType":"VariableDeclaration","scope":15551,"src":"7339:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15536,"name":"uint256","nodeType":"ElementaryTypeName","src":"7339:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7338:21:46"},"returnParameters":{"id":15544,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15543,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15551,"src":"7429:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15542,"name":"uint256","nodeType":"ElementaryTypeName","src":"7429:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7428:9:46"},"scope":15715,"src":"7323:164:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[708,4116],"body":{"id":15567,"nodeType":"Block","src":"7607:47:46","statements":[{"expression":{"arguments":[{"id":15564,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15553,"src":"7636:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15562,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7624:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7630:5:46","memberName":"state","nodeType":"MemberAccess","referencedDeclaration":4116,"src":"7624:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2154_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":15565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7624:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":15561,"id":15566,"nodeType":"Return","src":"7617:30:46"}]},"functionSelector":"3e4f49e6","id":15568,"implemented":true,"kind":"function","modifiers":[],"name":"state","nameLocation":"7501:5:46","nodeType":"FunctionDefinition","overrides":{"id":15557,"nodeType":"OverrideSpecifier","overrides":[{"id":15555,"name":"Governor","nameLocations":["7548:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"7548:8:46"},{"id":15556,"name":"GovernorTimelockControl","nameLocations":["7558:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"7558:23:46"}],"src":"7539:43:46"},"parameters":{"id":15554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15553,"mutability":"mutable","name":"proposalId","nameLocation":"7515:10:46","nodeType":"VariableDeclaration","scope":15568,"src":"7507:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15552,"name":"uint256","nodeType":"ElementaryTypeName","src":"7507:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7506:20:46"},"returnParameters":{"id":15561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15560,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15568,"src":"7592:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":15559,"nodeType":"UserDefinedTypeName","pathNode":{"id":15558,"name":"ProposalState","nameLocations":["7592:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":2154,"src":"7592:13:46"},"referencedDeclaration":2154,"src":"7592:13:46","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2154","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"7591:15:46"},"scope":15715,"src":"7492:162:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[717,3924],"body":{"id":15580,"nodeType":"Block","src":"7755:49:46","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15576,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7772:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7778:17:46","memberName":"proposalThreshold","nodeType":"MemberAccess","referencedDeclaration":3924,"src":"7772:23:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15578,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7772:25:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15575,"id":15579,"nodeType":"Return","src":"7765:32:46"}]},"functionSelector":"b58131b0","id":15581,"implemented":true,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"7668:17:46","nodeType":"FunctionDefinition","overrides":{"id":15572,"nodeType":"OverrideSpecifier","overrides":[{"id":15570,"name":"Governor","nameLocations":["7709:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"7709:8:46"},{"id":15571,"name":"GovernorSettings","nameLocations":["7719:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":4021,"src":"7719:16:46"}],"src":"7700:36:46"},"parameters":{"id":15569,"nodeType":"ParameterList","parameters":[],"src":"7685:2:46"},"returnParameters":{"id":15575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15574,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15581,"src":"7746:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15573,"name":"uint256","nodeType":"ElementaryTypeName","src":"7746:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7745:9:46"},"scope":15715,"src":"7659:145:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[1487,4297],"body":{"id":15608,"nodeType":"Block","src":"8037:82:46","statements":[{"expression":{"arguments":[{"id":15602,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15584,"src":"8068:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":15603,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15587,"src":"8077:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":15604,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15590,"src":"8085:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":15605,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15592,"src":"8096:15:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15600,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8054:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8060:7:46","memberName":"_cancel","nodeType":"MemberAccess","referencedDeclaration":4297,"src":"8054:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) returns (uint256)"}},"id":15606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8054:58:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15599,"id":15607,"nodeType":"Return","src":"8047:65:46"}]},"id":15609,"implemented":true,"kind":"function","modifiers":[],"name":"_cancel","nameLocation":"7818:7:46","nodeType":"FunctionDefinition","overrides":{"id":15596,"nodeType":"OverrideSpecifier","overrides":[{"id":15594,"name":"Governor","nameLocations":["7984:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"7984:8:46"},{"id":15595,"name":"GovernorTimelockControl","nameLocations":["7994:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"7994:23:46"}],"src":"7975:43:46"},"parameters":{"id":15593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15584,"mutability":"mutable","name":"targets","nameLocation":"7852:7:46","nodeType":"VariableDeclaration","scope":15609,"src":"7835:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15582,"name":"address","nodeType":"ElementaryTypeName","src":"7835:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15583,"nodeType":"ArrayTypeName","src":"7835:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15587,"mutability":"mutable","name":"values","nameLocation":"7886:6:46","nodeType":"VariableDeclaration","scope":15609,"src":"7869:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15585,"name":"uint256","nodeType":"ElementaryTypeName","src":"7869:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15586,"nodeType":"ArrayTypeName","src":"7869:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15590,"mutability":"mutable","name":"calldatas","nameLocation":"7917:9:46","nodeType":"VariableDeclaration","scope":15609,"src":"7902:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":15588,"name":"bytes","nodeType":"ElementaryTypeName","src":"7902:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15589,"nodeType":"ArrayTypeName","src":"7902:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":15592,"mutability":"mutable","name":"descriptionHash","nameLocation":"7944:15:46","nodeType":"VariableDeclaration","scope":15609,"src":"7936:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15591,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7936:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7825:140:46"},"returnParameters":{"id":15599,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15598,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15609,"src":"8028:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15597,"name":"uint256","nodeType":"ElementaryTypeName","src":"8028:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8027:9:46"},"scope":15715,"src":"7809:310:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1860,4310],"body":{"id":15621,"nodeType":"Block","src":"8221:41:46","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15617,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8238:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8244:9:46","memberName":"_executor","nodeType":"MemberAccess","referencedDeclaration":4310,"src":"8238:15:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":15619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8238:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15616,"id":15620,"nodeType":"Return","src":"8231:24:46"}]},"id":15622,"implemented":true,"kind":"function","modifiers":[],"name":"_executor","nameLocation":"8133:9:46","nodeType":"FunctionDefinition","overrides":{"id":15613,"nodeType":"OverrideSpecifier","overrides":[{"id":15611,"name":"Governor","nameLocations":["8168:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"8168:8:46"},{"id":15612,"name":"GovernorTimelockControl","nameLocations":["8178:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"8178:23:46"}],"src":"8159:43:46"},"parameters":{"id":15610,"nodeType":"ParameterList","parameters":[],"src":"8142:2:46"},"returnParameters":{"id":15616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15615,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15622,"src":"8212:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15614,"name":"address","nodeType":"ElementaryTypeName","src":"8212:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8211:9:46"},"scope":15715,"src":"8124:138:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[550],"body":{"id":15636,"nodeType":"Block","src":"8360:60:46","statements":[{"expression":{"arguments":[{"id":15633,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15624,"src":"8401:11:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":15631,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8377:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8383:17:46","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":550,"src":"8377:23:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":15634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8377:36:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15630,"id":15635,"nodeType":"Return","src":"8370:43:46"}]},"functionSelector":"01ffc9a7","id":15637,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"8276:17:46","nodeType":"FunctionDefinition","overrides":{"id":15627,"nodeType":"OverrideSpecifier","overrides":[{"id":15626,"name":"Governor","nameLocations":["8335:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"8335:8:46"}],"src":"8326:18:46"},"parameters":{"id":15625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15624,"mutability":"mutable","name":"interfaceId","nameLocation":"8301:11:46","nodeType":"VariableDeclaration","scope":15637,"src":"8294:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15623,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8294:6:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8293:20:46"},"returnParameters":{"id":15630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15629,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15637,"src":"8354:4:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15628,"name":"bool","nodeType":"ElementaryTypeName","src":"8354:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8353:6:46"},"scope":15715,"src":"8267:153:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[789,4140],"body":{"id":15652,"nodeType":"Block","src":"8546:62:46","statements":[{"expression":{"arguments":[{"id":15649,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15639,"src":"8590:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15647,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8563:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8569:20:46","memberName":"proposalNeedsQueuing","nodeType":"MemberAccess","referencedDeclaration":4140,"src":"8563:26:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":15650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8563:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15646,"id":15651,"nodeType":"Return","src":"8556:45:46"}]},"functionSelector":"a9a95294","id":15653,"implemented":true,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"8434:20:46","nodeType":"FunctionDefinition","overrides":{"id":15643,"nodeType":"OverrideSpecifier","overrides":[{"id":15641,"name":"Governor","nameLocations":["8496:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"8496:8:46"},{"id":15642,"name":"GovernorTimelockControl","nameLocations":["8506:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"8506:23:46"}],"src":"8487:43:46"},"parameters":{"id":15640,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15639,"mutability":"mutable","name":"proposalId","nameLocation":"8463:10:46","nodeType":"VariableDeclaration","scope":15653,"src":"8455:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15638,"name":"uint256","nodeType":"ElementaryTypeName","src":"8455:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8454:20:46"},"returnParameters":{"id":15646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15645,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15653,"src":"8540:4:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15644,"name":"bool","nodeType":"ElementaryTypeName","src":"8540:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8539:6:46"},"scope":15715,"src":"8425:183:46","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[1195,4205],"body":{"id":15683,"nodeType":"Block","src":"8877:103:46","statements":[{"expression":{"arguments":[{"id":15676,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15655,"src":"8917:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15677,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15658,"src":"8929:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":15678,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15661,"src":"8938:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":15679,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15664,"src":"8946:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":15680,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15666,"src":"8957:15:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15674,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8894:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8900:16:46","memberName":"_queueOperations","nodeType":"MemberAccess","referencedDeclaration":4205,"src":"8894:22:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint48_$","typeString":"function (uint256,address[] memory,uint256[] memory,bytes memory[] memory,bytes32) returns (uint48)"}},"id":15681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8894:79:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":15673,"id":15682,"nodeType":"Return","src":"8887:86:46"}]},"id":15684,"implemented":true,"kind":"function","modifiers":[],"name":"_queueOperations","nameLocation":"8622:16:46","nodeType":"FunctionDefinition","overrides":{"id":15670,"nodeType":"OverrideSpecifier","overrides":[{"id":15668,"name":"Governor","nameLocations":["8825:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"8825:8:46"},{"id":15669,"name":"GovernorTimelockControl","nameLocations":["8835:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"8835:23:46"}],"src":"8816:43:46"},"parameters":{"id":15667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15655,"mutability":"mutable","name":"proposalId","nameLocation":"8656:10:46","nodeType":"VariableDeclaration","scope":15684,"src":"8648:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15654,"name":"uint256","nodeType":"ElementaryTypeName","src":"8648:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15658,"mutability":"mutable","name":"targets","nameLocation":"8693:7:46","nodeType":"VariableDeclaration","scope":15684,"src":"8676:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15656,"name":"address","nodeType":"ElementaryTypeName","src":"8676:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15657,"nodeType":"ArrayTypeName","src":"8676:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15661,"mutability":"mutable","name":"values","nameLocation":"8727:6:46","nodeType":"VariableDeclaration","scope":15684,"src":"8710:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15659,"name":"uint256","nodeType":"ElementaryTypeName","src":"8710:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15660,"nodeType":"ArrayTypeName","src":"8710:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15664,"mutability":"mutable","name":"calldatas","nameLocation":"8758:9:46","nodeType":"VariableDeclaration","scope":15684,"src":"8743:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":15662,"name":"bytes","nodeType":"ElementaryTypeName","src":"8743:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15663,"nodeType":"ArrayTypeName","src":"8743:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":15666,"mutability":"mutable","name":"descriptionHash","nameLocation":"8785:15:46","nodeType":"VariableDeclaration","scope":15684,"src":"8777:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15665,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8777:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8638:168:46"},"returnParameters":{"id":15673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15672,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15684,"src":"8869:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15671,"name":"uint48","nodeType":"ElementaryTypeName","src":"8869:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"8868:8:46"},"scope":15715,"src":"8613:367:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1372,4244],"body":{"id":15713,"nodeType":"Block","src":"9234:98:46","statements":[{"expression":{"arguments":[{"id":15706,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15686,"src":"9269:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15707,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15689,"src":"9281:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":15708,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15692,"src":"9290:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":15709,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15695,"src":"9298:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":15710,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15697,"src":"9309:15:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15703,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9244:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_DLE_$15715_$","typeString":"type(contract super DLE)"}},"id":15705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9250:18:46","memberName":"_executeOperations","nodeType":"MemberAccess","referencedDeclaration":4244,"src":"9244:24:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$__$","typeString":"function (uint256,address[] memory,uint256[] memory,bytes memory[] memory,bytes32)"}},"id":15711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9244:81:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15712,"nodeType":"ExpressionStatement","src":"9244:81:46"}]},"id":15714,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperations","nameLocation":"8994:18:46","nodeType":"FunctionDefinition","overrides":{"id":15701,"nodeType":"OverrideSpecifier","overrides":[{"id":15699,"name":"Governor","nameLocations":["9199:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":2134,"src":"9199:8:46"},{"id":15700,"name":"GovernorTimelockControl","nameLocations":["9209:23:46"],"nodeType":"IdentifierPath","referencedDeclaration":4366,"src":"9209:23:46"}],"src":"9190:43:46"},"parameters":{"id":15698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15686,"mutability":"mutable","name":"proposalId","nameLocation":"9030:10:46","nodeType":"VariableDeclaration","scope":15714,"src":"9022:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15685,"name":"uint256","nodeType":"ElementaryTypeName","src":"9022:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15689,"mutability":"mutable","name":"targets","nameLocation":"9067:7:46","nodeType":"VariableDeclaration","scope":15714,"src":"9050:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15687,"name":"address","nodeType":"ElementaryTypeName","src":"9050:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15688,"nodeType":"ArrayTypeName","src":"9050:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15692,"mutability":"mutable","name":"values","nameLocation":"9101:6:46","nodeType":"VariableDeclaration","scope":15714,"src":"9084:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15690,"name":"uint256","nodeType":"ElementaryTypeName","src":"9084:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15691,"nodeType":"ArrayTypeName","src":"9084:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15695,"mutability":"mutable","name":"calldatas","nameLocation":"9132:9:46","nodeType":"VariableDeclaration","scope":15714,"src":"9117:24:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":15693,"name":"bytes","nodeType":"ElementaryTypeName","src":"9117:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15694,"nodeType":"ArrayTypeName","src":"9117:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":15697,"mutability":"mutable","name":"descriptionHash","nameLocation":"9159:15:46","nodeType":"VariableDeclaration","scope":15714,"src":"9151:23:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15696,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9151:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"9012:168:46"},"returnParameters":{"id":15702,"nodeType":"ParameterList","parameters":[],"src":"9234:0:46"},"scope":15715,"src":"8985:347:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":15716,"src":"782:8552:46","usedErrors":[2163,2168,2171,2176,2181,2186,2196,2201,2210,2215,2218,2221,2224,2229,2234,2239,4513,4685,4811,4818,5384,5389,5394,5403,5408,5413,6245,6731,6750,6874,6876,8412,8417,8422,10810,12717],"usedEvents":[2264,2271,2276,2281,2294,2309,3859,3865,3871,4049,4506,4694,4703,5326,6159,6168,15048,15056,15064,15072,15078]}],"src":"32:9303:46"},"id":46}},"contracts":{"@openzeppelin/contracts/access/AccessControl.sol":{"AccessControl":{"abi":[{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"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":[{"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":"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DEFAULT_ADMIN_ROLE()":"a217fddf","getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"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\":[{\"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\":\"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\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"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\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"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: ```solidity 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}: ```solidity 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. We recommend using {AccessControlDefaultAdminRules} to enforce additional security measures for this role.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"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.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"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`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"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. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"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 revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/AccessControl.sol\":\"AccessControl\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/access/IAccessControl.sol":{"IAccessControl":{"abi":[{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"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":[{"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":"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","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"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"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\":[{\"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\":\"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\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"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\"}],\"devdoc\":{\"details\":\"External interface of AccessControl declared to support ERC-165 detection.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"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.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"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`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"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.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"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 `callerConfirmation`.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":\"IAccessControl\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/Governor.sol":{"Governor":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","relay(address,uint256,bytes)":"c28bc2fa","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Core of the governance system, designed to be extended through various modules. This contract is abstract and requires several functions to be implemented in various modules: - A counting module must implement {quorum}, {_quorumReached}, {_voteSucceeded} and {_countVote} - A voting module must implement {_getVotes} - Additionally, {votingPeriod} must also be implemented\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"constructor\":{\"details\":\"Sets the value for {name} and {version}\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {IGovernor-proposalThreshold}.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"state(uint256)\":{\"details\":\"See {IGovernor-state}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/Governor.sol\":\"Governor\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/IGovernor.sol":{"IGovernor":{"abi":[{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the {Governor} core. NOTE: Event parameters lack the `indexed` keyword for compatibility with GovernorBravo events. Making event parameters `indexed` affects how events are decoded, potentially breaking existing indexers.\",\"errors\":{\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}]},\"events\":{\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Cancel a proposal. A proposal is cancellable by the proposer, but only while it is Pending state, i.e. before the vote starts. Emits a {ProposalCanceled} event.\"},\"castVote(uint256,uint8)\":{\"details\":\"Cast a vote Emits a {VoteCast} event.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"Cast a vote using the voter's signature, including ERC-1271 signature support. Emits a {VoteCast} event.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"Cast a vote with a reason Emits a {VoteCast} event.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"Cast a vote with a reason and additional encoded parameters Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"Cast a vote with a reason and additional encoded parameters using the voter's signature, including ERC-1271 signature support. Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Execute a successful proposal. This requires the quorum to be reached, the vote to be successful, and the deadline to be reached. Depending on the governor it might also be required that the proposal was queued and that some delay passed. Emits a {ProposalExecuted} event. NOTE: Some modules can modify the requirements for execution, for example by adding an additional timelock.\"},\"getVotes(address,uint256)\":{\"details\":\"Voting power of an `account` at a specific `timepoint`. Note: this can be implemented in a number of ways, for example by reading the delegated balance from one (or multiple), {ERC20Votes} tokens.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"Voting power of an `account` at a specific `timepoint` given additional encoded parameters.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Hashing function used to (re)build the proposal id from the proposal details..\"},\"name()\":{\"details\":\"Name of the governor instance (used in building the EIP-712 domain separator).\"},\"proposalDeadline(uint256)\":{\"details\":\"Timepoint at which votes close. If using block number, votes close at the end of this block, so it is possible to cast a vote during this block.\"},\"proposalEta(uint256)\":{\"details\":\"The time when a queued proposal becomes executable (\\\"ETA\\\"). Unlike {proposalSnapshot} and {proposalDeadline}, this doesn't use the governor clock, and instead relies on the executor's clock which may be different. In most cases this will be a timestamp.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"Whether a proposal needs to be queued before execution.\"},\"proposalProposer(uint256)\":{\"details\":\"The account that created a proposal.\"},\"proposalSnapshot(uint256)\":{\"details\":\"Timepoint used to retrieve user's votes and quorum. If using block number (as per Compound's Comp), the snapshot is performed at the end of this block. Hence, voting for this proposal starts at the beginning of the following block.\"},\"proposalThreshold()\":{\"details\":\"The number of votes required in order for a voter to become a proposer.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"Create a new proposal. Vote start after a delay specified by {IGovernor-votingDelay} and lasts for a duration specified by {IGovernor-votingPeriod}. Emits a {ProposalCreated} event. NOTE: The state of the Governor and `targets` may change between the proposal creation and its execution. This may be the result of third party actions on the targeted contracts, or other governor proposals. For example, the balance of this contract could be updated or its access control permissions may be modified, possibly compromising the proposal's ability to execute successfully (e.g. the governor doesn't have enough value to cover a proposal with multiple transfers).\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Queue a proposal. Some governors require this step to be performed before execution can happen. If queuing is not necessary, this function may revert. Queuing a proposal requires the quorum to be reached, the vote to be successful, and the deadline to be reached. Emits a {ProposalQueued} event.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"state(uint256)\":{\"details\":\"Current state of a proposal, following Compound's convention\"},\"supportsInterface(bytes4)\":{\"details\":\"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[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"version()\":{\"details\":\"Version of the governor instance (used in building the EIP-712 domain separator). Default: \\\"1\\\"\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"getVotes(address,uint256)\":{\"notice\":\"module:reputation\"},\"getVotesWithParams(address,uint256,bytes)\":{\"notice\":\"module:reputation\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"notice\":\"module:core\"},\"name()\":{\"notice\":\"module:core\"},\"proposalDeadline(uint256)\":{\"notice\":\"module:core\"},\"proposalEta(uint256)\":{\"notice\":\"module:core\"},\"proposalNeedsQueuing(uint256)\":{\"notice\":\"module:core\"},\"proposalProposer(uint256)\":{\"notice\":\"module:core\"},\"proposalSnapshot(uint256)\":{\"notice\":\"module:core\"},\"proposalThreshold()\":{\"notice\":\"module:core\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"state(uint256)\":{\"notice\":\"module:core\"},\"version()\":{\"notice\":\"module:core\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/IGovernor.sol\":\"IGovernor\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/TimelockController.sol":{"TimelockController":{"abi":[{"inputs":[{"internalType":"uint256","name":"minDelay","type":"uint256"},{"internalType":"address[]","name":"proposers","type":"address[]"},{"internalType":"address[]","name":"executors","type":"address[]"},{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"delay","type":"uint256"},{"internalType":"uint256","name":"minDelay","type":"uint256"}],"name":"TimelockInsufficientDelay","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"payloads","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"TimelockInvalidOperationLength","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"TimelockUnauthorizedCaller","type":"error"},{"inputs":[{"internalType":"bytes32","name":"predecessorId","type":"bytes32"}],"name":"TimelockUnexecutedPredecessor","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"TimelockUnexpectedOperationState","type":"error"},{"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":false,"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"CallSalt","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":"CANCELLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":[{"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":"payload","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":"payloads","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":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getOperationState","outputs":[{"internalType":"enum TimelockController.OperationState","name":"","type":"uint8"}],"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":"","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":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperationBatch","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationPending","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationReady","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","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":"payloads","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"}],"evm":{"bytecode":{"functionDebugData":{"abi_decode_address_fromMemory":{"entryPoint":445,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_address_dyn_fromMemory":{"entryPoint":466,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":385,"id":null,"parameterSlots":1,"returnSlots":1},"fun_grantRole":{"entryPoint":951,"id":256,"parameterSlots":1,"returnSlots":1},"fun_grantRole_1299":{"entryPoint":661,"id":256,"parameterSlots":1,"returnSlots":1},"fun_grantRole_1301":{"entryPoint":789,"id":256,"parameterSlots":1,"returnSlots":1},"fun_grantRole_1303":{"entryPoint":1108,"id":256,"parameterSlots":1,"returnSlots":1},"increment_uint256":{"entryPoint":580,"id":null,"parameterSlots":1,"returnSlots":1},"memory_array_index_access_address_dyn":{"entryPoint":618,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[],"linkReferences":{},"object":"6080604052346200017c5762001a74803803806200001d8162000181565b9283398101906080818303126200017c57805160208201516001600160401b03908181116200017c578462000054918501620001d2565b9360408401519182116200017c57620000766060916200007e938601620001d2565b9301620001bd565b906200008a3062000295565b506001600160a01b039180831662000169575b5060005b8451811015620000f05780620000c984620000c1620000ea94896200026a565b511662000315565b50620000e384620000db83896200026a565b5116620003b7565b5062000244565b620000a1565b50925060005b8251811015620001245780620000e383620001166200011e94876200026a565b511662000454565b620000f6565b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d560408580600255815190600082526020820152a16040516115629081620004f28239f35b620001749062000295565b50386200009d565b600080fd5b6040519190601f01601f191682016001600160401b03811183821017620001a757604052565b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200017c57565b81601f820112156200017c578051916001600160401b038311620001a7578260051b60209283806200020681850162000181565b8097815201928201019283116200017c578301905b8282106200022a575050505090565b8380916200023884620001bd565b8152019101906200021b565b6000198114620002545760010190565b634e487b7160e01b600052601160045260246000fd5b80518210156200027f5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff166200031157818052816020526040822081835260205260408220600160ff19825416179055339160008051602062001a548339815191528180a4600190565b5090565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260408120549091907fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b505090565b6001600160a01b031660008181527fc3ad33e20b0c56a223ad5104fff154aa010f8715b9c981fd38fdc60a4d1a52fb60205260408120549091907ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7839060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d706960205260408120549091907fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a460019056fe60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a26469706673582212204f1676d319cbe6cb8d2ce0e979efe9b284d7547f8986edd37233ea88fbf1b7c264736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE PUSH3 0x17C JUMPI PUSH3 0x1A74 DUP1 CODESIZE SUB DUP1 PUSH3 0x1D DUP2 PUSH3 0x181 JUMP JUMPDEST SWAP3 DUP4 CODECOPY DUP2 ADD SWAP1 PUSH1 0x80 DUP2 DUP4 SUB SLT PUSH3 0x17C JUMPI DUP1 MLOAD PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 DUP2 GT PUSH3 0x17C JUMPI DUP5 PUSH3 0x54 SWAP2 DUP6 ADD PUSH3 0x1D2 JUMP JUMPDEST SWAP4 PUSH1 0x40 DUP5 ADD MLOAD SWAP2 DUP3 GT PUSH3 0x17C JUMPI PUSH3 0x76 PUSH1 0x60 SWAP2 PUSH3 0x7E SWAP4 DUP7 ADD PUSH3 0x1D2 JUMP JUMPDEST SWAP4 ADD PUSH3 0x1BD JUMP JUMPDEST SWAP1 PUSH3 0x8A ADDRESS PUSH3 0x295 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP1 DUP4 AND PUSH3 0x169 JUMPI JUMPDEST POP PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH3 0xF0 JUMPI DUP1 PUSH3 0xC9 DUP5 PUSH3 0xC1 PUSH3 0xEA SWAP5 DUP10 PUSH3 0x26A JUMP JUMPDEST MLOAD AND PUSH3 0x315 JUMP JUMPDEST POP PUSH3 0xE3 DUP5 PUSH3 0xDB DUP4 DUP10 PUSH3 0x26A JUMP JUMPDEST MLOAD AND PUSH3 0x3B7 JUMP JUMPDEST POP PUSH3 0x244 JUMP JUMPDEST PUSH3 0xA1 JUMP JUMPDEST POP SWAP3 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH3 0x124 JUMPI DUP1 PUSH3 0xE3 DUP4 PUSH3 0x116 PUSH3 0x11E SWAP5 DUP8 PUSH3 0x26A JUMP JUMPDEST MLOAD AND PUSH3 0x454 JUMP JUMPDEST PUSH3 0xF6 JUMP JUMPDEST PUSH32 0x11C24F4EAD16507C69AC467FBD5E4EED5FB5C699626D2CC6D66421DF253886D5 PUSH1 0x40 DUP6 DUP1 PUSH1 0x2 SSTORE DUP2 MLOAD SWAP1 PUSH1 0x0 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x40 MLOAD PUSH2 0x1562 SWAP1 DUP2 PUSH3 0x4F2 DUP3 CODECOPY RETURN JUMPDEST PUSH3 0x174 SWAP1 PUSH3 0x295 JUMP JUMPDEST POP CODESIZE PUSH3 0x9D JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP2 SWAP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP4 DUP3 LT OR PUSH3 0x1A7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH3 0x17C JUMPI JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x17C JUMPI DUP1 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH3 0x1A7 JUMPI DUP3 PUSH1 0x5 SHL PUSH1 0x20 SWAP3 DUP4 DUP1 PUSH3 0x206 DUP2 DUP6 ADD PUSH3 0x181 JUMP JUMPDEST DUP1 SWAP8 DUP2 MSTORE ADD SWAP3 DUP3 ADD ADD SWAP3 DUP4 GT PUSH3 0x17C JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH3 0x22A JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 DUP1 SWAP2 PUSH3 0x238 DUP5 PUSH3 0x1BD JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH3 0x21B JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH3 0x254 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH3 0x27F JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xAD3228B676F7D3CD4284A5443F17F1962B36E491B30A40B2405849E597BA5FB5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH1 0xFF AND PUSH3 0x311 JUMPI DUP2 DUP1 MSTORE DUP2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP3 KECCAK256 DUP2 DUP4 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE CALLER SWAP2 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0x3412D5605AC6CD444957CEDB533E5DACAD6378B4BC819EBE3652188A665066D5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 SWAP1 PUSH1 0xFF AND PUSH3 0x3B2 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xC3AD33E20B0C56A223AD5104FFF154AA010F8715B9C981FD38FDC60A4D1A52FB PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 SWAP1 PUSH1 0xFF AND PUSH3 0x3B2 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xDAE2AA361DFD1CA020A396615627D436107C35EFF9FE7738A3512819782D7069 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 SWAP1 PUSH1 0xFF AND PUSH3 0x3B2 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP INVALID PUSH1 0x40 PUSH1 0x80 DUP2 MSTORE PUSH1 0x4 SWAP1 DUP2 CALLDATASIZE LT ISZERO PUSH2 0x20 JUMPI JUMPDEST POP POP CALLDATASIZE ISZERO PUSH2 0x1E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST STOP JUMPDEST PUSH1 0x0 SWAP2 DUP3 CALLDATALOAD PUSH1 0xE0 SHR SWAP1 DUP2 PUSH4 0x1D5062A EQ PUSH2 0xB0C JUMPI DUP2 PUSH4 0x1FFC9A7 EQ PUSH2 0xA99 JUMPI DUP2 PUSH4 0x7BD0265 EQ PUSH2 0xA70 JUMPI DUP4 DUP3 PUSH4 0x134008D3 EQ PUSH2 0x9C6 JUMPI POP DUP2 PUSH4 0x13BC9F20 EQ PUSH2 0x9A6 JUMPI DUP2 PUSH4 0x150B7A02 EQ PUSH2 0x951 JUMPI DUP2 PUSH4 0x248A9CA3 EQ PUSH2 0x927 JUMPI DUP2 PUSH4 0x2AB0F529 EQ PUSH2 0x907 JUMPI DUP2 PUSH4 0x2F2FF15D EQ PUSH2 0x8DD JUMPI DUP2 PUSH4 0x31D50750 EQ PUSH2 0x8BD JUMPI DUP2 PUSH4 0x36568ABE EQ PUSH2 0x877 JUMPI DUP2 PUSH4 0x584B153E EQ PUSH2 0x84E JUMPI DUP2 PUSH4 0x64D62353 EQ PUSH2 0x7E2 JUMPI DUP2 PUSH4 0x7958004C EQ PUSH2 0x79F JUMPI DUP2 PUSH4 0x8065657F EQ PUSH2 0x77D JUMPI DUP2 PUSH4 0x8F2A0BB0 EQ PUSH2 0x5E0 JUMPI DUP2 PUSH4 0x8F61F4F5 EQ PUSH2 0x5A5 JUMPI DUP2 PUSH4 0x91D14854 EQ PUSH2 0x55F JUMPI DUP2 PUSH4 0xA217FDDF EQ PUSH2 0x544 JUMPI DUP2 PUSH4 0xB08E51C0 EQ PUSH2 0x509 JUMPI DUP2 PUSH4 0xB1C5F427 EQ PUSH2 0x4DD JUMPI DUP2 PUSH4 0xBC197C81 EQ PUSH2 0x457 JUMPI DUP2 PUSH4 0xC4D252F5 EQ PUSH2 0x388 JUMPI DUP2 PUSH4 0xD45C4435 EQ PUSH2 0x360 JUMPI DUP2 PUSH4 0xD547741F EQ PUSH2 0x31B JUMPI DUP2 PUSH4 0xE38335E5 EQ PUSH2 0x1D8 JUMPI DUP2 PUSH4 0xF23A6E61 EQ PUSH2 0x180 JUMPI POP PUSH4 0xF27A0C92 SUB PUSH2 0x11 JUMPI CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH1 0x2 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP DUP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x19B PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x1A4 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x1C7 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST DUP1 REVERT JUMPDEST SWAP1 POP PUSH2 0x1E3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP1 SWAP9 SWAP5 SWAP6 SWAP2 SWAP4 SWAP3 SWAP7 SWAP8 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 MSTORE DUP11 PUSH1 0x20 MSTORE DUP6 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP7 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0x30D JUMPI JUMPDEST DUP4 DUP4 EQ DUP1 ISZERO SWAP1 PUSH2 0x303 JUMPI JUMPDEST PUSH2 0x2D5 JUMPI POP PUSH2 0x23A PUSH2 0x241 SWAP2 DUP11 DUP7 DUP11 DUP8 DUP12 DUP9 DUP16 PUSH2 0x1158 JUMP JUMPDEST SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST DUP9 JUMPDEST DUP2 DUP2 LT PUSH2 0x257 JUMPI DUP10 PUSH2 0x254 DUP11 PUSH2 0x14C1 JUMP JUMPDEST DUP1 RETURN JUMPDEST DUP1 DUP1 DUP11 PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 DUP11 DUP11 PUSH2 0x2C8 PUSH2 0x2B0 DUP16 SWAP9 DUP13 PUSH2 0x2A9 DUP3 DUP15 PUSH2 0x2A3 DUP16 PUSH2 0x2D0 SWAP16 PUSH2 0x29E SWAP2 DUP6 SWAP2 PUSH2 0x12F3 JUMP JUMPDEST PUSH2 0x1319 JUMP JUMPDEST SWAP8 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP6 PUSH2 0x132D JUMP JUMPDEST SWAP1 PUSH2 0x2BD DUP3 DUP3 DUP8 DUP8 PUSH2 0x1406 JUMP JUMPDEST DUP14 MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x12CE JUMP JUMPDEST PUSH2 0x243 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD DUP6 SWAP1 MSTORE PUSH1 0x40 DUP4 ADD DUP5 SWAP1 MSTORE SWAP2 DUP3 SWAP2 POP PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP5 DUP4 EQ ISZERO PUSH2 0x222 JUMP JUMPDEST PUSH2 0x316 CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0x217 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x353 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST SWAP4 DUP4 DUP8 MSTORE DUP7 PUSH1 0x20 MSTORE DUP7 KECCAK256 ADD SLOAD CALLER SWAP1 PUSH2 0xEFC JUMP JUMPDEST PUSH2 0xFAB JUMP JUMPDEST POP DUP1 RETURN JUMPDEST DUP3 DUP1 REVERT JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 DUP3 SWAP2 CALLDATALOAD DUP2 MSTORE PUSH1 0x1 DUP5 MSTORE KECCAK256 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP1 DUP6 MSTORE DUP5 PUSH1 0x20 MSTORE DUP3 DUP6 KECCAK256 CALLER DUP7 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP7 KECCAK256 SLOAD AND ISZERO PUSH2 0x43C JUMPI POP PUSH2 0x3E6 DUP4 PUSH2 0x104D JUMP JUMPDEST ISZERO PUSH2 0x420 JUMPI POP DUP3 SWAP1 DUP3 DUP3 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE DUP2 KECCAK256 SSTORE PUSH32 0xBAA1EB22F2A492BA1A5FEA61B8DF4D27C6C8B5F3971E63BB58FA14FF72EEDB70 DUP3 DUP1 LOG2 DUP1 RETURN JUMPDEST DUP3 PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x6 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE CALLER SWAP1 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x472 PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x47B PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x49C SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x4B4 SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x4CF SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xBC197C81 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x4F3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP7 SWAP6 SWAP1 SWAP6 SWAP5 SWAP2 SWAP5 SWAP4 SWAP3 SWAP4 PUSH2 0x1158 JUMP JUMPDEST SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0xFF SWAP3 PUSH2 0x580 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLDATALOAD DUP3 MSTORE DUP2 DUP7 MSTORE DUP3 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP3 MSTORE DUP6 MSTORE KECCAK256 SLOAD SWAP2 MLOAD SWAP2 AND ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP3 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x779 JUMPI PUSH2 0x613 SWAP1 CALLDATASIZE SWAP1 DUP6 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 PUSH1 0x24 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x775 JUMPI PUSH2 0x62B SWAP1 CALLDATASIZE SWAP1 DUP4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP5 PUSH1 0x44 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x771 JUMPI PUSH2 0x643 SWAP1 CALLDATASIZE SWAP1 DUP5 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH1 0x64 SWAP4 SWAP2 SWAP4 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH2 0x65B CALLER PUSH2 0xE26 JUMP JUMPDEST DUP2 DUP12 EQ DUP1 ISZERO SWAP1 PUSH2 0x767 JUMPI JUMPDEST PUSH2 0x739 JUMPI POP PUSH2 0x67C DUP10 DUP5 DUP5 DUP10 DUP6 DUP16 DUP12 SWAP1 DUP15 PUSH2 0x1158 JUMP JUMPDEST SWAP10 PUSH2 0x687 DUP6 DUP13 PUSH2 0x136E JUMP JUMPDEST DUP11 DUP13 JUMPDEST DUP11 DUP4 DUP3 LT PUSH2 0x6D0 JUMPI DUP15 DUP4 DUP15 DUP4 DUP2 PUSH2 0x69F JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 DUP2 DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH2 0x732 SWAP3 PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA DUP12 DUP12 PUSH2 0x2C8 DUP16 DUP13 DUP9 SWAP8 DUP16 SWAP3 DUP10 DUP16 DUP16 DUP16 PUSH2 0x720 SWAP2 PUSH2 0x71A PUSH2 0x29E DUP7 DUP1 SWAP5 PUSH2 0x727 SWAP10 PUSH2 0x12F3 JUMP JUMPDEST SWAP11 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP9 PUSH2 0x132D JUMP JUMPDEST SWAP2 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST DUP12 SWAP1 PUSH2 0x68A JUMP JUMPDEST DUP9 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD DUP12 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP3 DUP12 EQ ISZERO PUSH2 0x666 JUMP JUMPDEST DUP8 DUP1 REVERT JUMPDEST DUP7 DUP1 REVERT JUMPDEST DUP5 DUP1 REVERT JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x793 CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST SWAP5 SWAP4 SWAP1 SWAP4 SWAP3 SWAP2 SWAP3 PUSH2 0x1103 JUMP JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x17C JUMPI PUSH2 0x7BC DUP4 CALLDATALOAD PUSH2 0x10A6 JUMP JUMPDEST SWAP1 MLOAD SWAP2 DUP4 DUP3 LT ISZERO PUSH2 0x7CF JUMPI PUSH1 0x20 DUP4 DUP4 DUP2 MSTORE RETURN JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x21 DUP5 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 ADDRESS CALLER SUB PUSH2 0x838 JUMPI POP PUSH32 0x11C24F4EAD16507C69AC467FBD5E4EED5FB5C699626D2CC6D66421DF253886D5 SWAP1 PUSH1 0x2 SLOAD DUP2 MLOAD SWAP1 DUP2 MSTORE DUP4 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x2 SSTORE DUP1 RETURN JUMPDEST PUSH1 0x24 SWAP2 MLOAD SWAP1 PUSH4 0xE2850C59 PUSH1 0xE0 SHL DUP3 MSTORE CALLER SWAP1 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x104D JUMP JUMPDEST SWAP1 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH2 0x891 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SUB PUSH2 0x8AE JUMPI POP PUSH2 0x358 SWAP2 SWAP3 CALLDATALOAD PUSH2 0xFAB JUMP JUMPDEST MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE DUP4 SWAP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1020 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x902 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST PUSH2 0xF2D JUMP JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x108E JUMP JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0x1 SWAP3 CALLDATALOAD DUP2 MSTORE DUP1 DUP6 MSTORE KECCAK256 ADD SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x96C PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x975 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x998 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1076 JUMP JUMPDEST PUSH2 0x254 PUSH2 0xA44 DUP3 PUSH2 0xA5A PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 PUSH2 0xA3B DUP10 PUSH2 0x9FE CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 SWAP11 SWAP7 SWAP8 SWAP4 SWAP6 SWAP9 SWAP3 SWAP11 MSTORE DUP11 PUSH1 0x20 MSTORE DUP3 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0xA62 JUMPI JUMPDEST DUP10 DUP6 DUP6 DUP11 DUP11 PUSH2 0x1103 JUMP JUMPDEST SWAP10 DUP11 SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST PUSH2 0xA50 DUP4 DUP4 DUP9 DUP9 PUSH2 0x1406 JUMP JUMPDEST MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x14C1 JUMP JUMPDEST PUSH2 0xA6B CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP3 AND DUP1 SWAP3 SUB PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 POP PUSH4 0x2711897 PUSH1 0xE5 SHL DUP3 EQ SWAP2 DUP3 ISZERO PUSH2 0xADE JUMPI JUMPDEST POP MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST SWAP1 SWAP2 POP PUSH4 0x7965DB0B PUSH1 0xE0 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0xAFB JUMPI JUMPDEST POP SWAP1 CODESIZE PUSH2 0xAD5 JUMP JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0xAF3 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH2 0xB28 PUSH2 0xBEA JUMP JUMPDEST SWAP1 DUP4 PUSH1 0x24 CALLDATALOAD PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x35C JUMPI PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA SWAP6 PUSH2 0xB6C SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP6 SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP6 PUSH2 0xBAD PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP1 PUSH2 0xB87 CALLER PUSH2 0xE26 JUMP JUMPDEST PUSH2 0xB95 DUP11 DUP3 DUP14 DUP11 DUP10 DUP10 PUSH2 0x1103 JUMP JUMPDEST SWAP11 DUP12 SWAP8 PUSH2 0xBA2 DUP5 DUP11 PUSH2 0x136E JUMP JUMPDEST DUP11 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST SUB SWAP1 LOG3 DUP2 PUSH2 0xBB9 JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 CODESIZE DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0xA0 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP2 PUSH1 0x24 CALLDATALOAD SWAP2 PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0xCB7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xCB7 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0xCFF DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP3 PUSH2 0xD0D PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0xC96 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 DUP4 DUP4 ADD ADD GT PUSH2 0xC00 JUMPI DUP2 PUSH1 0x0 SWAP3 PUSH1 0x20 DUP1 SWAP4 ADD DUP4 DUP7 ADD CALLDATACOPY DUP4 ADD ADD MSTORE SWAP1 JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP1 DUP6 ADD SWAP5 DUP5 PUSH1 0x5 SHL ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP1 PUSH1 0xA0 PUSH1 0x3 NOT DUP4 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0xC00 JUMPI DUP4 PUSH2 0xD8B SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x24 CALLDATALOAD DUP4 DUP2 GT PUSH2 0xC00 JUMPI DUP3 PUSH2 0xDA6 SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP2 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xCB7 JUMPI DUP2 PUSH1 0x5 SHL PUSH1 0x40 MLOAD SWAP4 PUSH1 0x20 SWAP4 PUSH2 0xDF4 DUP6 DUP5 ADD DUP8 PUSH2 0xC96 JUMP JUMPDEST DUP6 MSTORE DUP4 DUP1 DUP7 ADD SWAP3 DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0xC00 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xE17 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0x3412D5605AC6CD444957CEDB533E5DACAD6378B4BC819EBE3652188A665066D5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xDAE2AA361DFD1CA020A396615627D436107C35EFF9FE7738A3512819782D7069 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND ISZERO PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP POP SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x1029 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1056 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x1 DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x106E JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP2 POP EQ SWAP1 JUMP JUMPDEST PUSH2 0x107F SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x2 EQ SWAP1 JUMP JUMPDEST PUSH2 0x1097 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x3 EQ SWAP1 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD DUP1 ISZERO PUSH1 0x0 EQ PUSH2 0x10C3 JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x10D1 JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x10DD JUMPI PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x20 SWAP4 SWAP3 DUP2 DUP5 MSTORE DUP5 DUP5 ADD CALLDATACOPY PUSH1 0x0 DUP3 DUP3 ADD DUP5 ADD MSTORE PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST SWAP5 PUSH2 0x1139 PUSH2 0x1152 SWAP5 SWAP6 SWAP3 SWAP4 PUSH1 0x40 MLOAD SWAP7 DUP8 SWAP6 PUSH1 0x20 DUP8 ADD SWAP10 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP11 MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0xA0 PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0xC0 DUP7 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST SWAP7 SWAP3 SWAP5 SWAP1 SWAP7 SWAP6 SWAP2 SWAP6 PUSH1 0x40 MLOAD SWAP7 PUSH1 0x20 SWAP2 DUP3 DUP10 ADD SWAP10 DUP1 PUSH1 0xC0 DUP12 ADD PUSH1 0xA0 DUP14 MSTORE MSTORE PUSH1 0xE0 DUP11 ADD SWAP2 SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH2 0x126E JUMPI POP POP POP PUSH1 0x1F NOT DUP10 DUP3 SUB DUP2 ADD PUSH1 0x40 DUP12 ADD MSTORE DUP9 DUP3 MSTORE SWAP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFB SHL SUB DUP2 GT PUSH2 0xC00 JUMPI SWAP1 DUP10 SWAP7 SWAP5 SWAP6 SWAP4 SWAP9 SWAP8 SWAP3 SWAP2 PUSH1 0x5 SHL DUP1 SWAP3 DUP11 DUP4 ADD CALLDATACOPY ADD SWAP4 DUP1 DUP9 DUP7 ADD DUP8 DUP8 SUB PUSH1 0x60 DUP10 ADD MSTORE MSTORE PUSH1 0x40 DUP6 ADD SWAP5 PUSH1 0x40 DUP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP6 DUP4 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1205 JUMPI POP POP POP POP POP POP PUSH2 0x1152 SWAP6 POP PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST SWAP2 SWAP4 SWAP7 SWAP9 POP SWAP2 SWAP4 SWAP9 SWAP10 SWAP5 SWAP7 PUSH1 0x3F NOT DUP3 DUP3 SUB ADD DUP5 MSTORE DUP10 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT ISZERO PUSH2 0xC00 JUMPI DUP4 ADD DUP7 DUP2 ADD SWAP2 SWAP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xC00 JUMPI DUP1 CALLDATASIZE SUB DUP4 SGT PUSH2 0xC00 JUMPI PUSH2 0x1257 DUP9 SWAP3 DUP4 SWAP3 PUSH1 0x1 SWAP6 PUSH2 0x10E2 JUMP JUMPDEST SWAP12 ADD SWAP5 ADD SWAP5 ADD SWAP2 DUP12 SWAP9 SWAP7 SWAP4 SWAP5 SWAP2 SWAP11 SWAP10 SWAP8 SWAP6 SWAP11 PUSH2 0x11DD JUMP JUMPDEST SWAP1 SWAP2 SWAP3 DUP4 CALLDATALOAD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP3 AND DUP1 SWAP3 SUB PUSH2 0xC00 JUMPI SWAP1 DUP2 MSTORE DUP6 ADD SWAP3 DUP6 ADD SWAP2 SWAP1 PUSH1 0x1 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 SWAP1 SWAP4 PUSH2 0x12C4 SWAP3 PUSH1 0x80 SWAP6 SWAP9 SWAP8 SWAP7 SWAP9 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP5 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x12DD JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP1 JUMP JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL DUP2 ADD CALLDATALOAD SWAP1 PUSH1 0x1E NOT DUP2 CALLDATASIZE SUB ADD DUP3 SLT ISZERO PUSH2 0xC00 JUMPI ADD SWAP1 DUP2 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 ADD DUP3 CALLDATASIZE SUB DUP2 SGT PUSH2 0xC00 JUMPI SWAP2 SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x1378 DUP3 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x13BF JUMPI PUSH1 0x2 SLOAD DUP1 DUP3 LT PUSH2 0x13A1 JUMPI POP TIMESTAMP ADD SWAP1 DUP2 TIMESTAMP GT PUSH2 0x12DD JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0x54336609 PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH2 0x1403 SWAP5 SWAP3 PUSH1 0x60 SWAP3 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 PUSH1 0x40 DUP3 ADD MSTORE ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x1450 SWAP4 PUSH1 0x0 SWAP4 SWAP3 DUP5 SWAP4 DUP3 PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP3 DUP4 CALLDATACOPY DUP2 ADD DUP6 DUP2 MSTORE SUB SWAP3 GAS CALL RETURNDATASIZE ISZERO PUSH2 0x1453 JUMPI RETURNDATASIZE SWAP1 PUSH2 0x1433 DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP2 PUSH2 0x1441 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0xC96 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x14E1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 SWAP1 PUSH2 0x14E1 JUMP JUMPDEST PUSH2 0x1464 DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI POP DUP1 ISZERO ISZERO DUP1 PUSH2 0x1492 JUMPI JUMPDEST PUSH2 0x147A JUMPI POP JUMP JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x121534C3 PUSH1 0xE3 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE REVERT JUMPDEST POP PUSH2 0x149C DUP2 PUSH2 0x108E JUMP JUMPDEST ISZERO PUSH2 0x1473 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x4 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x14CA DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0x150A JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x14F8 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST JUMP INVALID 0xD8 0xAA 0xF BALANCE SWAP5 SWAP8 BYTE 0x2A GT PUSH7 0x79F7C2090F6939 0xC8 0xD4 0xE0 BYTE 0x2A DUP14 PUSH31 0x41D55E5351469E63A26469706673582212204F1676D319CBE6CB8D2CE0E979 0xEF 0xE9 0xB2 DUP5 0xD7 SLOAD PUSH32 0x8986EDD37233EA88FBF1B7C264736F6C634300081400332F8788117E7EFF1D82 0xE9 0x26 0xEC PUSH26 0x4901D17C78024A50270940304540A733656F0D00000000000000 ","sourceMap":"1084:15205:4:-:0;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;4429:4;4390:45;4429:4;4390:45;:::i;:::-;-1:-1:-1;;;;;;1084:15205:4;;;;4472:87;;-1:-1:-1;4619:13:4;-1:-1:-1;4656:3:4;2232:4:0;;4634:20:4;;;;;4701:12;4675:39;4701:12;;4656:3;4701:12;;;:::i;:::-;1204:26;1084:15205;4675:39;:::i;:::-;;4728:40;4755:12;;;;;:::i;:::-;1204:26;1084:15205;4728:40;:::i;:::-;;4656:3;:::i;:::-;4619:13;;4634:20;;;;-1:-1:-1;4861:3:4;2232:4:0;;4839:20:4;;;;;4906:12;4880:39;4906:12;;4861:3;4906:12;;;:::i;:::-;1204:26;1084:15205;4880:39;:::i;4861:3::-;4824:13;;4839:20;4975:27;1084:15205;4839:20;1276:26;4940:20;1276:26;1084:15205;;1276:26;-1:-1:-1;1276:26:4;;1084:15205;1276:26;;;4975:27;1084:15205;;;;;;;;;4472:87;4511:37;;;:::i;:::-;;4472:87;;;1084:15205;-1:-1:-1;1084:15205:4;;;;;;;;;-1:-1:-1;;1084:15205:4;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;:::o;:::-;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;2232:4:0;-1:-1:-1;;2232:4:0;;;;;;;:::o;:::-;1084:15205:4;;;2232:4:0;;;;;;;;1204:26:4;2232:4:0;;1204:26:4;;;;;;;;;;;;:::o;:::-;1084:15205;;;1204:26;;;;;;;;6179:316:0;-1:-1:-1;;;;;1084:15205:4;2232:4:0;1084:15205:4;;;;;;;;;;2232:4:0;;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735:10:27;6370:40:0;-1:-1:-1;;;;;;;;;;;6370:40:0;;;1084:15205:4;6424:11:0;:::o;6272:217::-;6466:12;;:::o;6179:316::-;-1:-1:-1;;;;;1084:15205:4;2954:6:0;1084:15205:4;;;;;;;;;;2954:6:0;;1084:15205:4;1204:26;;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:27;6370:40:0;;;1084:15205:4;6424:11:0;:::o;6272:217::-;6466:12;;;:::o;6179:316::-;-1:-1:-1;;;;;1084:15205:4;2954:6:0;1084:15205:4;;;;;;;;;;2954:6:0;;1084:15205:4;1349:27;;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:27;6370:40:0;;;1084:15205:4;6424:11:0;:::o;6179:316::-;-1:-1:-1;;;;;1084:15205:4;2954:6:0;1084:15205:4;;;;;;;;;;2954:6:0;;1084:15205:4;1276:26;;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:27;6370:40:0;;;1084:15205:4;6424:11:0;:::o"},"deployedBytecode":{"functionDebugData":{"abi_decode_address":{"entryPoint":3077,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_address_10973":{"entryPoint":3050,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_addresst_uint256t_bytes_calldatat_bytes32t_bytes32":{"entryPoint":3144,"id":null,"parameterSlots":1,"returnSlots":6},"abi_decode_array_address_dyn_calldata":{"entryPoint":3375,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_array_address_dyn_calldatat_array_uint256_dyn_calldatat_array_bytes_calldata_dyn_calldatat_bytes32t_bytes32":{"entryPoint":3423,"id":null,"parameterSlots":1,"returnSlots":8},"abi_decode_array_uint256_dyn":{"entryPoint":3520,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_bytes":{"entryPoint":3304,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":3099,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_address_uint256_bytes_calldata":{"entryPoint":5087,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_address_uint256_bytes_calldata_bytes32_uint256":{"entryPoint":4758,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_bytes_calldata":{"entryPoint":4322,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"array_allocation_size_bytes":{"entryPoint":3277,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_access_address_dyn_calldata":{"entryPoint":4851,"id":null,"parameterSlots":3,"returnSlots":1},"calldata_array_index_access_bytes_calldata_dyn_calldata":{"entryPoint":4909,"id":null,"parameterSlots":3,"returnSlots":2},"finalize_allocation":{"entryPoint":3222,"id":null,"parameterSlots":2,"returnSlots":0},"fun_afterCall":{"entryPoint":5313,"id":3554,"parameterSlots":1,"returnSlots":0},"fun_beforeCall":{"entryPoint":5211,"id":3527,"parameterSlots":2,"returnSlots":0},"fun_checkRole":{"entryPoint":3836,"id":114,"parameterSlots":2,"returnSlots":0},"fun_checkRole_10974":{"entryPoint":3622,"id":114,"parameterSlots":1,"returnSlots":0},"fun_checkRole_10977":{"entryPoint":3753,"id":114,"parameterSlots":1,"returnSlots":0},"fun_execute":{"entryPoint":5126,"id":3487,"parameterSlots":4,"returnSlots":0},"fun_getOperationState":{"entryPoint":4262,"id":2988,"parameterSlots":1,"returnSlots":1},"fun_grantRole":{"entryPoint":3885,"id":256,"parameterSlots":2,"returnSlots":1},"fun_hashOperation":{"entryPoint":4355,"id":3025,"parameterSlots":6,"returnSlots":1},"fun_hashOperationBatch":{"entryPoint":4440,"id":3056,"parameterSlots":8,"returnSlots":1},"fun_isOperation":{"entryPoint":4128,"id":2872,"parameterSlots":1,"returnSlots":1},"fun_isOperationDone":{"entryPoint":4238,"id":2930,"parameterSlots":1,"returnSlots":1},"fun_isOperationPending":{"entryPoint":4173,"id":2898,"parameterSlots":1,"returnSlots":1},"fun_isOperationReady":{"entryPoint":4214,"id":2914,"parameterSlots":1,"returnSlots":1},"fun_revokeRole":{"entryPoint":4011,"id":294,"parameterSlots":2,"returnSlots":1},"fun_schedule":{"entryPoint":4974,"id":3262,"parameterSlots":2,"returnSlots":0},"fun_verifyCallResult":{"entryPoint":5345,"id":6667,"parameterSlots":2,"returnSlots":1},"increment_uint256":{"entryPoint":4814,"id":null,"parameterSlots":1,"returnSlots":1},"read_from_calldatat_address":{"entryPoint":4889,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a26469706673582212204f1676d319cbe6cb8d2ce0e979efe9b284d7547f8986edd37233ea88fbf1b7c264736f6c63430008140033","opcodes":"PUSH1 0x40 PUSH1 0x80 DUP2 MSTORE PUSH1 0x4 SWAP1 DUP2 CALLDATASIZE LT ISZERO PUSH2 0x20 JUMPI JUMPDEST POP POP CALLDATASIZE ISZERO PUSH2 0x1E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST STOP JUMPDEST PUSH1 0x0 SWAP2 DUP3 CALLDATALOAD PUSH1 0xE0 SHR SWAP1 DUP2 PUSH4 0x1D5062A EQ PUSH2 0xB0C JUMPI DUP2 PUSH4 0x1FFC9A7 EQ PUSH2 0xA99 JUMPI DUP2 PUSH4 0x7BD0265 EQ PUSH2 0xA70 JUMPI DUP4 DUP3 PUSH4 0x134008D3 EQ PUSH2 0x9C6 JUMPI POP DUP2 PUSH4 0x13BC9F20 EQ PUSH2 0x9A6 JUMPI DUP2 PUSH4 0x150B7A02 EQ PUSH2 0x951 JUMPI DUP2 PUSH4 0x248A9CA3 EQ PUSH2 0x927 JUMPI DUP2 PUSH4 0x2AB0F529 EQ PUSH2 0x907 JUMPI DUP2 PUSH4 0x2F2FF15D EQ PUSH2 0x8DD JUMPI DUP2 PUSH4 0x31D50750 EQ PUSH2 0x8BD JUMPI DUP2 PUSH4 0x36568ABE EQ PUSH2 0x877 JUMPI DUP2 PUSH4 0x584B153E EQ PUSH2 0x84E JUMPI DUP2 PUSH4 0x64D62353 EQ PUSH2 0x7E2 JUMPI DUP2 PUSH4 0x7958004C EQ PUSH2 0x79F JUMPI DUP2 PUSH4 0x8065657F EQ PUSH2 0x77D JUMPI DUP2 PUSH4 0x8F2A0BB0 EQ PUSH2 0x5E0 JUMPI DUP2 PUSH4 0x8F61F4F5 EQ PUSH2 0x5A5 JUMPI DUP2 PUSH4 0x91D14854 EQ PUSH2 0x55F JUMPI DUP2 PUSH4 0xA217FDDF EQ PUSH2 0x544 JUMPI DUP2 PUSH4 0xB08E51C0 EQ PUSH2 0x509 JUMPI DUP2 PUSH4 0xB1C5F427 EQ PUSH2 0x4DD JUMPI DUP2 PUSH4 0xBC197C81 EQ PUSH2 0x457 JUMPI DUP2 PUSH4 0xC4D252F5 EQ PUSH2 0x388 JUMPI DUP2 PUSH4 0xD45C4435 EQ PUSH2 0x360 JUMPI DUP2 PUSH4 0xD547741F EQ PUSH2 0x31B JUMPI DUP2 PUSH4 0xE38335E5 EQ PUSH2 0x1D8 JUMPI DUP2 PUSH4 0xF23A6E61 EQ PUSH2 0x180 JUMPI POP PUSH4 0xF27A0C92 SUB PUSH2 0x11 JUMPI CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH1 0x2 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP DUP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x19B PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x1A4 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x1C7 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST DUP1 REVERT JUMPDEST SWAP1 POP PUSH2 0x1E3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP1 SWAP9 SWAP5 SWAP6 SWAP2 SWAP4 SWAP3 SWAP7 SWAP8 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 MSTORE DUP11 PUSH1 0x20 MSTORE DUP6 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP7 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0x30D JUMPI JUMPDEST DUP4 DUP4 EQ DUP1 ISZERO SWAP1 PUSH2 0x303 JUMPI JUMPDEST PUSH2 0x2D5 JUMPI POP PUSH2 0x23A PUSH2 0x241 SWAP2 DUP11 DUP7 DUP11 DUP8 DUP12 DUP9 DUP16 PUSH2 0x1158 JUMP JUMPDEST SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST DUP9 JUMPDEST DUP2 DUP2 LT PUSH2 0x257 JUMPI DUP10 PUSH2 0x254 DUP11 PUSH2 0x14C1 JUMP JUMPDEST DUP1 RETURN JUMPDEST DUP1 DUP1 DUP11 PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 DUP11 DUP11 PUSH2 0x2C8 PUSH2 0x2B0 DUP16 SWAP9 DUP13 PUSH2 0x2A9 DUP3 DUP15 PUSH2 0x2A3 DUP16 PUSH2 0x2D0 SWAP16 PUSH2 0x29E SWAP2 DUP6 SWAP2 PUSH2 0x12F3 JUMP JUMPDEST PUSH2 0x1319 JUMP JUMPDEST SWAP8 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP6 PUSH2 0x132D JUMP JUMPDEST SWAP1 PUSH2 0x2BD DUP3 DUP3 DUP8 DUP8 PUSH2 0x1406 JUMP JUMPDEST DUP14 MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x12CE JUMP JUMPDEST PUSH2 0x243 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD DUP6 SWAP1 MSTORE PUSH1 0x40 DUP4 ADD DUP5 SWAP1 MSTORE SWAP2 DUP3 SWAP2 POP PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP5 DUP4 EQ ISZERO PUSH2 0x222 JUMP JUMPDEST PUSH2 0x316 CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0x217 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x353 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST SWAP4 DUP4 DUP8 MSTORE DUP7 PUSH1 0x20 MSTORE DUP7 KECCAK256 ADD SLOAD CALLER SWAP1 PUSH2 0xEFC JUMP JUMPDEST PUSH2 0xFAB JUMP JUMPDEST POP DUP1 RETURN JUMPDEST DUP3 DUP1 REVERT JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 DUP3 SWAP2 CALLDATALOAD DUP2 MSTORE PUSH1 0x1 DUP5 MSTORE KECCAK256 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP1 DUP6 MSTORE DUP5 PUSH1 0x20 MSTORE DUP3 DUP6 KECCAK256 CALLER DUP7 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP7 KECCAK256 SLOAD AND ISZERO PUSH2 0x43C JUMPI POP PUSH2 0x3E6 DUP4 PUSH2 0x104D JUMP JUMPDEST ISZERO PUSH2 0x420 JUMPI POP DUP3 SWAP1 DUP3 DUP3 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE DUP2 KECCAK256 SSTORE PUSH32 0xBAA1EB22F2A492BA1A5FEA61B8DF4D27C6C8B5F3971E63BB58FA14FF72EEDB70 DUP3 DUP1 LOG2 DUP1 RETURN JUMPDEST DUP3 PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x6 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE CALLER SWAP1 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x472 PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x47B PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x49C SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x4B4 SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x4CF SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xBC197C81 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x4F3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP7 SWAP6 SWAP1 SWAP6 SWAP5 SWAP2 SWAP5 SWAP4 SWAP3 SWAP4 PUSH2 0x1158 JUMP JUMPDEST SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0xFF SWAP3 PUSH2 0x580 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLDATALOAD DUP3 MSTORE DUP2 DUP7 MSTORE DUP3 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP3 MSTORE DUP6 MSTORE KECCAK256 SLOAD SWAP2 MLOAD SWAP2 AND ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP3 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x779 JUMPI PUSH2 0x613 SWAP1 CALLDATASIZE SWAP1 DUP6 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 PUSH1 0x24 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x775 JUMPI PUSH2 0x62B SWAP1 CALLDATASIZE SWAP1 DUP4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP5 PUSH1 0x44 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x771 JUMPI PUSH2 0x643 SWAP1 CALLDATASIZE SWAP1 DUP5 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH1 0x64 SWAP4 SWAP2 SWAP4 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH2 0x65B CALLER PUSH2 0xE26 JUMP JUMPDEST DUP2 DUP12 EQ DUP1 ISZERO SWAP1 PUSH2 0x767 JUMPI JUMPDEST PUSH2 0x739 JUMPI POP PUSH2 0x67C DUP10 DUP5 DUP5 DUP10 DUP6 DUP16 DUP12 SWAP1 DUP15 PUSH2 0x1158 JUMP JUMPDEST SWAP10 PUSH2 0x687 DUP6 DUP13 PUSH2 0x136E JUMP JUMPDEST DUP11 DUP13 JUMPDEST DUP11 DUP4 DUP3 LT PUSH2 0x6D0 JUMPI DUP15 DUP4 DUP15 DUP4 DUP2 PUSH2 0x69F JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 DUP2 DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH2 0x732 SWAP3 PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA DUP12 DUP12 PUSH2 0x2C8 DUP16 DUP13 DUP9 SWAP8 DUP16 SWAP3 DUP10 DUP16 DUP16 DUP16 PUSH2 0x720 SWAP2 PUSH2 0x71A PUSH2 0x29E DUP7 DUP1 SWAP5 PUSH2 0x727 SWAP10 PUSH2 0x12F3 JUMP JUMPDEST SWAP11 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP9 PUSH2 0x132D JUMP JUMPDEST SWAP2 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST DUP12 SWAP1 PUSH2 0x68A JUMP JUMPDEST DUP9 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD DUP12 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP3 DUP12 EQ ISZERO PUSH2 0x666 JUMP JUMPDEST DUP8 DUP1 REVERT JUMPDEST DUP7 DUP1 REVERT JUMPDEST DUP5 DUP1 REVERT JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x793 CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST SWAP5 SWAP4 SWAP1 SWAP4 SWAP3 SWAP2 SWAP3 PUSH2 0x1103 JUMP JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x17C JUMPI PUSH2 0x7BC DUP4 CALLDATALOAD PUSH2 0x10A6 JUMP JUMPDEST SWAP1 MLOAD SWAP2 DUP4 DUP3 LT ISZERO PUSH2 0x7CF JUMPI PUSH1 0x20 DUP4 DUP4 DUP2 MSTORE RETURN JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x21 DUP5 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 ADDRESS CALLER SUB PUSH2 0x838 JUMPI POP PUSH32 0x11C24F4EAD16507C69AC467FBD5E4EED5FB5C699626D2CC6D66421DF253886D5 SWAP1 PUSH1 0x2 SLOAD DUP2 MLOAD SWAP1 DUP2 MSTORE DUP4 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x2 SSTORE DUP1 RETURN JUMPDEST PUSH1 0x24 SWAP2 MLOAD SWAP1 PUSH4 0xE2850C59 PUSH1 0xE0 SHL DUP3 MSTORE CALLER SWAP1 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x104D JUMP JUMPDEST SWAP1 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH2 0x891 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SUB PUSH2 0x8AE JUMPI POP PUSH2 0x358 SWAP2 SWAP3 CALLDATALOAD PUSH2 0xFAB JUMP JUMPDEST MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE DUP4 SWAP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1020 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x902 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST PUSH2 0xF2D JUMP JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x108E JUMP JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0x1 SWAP3 CALLDATALOAD DUP2 MSTORE DUP1 DUP6 MSTORE KECCAK256 ADD SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x96C PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x975 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x998 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1076 JUMP JUMPDEST PUSH2 0x254 PUSH2 0xA44 DUP3 PUSH2 0xA5A PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 PUSH2 0xA3B DUP10 PUSH2 0x9FE CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 SWAP11 SWAP7 SWAP8 SWAP4 SWAP6 SWAP9 SWAP3 SWAP11 MSTORE DUP11 PUSH1 0x20 MSTORE DUP3 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0xA62 JUMPI JUMPDEST DUP10 DUP6 DUP6 DUP11 DUP11 PUSH2 0x1103 JUMP JUMPDEST SWAP10 DUP11 SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST PUSH2 0xA50 DUP4 DUP4 DUP9 DUP9 PUSH2 0x1406 JUMP JUMPDEST MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x14C1 JUMP JUMPDEST PUSH2 0xA6B CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP3 AND DUP1 SWAP3 SUB PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 POP PUSH4 0x2711897 PUSH1 0xE5 SHL DUP3 EQ SWAP2 DUP3 ISZERO PUSH2 0xADE JUMPI JUMPDEST POP MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST SWAP1 SWAP2 POP PUSH4 0x7965DB0B PUSH1 0xE0 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0xAFB JUMPI JUMPDEST POP SWAP1 CODESIZE PUSH2 0xAD5 JUMP JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0xAF3 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH2 0xB28 PUSH2 0xBEA JUMP JUMPDEST SWAP1 DUP4 PUSH1 0x24 CALLDATALOAD PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x35C JUMPI PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA SWAP6 PUSH2 0xB6C SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP6 SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP6 PUSH2 0xBAD PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP1 PUSH2 0xB87 CALLER PUSH2 0xE26 JUMP JUMPDEST PUSH2 0xB95 DUP11 DUP3 DUP14 DUP11 DUP10 DUP10 PUSH2 0x1103 JUMP JUMPDEST SWAP11 DUP12 SWAP8 PUSH2 0xBA2 DUP5 DUP11 PUSH2 0x136E JUMP JUMPDEST DUP11 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST SUB SWAP1 LOG3 DUP2 PUSH2 0xBB9 JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 CODESIZE DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0xA0 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP2 PUSH1 0x24 CALLDATALOAD SWAP2 PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0xCB7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xCB7 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0xCFF DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP3 PUSH2 0xD0D PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0xC96 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 DUP4 DUP4 ADD ADD GT PUSH2 0xC00 JUMPI DUP2 PUSH1 0x0 SWAP3 PUSH1 0x20 DUP1 SWAP4 ADD DUP4 DUP7 ADD CALLDATACOPY DUP4 ADD ADD MSTORE SWAP1 JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP1 DUP6 ADD SWAP5 DUP5 PUSH1 0x5 SHL ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP1 PUSH1 0xA0 PUSH1 0x3 NOT DUP4 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0xC00 JUMPI DUP4 PUSH2 0xD8B SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x24 CALLDATALOAD DUP4 DUP2 GT PUSH2 0xC00 JUMPI DUP3 PUSH2 0xDA6 SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP2 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xCB7 JUMPI DUP2 PUSH1 0x5 SHL PUSH1 0x40 MLOAD SWAP4 PUSH1 0x20 SWAP4 PUSH2 0xDF4 DUP6 DUP5 ADD DUP8 PUSH2 0xC96 JUMP JUMPDEST DUP6 MSTORE DUP4 DUP1 DUP7 ADD SWAP3 DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0xC00 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xE17 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0x3412D5605AC6CD444957CEDB533E5DACAD6378B4BC819EBE3652188A665066D5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xDAE2AA361DFD1CA020A396615627D436107C35EFF9FE7738A3512819782D7069 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND ISZERO PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP POP SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x1029 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1056 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x1 DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x106E JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP2 POP EQ SWAP1 JUMP JUMPDEST PUSH2 0x107F SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x2 EQ SWAP1 JUMP JUMPDEST PUSH2 0x1097 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x3 EQ SWAP1 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD DUP1 ISZERO PUSH1 0x0 EQ PUSH2 0x10C3 JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x10D1 JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x10DD JUMPI PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x20 SWAP4 SWAP3 DUP2 DUP5 MSTORE DUP5 DUP5 ADD CALLDATACOPY PUSH1 0x0 DUP3 DUP3 ADD DUP5 ADD MSTORE PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST SWAP5 PUSH2 0x1139 PUSH2 0x1152 SWAP5 SWAP6 SWAP3 SWAP4 PUSH1 0x40 MLOAD SWAP7 DUP8 SWAP6 PUSH1 0x20 DUP8 ADD SWAP10 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP11 MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0xA0 PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0xC0 DUP7 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST SWAP7 SWAP3 SWAP5 SWAP1 SWAP7 SWAP6 SWAP2 SWAP6 PUSH1 0x40 MLOAD SWAP7 PUSH1 0x20 SWAP2 DUP3 DUP10 ADD SWAP10 DUP1 PUSH1 0xC0 DUP12 ADD PUSH1 0xA0 DUP14 MSTORE MSTORE PUSH1 0xE0 DUP11 ADD SWAP2 SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH2 0x126E JUMPI POP POP POP PUSH1 0x1F NOT DUP10 DUP3 SUB DUP2 ADD PUSH1 0x40 DUP12 ADD MSTORE DUP9 DUP3 MSTORE SWAP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFB SHL SUB DUP2 GT PUSH2 0xC00 JUMPI SWAP1 DUP10 SWAP7 SWAP5 SWAP6 SWAP4 SWAP9 SWAP8 SWAP3 SWAP2 PUSH1 0x5 SHL DUP1 SWAP3 DUP11 DUP4 ADD CALLDATACOPY ADD SWAP4 DUP1 DUP9 DUP7 ADD DUP8 DUP8 SUB PUSH1 0x60 DUP10 ADD MSTORE MSTORE PUSH1 0x40 DUP6 ADD SWAP5 PUSH1 0x40 DUP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP6 DUP4 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1205 JUMPI POP POP POP POP POP POP PUSH2 0x1152 SWAP6 POP PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST SWAP2 SWAP4 SWAP7 SWAP9 POP SWAP2 SWAP4 SWAP9 SWAP10 SWAP5 SWAP7 PUSH1 0x3F NOT DUP3 DUP3 SUB ADD DUP5 MSTORE DUP10 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT ISZERO PUSH2 0xC00 JUMPI DUP4 ADD DUP7 DUP2 ADD SWAP2 SWAP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xC00 JUMPI DUP1 CALLDATASIZE SUB DUP4 SGT PUSH2 0xC00 JUMPI PUSH2 0x1257 DUP9 SWAP3 DUP4 SWAP3 PUSH1 0x1 SWAP6 PUSH2 0x10E2 JUMP JUMPDEST SWAP12 ADD SWAP5 ADD SWAP5 ADD SWAP2 DUP12 SWAP9 SWAP7 SWAP4 SWAP5 SWAP2 SWAP11 SWAP10 SWAP8 SWAP6 SWAP11 PUSH2 0x11DD JUMP JUMPDEST SWAP1 SWAP2 SWAP3 DUP4 CALLDATALOAD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP3 AND DUP1 SWAP3 SUB PUSH2 0xC00 JUMPI SWAP1 DUP2 MSTORE DUP6 ADD SWAP3 DUP6 ADD SWAP2 SWAP1 PUSH1 0x1 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 SWAP1 SWAP4 PUSH2 0x12C4 SWAP3 PUSH1 0x80 SWAP6 SWAP9 SWAP8 SWAP7 SWAP9 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP5 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x12DD JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP1 JUMP JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL DUP2 ADD CALLDATALOAD SWAP1 PUSH1 0x1E NOT DUP2 CALLDATASIZE SUB ADD DUP3 SLT ISZERO PUSH2 0xC00 JUMPI ADD SWAP1 DUP2 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 ADD DUP3 CALLDATASIZE SUB DUP2 SGT PUSH2 0xC00 JUMPI SWAP2 SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x1378 DUP3 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x13BF JUMPI PUSH1 0x2 SLOAD DUP1 DUP3 LT PUSH2 0x13A1 JUMPI POP TIMESTAMP ADD SWAP1 DUP2 TIMESTAMP GT PUSH2 0x12DD JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0x54336609 PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH2 0x1403 SWAP5 SWAP3 PUSH1 0x60 SWAP3 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 PUSH1 0x40 DUP3 ADD MSTORE ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x1450 SWAP4 PUSH1 0x0 SWAP4 SWAP3 DUP5 SWAP4 DUP3 PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP3 DUP4 CALLDATACOPY DUP2 ADD DUP6 DUP2 MSTORE SUB SWAP3 GAS CALL RETURNDATASIZE ISZERO PUSH2 0x1453 JUMPI RETURNDATASIZE SWAP1 PUSH2 0x1433 DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP2 PUSH2 0x1441 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0xC96 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x14E1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 SWAP1 PUSH2 0x14E1 JUMP JUMPDEST PUSH2 0x1464 DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI POP DUP1 ISZERO ISZERO DUP1 PUSH2 0x1492 JUMPI JUMPDEST PUSH2 0x147A JUMPI POP JUMP JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x121534C3 PUSH1 0xE3 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE REVERT JUMPDEST POP PUSH2 0x149C DUP2 PUSH2 0x108E JUMP JUMPDEST ISZERO PUSH2 0x1473 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x4 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x14CA DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0x150A JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x14F8 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST JUMP INVALID 0xD8 0xAA 0xF BALANCE SWAP5 SWAP8 BYTE 0x2A GT PUSH7 0x79F7C2090F6939 0xC8 0xD4 0xE0 BYTE 0x2A DUP14 PUSH31 0x41D55E5351469E63A26469706673582212204F1676D319CBE6CB8D2CE0E979 0xEF 0xE9 0xB2 DUP5 0xD7 SLOAD PUSH32 0x8986EDD37233EA88FBF1B7C264736F6C63430008140033000000000000000000 ","sourceMap":"1084:15205:4:-:0;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8005:9;1084:15205;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;:::i;:::-;;;;:::i;:::-;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1084:15205:4;-1:-1:-1;;;1084:15205:4;;;;;;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;;5347:26;5343:87;;1084:15205;13389:31;;;;;:68;;;1084:15205;13385:184;;13592:64;;13683:11;13592:64;;;;;;;;;:::i;:::-;13683:11;;;:::i;:::-;13710:13;13725:18;;;;;;14019:2;;;;:::i;:::-;1084:15205;;13745:3;13781:10;;;13945:43;13781:10;;13945:43;13869:11;13781:10;;;13821:9;13781:10;;;;13745:3;13781:10;;;;;;:::i;:::-;;:::i;:::-;13821:9;;:::i;:::-;1084:15205;13869:11;;:::i;:::-;13918:7;;;;;;;:::i;:::-;1084:15205;;13945:43;;;;;:::i;:::-;;;;13745:3;:::i;:::-;13710:13;;13385:184;1084:15205;;-1:-1:-1;;;;;;13480:78:4;;;;;1084:15205;;;;;;;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;13480:78;;;13389:68;13424:33;;;;;13389:68;;5343:87;5406:12;735:10:27;5406:12:4;:::i;:::-;5343:87;;1084:15205;;;;;;;;;;;;;;;4747:26:0;1084:15205:4;;3282:12:0;1084:15205:4;;;:::i;:::-;;;;;;;;;;3901:22:0;1084:15205:4;735:10:27;3282:12:0;;:::i;:::-;4747:26;:::i;:::-;;1084:15205:4;;;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;1349:27;;1084:15205;;;;;;;;;735:10:27;1084:15205:4;;;;;;;;;;3519:23:0;3515:108;;11400:22:4;;;;:::i;:::-;11399:23;11395:230;;1084:15205;;;;;;;;;;;;11672:13;;;;1084:15205;;11395:230;1084:15205;;;;11445:169;;;;;;;;1084:15205;11515:85;1084:15205;;;;11445:169;3515:108:0;1084:15205:4;;;3565:47:0;;;;;;735:10:27;3565:47:0;;;1084:15205:4;;;;;3565:47:0;1084:15205:4;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;:::i;:::-;;;;:::i;:::-;-1:-1:-1;;;;;;1084:15205:4;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1084:15205:4;-1:-1:-1;;;1084:15205:4;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;1349:27;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1204:26;1084:15205;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;735:10:27;3282:12:0;735:10:27;3282:12:0;:::i;:::-;10130:31:4;;;;;:68;;;1084:15205;10126:184;;10333:64;;;;;;;;;;;;:::i;:::-;10421:5;;;;;:::i;:::-;10442:13;;10457:18;;;;;;;10601;;;;;10597:72;;1084:15205;;;10597:72;10640:18;1084:15205;;;;;;;10640:18;10597:72;;;1084:15205;;;10477:3;;10522:10;10501:76;10522:10;;10501:76;10522:10;;;;;;;;;;10534:9;10522:10;;;;;;10545:11;10522:10;;:::i;:::-;10534:9;;:::i;:::-;1084:15205;10545:11;;:::i;:::-;1084:15205;;10501:76;;;;;:::i;10477:3::-;10442:13;;;;10126:184;1084:15205;;-1:-1:-1;;;;;;10221:78:4;;;;;1084:15205;;;;;;;;;;;;;;;;;;;;;13480:78;;;10130:68;10165:33;;;;;10130:68;;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;1084:15205:4;;;;;;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;15612:4;;735:10:27;15594:23:4;15590:95;;1084:15205;15699:35;1084:15205;15714:9;1084:15205;;;;;;;;;;;15699:35;15714:9;1084:15205;;;15590:95;1084:15205;;;15640:34;;;;;;735:10:27;15640:34:4;;;1084:15205;15640:34;1084:15205;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;735:10:27;;-1:-1:-1;;;;;1084:15205:4;;5421:34:0;5417:102;;1084:15205:4;5529:37:0;1084:15205:4;;;5529:37:0;:::i;5417:102::-;1084:15205:4;-1:-1:-1;;;5478:30:0;;1084:15205:4;;5478:30:0;1084:15205:4;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;4330:25:0;1084:15205:4;;3282:12:0;1084:15205:4;;;:::i;3282:12:0:-;4330:25;:::i;1084:15205:4:-;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;;;;;;;3901:22:0;1084:15205:4;;;;;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;:::i;:::-;;;;:::i;:::-;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1084:15205:4;-1:-1:-1;;;1084:15205:4;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;:::i;:::-;12615:2;12482:11;1084:15205;12551:43;;12399:56;1084:15205;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;5347:26;5343:87;;1084:15205;12399:56;;;;;;:::i;:::-;12482:11;;;;;:::i;:::-;12528:7;;;;;;:::i;:::-;1084:15205;12551:43;;;;;:::i;:::-;;;;12615:2;:::i;5343:87::-;5406:12;735:10:27;5406:12:4;:::i;:::-;5343:87;;1084:15205;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1084:15205:4;;;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;775:49:19;;;:89;;;;1084:15205:4;;;;;;;;;775:89:19;2688:32:0;;-1:-1:-1;;;;2673:47:0;;;:87;;;;775:89:19;;;;;;2673:87:0;-1:-1:-1;;;862:40:38;;-1:-1:-1;2673:87:0;;;1084:15205:4;;;;;;;;;-1:-1:-1;;1084:15205:4;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;9430:61;1084:15205;;;;;;;:::i;:::-;;;;;;;9430:61;1084:15205;;;;;735:10:27;3282:12:0;735:10:27;3282:12:0;:::i;:::-;9332:53:4;;;;;;;;:::i;:::-;9409:5;;;;;;;:::i;:::-;1084:15205;;9430:61;;;;;:::i;:::-;;;;9505:18;9501:72;;1084:15205;;;9501:72;9544:18;1084:15205;;;;;;;9544:18;9501:72;;;1084:15205;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;:::o;:::-;;-1:-1:-1;;1084:15205:4;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;-1:-1:-1;;1084:15205:4;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;1084:15205:4;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;3432:197:0;-1:-1:-1;;;;;1084:15205:4;2954:6:0;1084:15205:4;;;;;;;;;;1204:26;;1084:15205;;3519:23:0;3515:108;;3432:197;;:::o;3515:108::-;1084:15205:4;;;;;3565:47:0;;;;;;;;;1084:15205:4;;;;;3565:47:0;3432:197;-1:-1:-1;;;;;1084:15205:4;2954:6:0;1084:15205:4;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1276:26:4;1084:15205;;3519:23:0;3515:108;;3432:197;;:::o;:::-;1084:15205:4;2954:6:0;1084:15205:4;2954:6:0;1084:15205:4;;;2954:6:0;1084:15205:4;;;;;;;;;;2954:6:0;1084:15205:4;;;;;2954:6:0;1084:15205:4;;;3519:23:0;3515:108;;3432:197;;:::o;6179:316::-;;2954:6;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6276:23:0;6272:217;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6370:40:0;735:10:27;6370:40:0;;;1084:15205:4;6424:11:0;:::o;6272:217::-;6466:12;;;:::o;6730:317::-;;2954:6;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6824:217:0;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;6922:40:0;735:10:27;6922:40:0;;;1084:15205:4;6976:11:0;:::o;5998:129:4:-;6075:21;5998:129;6075:21;:::i;:::-;1084:15205;;;;;;6075:45;;5998:129;:::o;1084:15205::-;;;;6100:20;1084:15205;;;;;6100:20;1084:15205;6262:209;6362:21;6262:209;6362:21;:::i;:::-;1084:15205;;;;;;6409:22;6400:31;;:64;;;;;6393:71;6262:209;:::o;6400:64::-;6444:20;6435:29;;;6262:209;:::o;6607:134::-;6689:21;6607:134;6689:21;:::i;:::-;1084:15205;;;;;;6714:20;6689:45;6607:134;:::o;6820:132::-;6901:21;6820:132;6901:21;:::i;:::-;1084:15205;;;;;;6926:19;6901:44;6820:132;:::o;7270:460::-;-1:-1:-1;1084:15205:4;7189:11;1084:15205;;;-1:-1:-1;1084:15205:4;;7414:14;;7410:314;7414:14;;;7444:27;-1:-1:-1;7444:27:4;:::o;7410:314::-;7189:11;7492:28;;7189:11;;7536:26;7543:19;7536:26;:::o;7488:236::-;7595:15;-1:-1:-1;7595:15:4;;;7189:11;7626:29;:::o;7579:145::-;7693:20;7686:27;:::o;1084:15205::-;;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;;;;;;;-1:-1:-1;;1084:15205:4;;;;:::o;8134:279::-;;1084:15205;8355:50;8134:279;;;;1084:15205;;8355:50;;;;;;1084:15205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8355:50;1084:15205;;8355:50;;;;;;:::i;:::-;1084:15205;8345:61;;8134:279;:::o;8529:320::-;;;;;;;;;1084:15205;;8785:56;;;;;;1084:15205;;;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1084:15205:4;;;;;;;;;;;;;8785:56;1084:15205;;;;;;;;;;8785:56;;;;;;;;:::i;1084:15205::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::o;:::-;-1:-1:-1;;1084:15205:4;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15205:4;;;;;;;;;;;;;;;:::o;10776:399::-;;10844:15;;;:::i;:::-;10840:131;;8005:9;1084:15205;11026:16;;;11022:96;;11145:15;;1084:15205;11145:15;;;1084:15205;;;-1:-1:-1;1084:15205:4;11127:11;1084:15205;;;-1:-1:-1;1084:15205:4;;10776:399::o;11022:96::-;1084:15205;;;;;11065:42;;;;;;;;;1084:15205;;;;;11065:42;10840:131;1084:15205;;-1:-1:-1;;;10882:78:4;;1084:15205;10882:78;;1084:15205;;;;;;;;;;10882:78;1084:15205;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;14092:232::-;14272:45;14092:232;14231:31;14092:232;;;;1084:15205;;;;;;;;;;;;;14231:31;;;;1084:15205;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;14231:31;1084:15205;;;;14272:45;:::i;:::-;;14092:232::o;1084:15205::-;;;14272:45;:::i;14407:367::-;14489:20;;;:::i;:::-;14488:21;14484:137;;14634:25;;;;:58;;;14407:367;14630:138;;14407:367;:::o;14630:138::-;1084:15205;;;;14715:42;;;;;;;;;1084:15205;14715:42;14634:58;14664:28;;;;:::i;:::-;14663:29;14634:58;;14484:137;1084:15205;;;;11445:169;;;;14532:78;;1084:15205;14532:78;;1084:15205;;;;;;14532:78;14856:236;14911:20;;;:::i;:::-;14910:21;14906:137;;-1:-1:-1;1084:15205:4;1434:1;1084:15205;;1434:1;1084:15205;-1:-1:-1;1084:15205:4;;14856:236::o;5221:224:26:-;;;;5337:8;;-1:-1:-1;1084:15205:4;;5690:21:26;:17;;5815:158;;;;;;5686:354;1084:15205:4;;-1:-1:-1;;;6010:19:26;;;;;5333:106;5411:17::o"},"methodIdentifiers":{"CANCELLER_ROLE()":"b08e51c0","DEFAULT_ADMIN_ROLE()":"a217fddf","EXECUTOR_ROLE()":"07bd0265","PROPOSER_ROLE()":"8f61f4f5","cancel(bytes32)":"c4d252f5","execute(address,uint256,bytes,bytes32,bytes32)":"134008d3","executeBatch(address[],uint256[],bytes[],bytes32,bytes32)":"e38335e5","getMinDelay()":"f27a0c92","getOperationState(bytes32)":"7958004c","getRoleAdmin(bytes32)":"248a9ca3","getTimestamp(bytes32)":"d45c4435","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","hashOperation(address,uint256,bytes,bytes32,bytes32)":"8065657f","hashOperationBatch(address[],uint256[],bytes[],bytes32,bytes32)":"b1c5f427","isOperation(bytes32)":"31d50750","isOperationDone(bytes32)":"2ab0f529","isOperationPending(bytes32)":"584b153e","isOperationReady(bytes32)":"13bc9f20","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","schedule(address,uint256,bytes,bytes32,bytes32,uint256)":"01d5062a","scheduleBatch(address[],uint256[],bytes[],bytes32,bytes32,uint256)":"8f2a0bb0","supportsInterface(bytes4)":"01ffc9a7","updateDelay(uint256)":"64d62353"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"minDelay\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"proposers\",\"type\":\"address[]\"},{\"internalType\":\"address[]\",\"name\":\"executors\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"delay\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minDelay\",\"type\":\"uint256\"}],\"name\":\"TimelockInsufficientDelay\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payloads\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"TimelockInvalidOperationLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"TimelockUnauthorizedCaller\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"predecessorId\",\"type\":\"bytes32\"}],\"name\":\"TimelockUnexecutedPredecessor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"TimelockUnexpectedOperationState\",\"type\":\"error\"},{\"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\":false,\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"CallSalt\",\"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\":\"CANCELLER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"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\":[{\"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\":\"payload\",\"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\":\"payloads\",\"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\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getOperationState\",\"outputs\":[{\"internalType\":\"enum TimelockController.OperationState\",\"name\":\"\",\"type\":\"uint8\"}],\"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\":\"\",\"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\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"payloads\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"hashOperationBatch\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperation\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperationDone\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperationPending\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperationReady\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"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\":\"payloads\",\"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\"}],\"devdoc\":{\"details\":\"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.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"TimelockInsufficientDelay(uint256,uint256)\":[{\"details\":\"The schedule operation doesn't meet the minimum delay.\"}],\"TimelockInvalidOperationLength(uint256,uint256,uint256)\":[{\"details\":\"Mismatch between the parameters length for an operation call.\"}],\"TimelockUnauthorizedCaller(address)\":[{\"details\":\"The caller account is not authorized.\"}],\"TimelockUnexecutedPredecessor(bytes32)\":[{\"details\":\"The predecessor to an operation not yet done.\"}],\"TimelockUnexpectedOperationState(bytes32,bytes32)\":[{\"details\":\"The current state of an operation is not as required. The `expectedStates` is a bitmap with the bits enabled for each OperationState enum position counting from right to left. See {_encodeStateBitmap}.\"}]},\"events\":{\"CallExecuted(bytes32,uint256,address,uint256,bytes)\":{\"details\":\"Emitted when a call is performed as part of operation `id`.\"},\"CallSalt(bytes32,bytes32)\":{\"details\":\"Emitted when new proposal is scheduled with non-zero salt.\"},\"CallScheduled(bytes32,uint256,address,uint256,bytes,bytes32,uint256)\":{\"details\":\"Emitted when a call is scheduled as part of operation `id`.\"},\"Cancelled(bytes32)\":{\"details\":\"Emitted when operation `id` is cancelled.\"},\"MinDelayChange(uint256,uint256)\":{\"details\":\"Emitted when the minimum delay for future operations is modified.\"},\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"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.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"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`)\"}},\"kind\":\"dev\",\"methods\":{\"cancel(bytes32)\":{\"details\":\"Cancel an operation. Requirements: - the caller must have the 'canceller' role.\"},\"constructor\":{\"details\":\"Initializes the contract with the following parameters: - `minDelay`: initial minimum delay in seconds for operations - `proposers`: accounts to be granted proposer and canceller roles - `executors`: accounts to be granted executor role - `admin`: optional account to be granted admin role; disable with zero address IMPORTANT: The optional admin can aid with initial configuration of roles after deployment without being subject to delay, but this role should be subsequently renounced in favor of administration through timelocked proposals. Previous versions of this contract would assign this admin to the deployer automatically and should be renounced as well.\"},\"execute(address,uint256,bytes,bytes32,bytes32)\":{\"details\":\"Execute an (ready) operation containing a single transaction. Emits a {CallExecuted} event. Requirements: - the caller must have the 'executor' role.\"},\"executeBatch(address[],uint256[],bytes[],bytes32,bytes32)\":{\"details\":\"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.\"},\"getMinDelay()\":{\"details\":\"Returns the minimum delay in seconds for an operation to become valid. This value can be changed by executing an operation that calls `updateDelay`.\"},\"getOperationState(bytes32)\":{\"details\":\"Returns operation state.\"},\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"getTimestamp(bytes32)\":{\"details\":\"Returns the timestamp at which an operation becomes ready (0 for unset operations, 1 for done operations).\"},\"grantRole(bytes32,address)\":{\"details\":\"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. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"hashOperation(address,uint256,bytes,bytes32,bytes32)\":{\"details\":\"Returns the identifier of an operation containing a single transaction.\"},\"hashOperationBatch(address[],uint256[],bytes[],bytes32,bytes32)\":{\"details\":\"Returns the identifier of an operation containing a batch of transactions.\"},\"isOperation(bytes32)\":{\"details\":\"Returns whether an id corresponds to a registered operation. This includes both Waiting, Ready, and Done operations.\"},\"isOperationDone(bytes32)\":{\"details\":\"Returns whether an operation is done or not.\"},\"isOperationPending(bytes32)\":{\"details\":\"Returns whether an operation is pending or not. Note that a \\\"pending\\\" operation may also be \\\"ready\\\".\"},\"isOperationReady(bytes32)\":{\"details\":\"Returns whether an operation is ready for execution. Note that a \\\"ready\\\" operation is also \\\"pending\\\".\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Always returns `IERC721Receiver.onERC721Received.selector`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"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 revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"schedule(address,uint256,bytes,bytes32,bytes32,uint256)\":{\"details\":\"Schedule an operation containing a single transaction. Emits {CallSalt} if salt is nonzero, and {CallScheduled}. Requirements: - the caller must have the 'proposer' role.\"},\"scheduleBatch(address[],uint256[],bytes[],bytes32,bytes32,uint256)\":{\"details\":\"Schedule an operation containing a batch of transactions. Emits {CallSalt} if salt is nonzero, and one {CallScheduled} event per transaction in the batch. Requirements: - the caller must have the 'proposer' role.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"updateDelay(uint256)\":{\"details\":\"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.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/TimelockController.sol\":\"TimelockController\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/governance/TimelockController.sol\":{\"keccak256\":\"0x50ea4919331ca84a89c44be1e1fdecd597c7f5575c3d93f582197db97171c2c9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a80401f75260f9f42440c05baee0d2ff7cdd1e1e451400000eabb9c901abe383\",\"dweb:/ipfs/QmVdWjwkxmWrxcmz6ffmC8nCLwj5ixKrgWF7mKERdkZSfR\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":{\"keccak256\":\"0xe103e95f854ef0cd1bba5f469175f67cd332f5c2561941f165e3dd65cee94d6d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cf8cc5d07cf8003255f9d766fe8188b9f6e33b6240e126a605f0d061566b23e\",\"dweb:/ipfs/Qmd7okDCSoUt1L4G9hmb5c4W8kWUnfpAa2jyBKUp4xKErd\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":{\"keccak256\":\"0xaad20f8713b5cd98114278482d5d91b9758f9727048527d582e8e88fd4901fd8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5396e8dbb000c2fada59b7d2093b9c7c870fd09413ab0fdaba45d882959c6244\",\"dweb:/ipfs/QmXQn5XckSiUsUBpMYuiFeqnojRX4rKa9jmgjCPeTuPmhh\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol":{"GovernorCountingSimple":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalVotes","outputs":[{"internalType":"uint256","name":"againstVotes","type":"uint256"},{"internalType":"uint256","name":"forVotes","type":"uint256"},{"internalType":"uint256","name":"abstainVotes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","proposalVotes(uint256)":"544ffc9c","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","relay(address,uint256,bytes)":"c28bc2fa","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"againstVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"forVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"abstainVotes\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Extension of {Governor} for simple, 3 options, vote counting.\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"COUNTING_MODE()\":{\"details\":\"See {IGovernor-COUNTING_MODE}.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"See {IGovernor-hasVoted}.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {IGovernor-proposalThreshold}.\"},\"proposalVotes(uint256)\":{\"details\":\"Accessor to the internal vote counts.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"state(uint256)\":{\"details\":\"See {IGovernor-state}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol\":\"GovernorCountingSimple\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol\":{\"keccak256\":\"0xdc21c15a8582ca58529bf4b63209718a86fd944cbb206a492687333fe8cce0ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4a4a30ef6ff3d7165c00a6f41a37569035a8b1602b77ecac8453a6ef2cf7c149\",\"dweb:/ipfs/QmZjt4yg3vWWeDMQ6avpXLYLMjctv3jwaWgrH4c5ozSg83\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol":{"GovernorSettings":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldProposalThreshold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newProposalThreshold","type":"uint256"}],"name":"ProposalThresholdSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldVotingDelay","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotingDelay","type":"uint256"}],"name":"VotingDelaySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldVotingPeriod","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotingPeriod","type":"uint256"}],"name":"VotingPeriodSet","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newProposalThreshold","type":"uint256"}],"name":"setProposalThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint48","name":"newVotingDelay","type":"uint48"}],"name":"setVotingDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"newVotingPeriod","type":"uint32"}],"name":"setVotingPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","relay(address,uint256,bytes)":"c28bc2fa","setProposalThreshold(uint256)":"ece40cc1","setVotingDelay(uint48)":"79051887","setVotingPeriod(uint32)":"e540d01d","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldProposalThreshold\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newProposalThreshold\",\"type\":\"uint256\"}],\"name\":\"ProposalThresholdSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldVotingDelay\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotingDelay\",\"type\":\"uint256\"}],\"name\":\"VotingDelaySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldVotingPeriod\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotingPeriod\",\"type\":\"uint256\"}],\"name\":\"VotingPeriodSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newProposalThreshold\",\"type\":\"uint256\"}],\"name\":\"setProposalThreshold\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint48\",\"name\":\"newVotingDelay\",\"type\":\"uint48\"}],\"name\":\"setVotingDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"newVotingPeriod\",\"type\":\"uint32\"}],\"name\":\"setVotingPeriod\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Extension of {Governor} for settings updatable through governance.\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"constructor\":{\"details\":\"Initialize the governance parameters.\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {Governor-proposalThreshold}.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"setProposalThreshold(uint256)\":{\"details\":\"Update the proposal threshold. This operation can only be performed through a governance proposal. Emits a {ProposalThresholdSet} event.\"},\"setVotingDelay(uint48)\":{\"details\":\"Update the voting delay. This operation can only be performed through a governance proposal. Emits a {VotingDelaySet} event.\"},\"setVotingPeriod(uint32)\":{\"details\":\"Update the voting period. This operation can only be performed through a governance proposal. Emits a {VotingPeriodSet} event.\"},\"state(uint256)\":{\"details\":\"See {IGovernor-state}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"See {IGovernor-votingDelay}.\"},\"votingPeriod()\":{\"details\":\"See {IGovernor-votingPeriod}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol\":\"GovernorSettings\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol\":{\"keccak256\":\"0x1e0810708b8f5de8d3db73240ccee2d36a305cb904aa5acd4588834ebce6acce\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9758197a4d3cb1aa3036a9bd0edbf34a2eba82e484d3d519da495e495d752dee\",\"dweb:/ipfs/QmYtV61Sp55bfcW4DZvsRuDo2EKb5PekqoY3nx5STJn6Zt\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol":{"GovernorTimelockControl":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldTimelock","type":"address"},{"indexed":false,"internalType":"address","name":"newTimelock","type":"address"}],"name":"TimelockChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelock","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract TimelockController","name":"newTimelock","type":"address"}],"name":"updateTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","relay(address,uint256,bytes)":"c28bc2fa","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","timelock()":"d33219b4","updateTimelock(address)":"a890c910","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldTimelock\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newTimelock\",\"type\":\"address\"}],\"name\":\"TimelockChange\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"timelock\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract TimelockController\",\"name\":\"newTimelock\",\"type\":\"address\"}],\"name\":\"updateTimelock\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Extension of {Governor} that binds the execution process to an instance of {TimelockController}. This adds a delay, enforced by the {TimelockController} to all successful proposal (in addition to the voting duration). The {Governor} needs the proposer (and ideally the executor and canceller) roles for the {Governor} to work properly. Using this model means the proposal will be operated by the {TimelockController} and not by the {Governor}. Thus, the assets and permissions must be attached to the {TimelockController}. Any asset sent to the {Governor} will be inaccessible from a proposal, unless executed via {Governor-relay}. WARNING: Setting up the TimelockController to have additional proposers or cancellers besides the governor is very risky, as it grants them the ability to: 1) execute operations as the timelock, and thus possibly performing operations or accessing funds that are expected to only be accessible through a vote, and 2) block governance proposals that have been approved by the voters, effectively executing a Denial of Service attack.\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"TimelockChange(address,address)\":{\"details\":\"Emitted when the timelock controller used for proposal execution is modified.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"constructor\":{\"details\":\"Set the timelock.\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {IGovernor-proposalThreshold}.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"state(uint256)\":{\"details\":\"Overridden version of the {Governor-state} function that considers the status reported by the timelock.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"timelock()\":{\"details\":\"Public accessor to check the address of the timelock\"},\"updateTimelock(address)\":{\"details\":\"Public endpoint to update the underlying timelock instance. Restricted to the timelock itself, so updates must be proposed, scheduled, and executed through governance proposals. CAUTION: It is not recommended to change the timelock while there are other queued governance proposals.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol\":\"GovernorTimelockControl\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/TimelockController.sol\":{\"keccak256\":\"0x50ea4919331ca84a89c44be1e1fdecd597c7f5575c3d93f582197db97171c2c9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a80401f75260f9f42440c05baee0d2ff7cdd1e1e451400000eabb9c901abe383\",\"dweb:/ipfs/QmVdWjwkxmWrxcmz6ffmC8nCLwj5ixKrgWF7mKERdkZSfR\"]},\"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol\":{\"keccak256\":\"0xe5d4ce636fd706494b1f488fc562995e9486a3d14203ad311be6c6f724955bad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3d90512ee129236608a01e2d1541c9740a0f4d16863f214191e443342e540901\",\"dweb:/ipfs/QmStf5H59Lu2WNKPxmifFU6kJrWcMEvb2yKbFjsXkCvP43\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":{\"keccak256\":\"0xe103e95f854ef0cd1bba5f469175f67cd332f5c2561941f165e3dd65cee94d6d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cf8cc5d07cf8003255f9d766fe8188b9f6e33b6240e126a605f0d061566b23e\",\"dweb:/ipfs/Qmd7okDCSoUt1L4G9hmb5c4W8kWUnfpAa2jyBKUp4xKErd\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":{\"keccak256\":\"0xaad20f8713b5cd98114278482d5d91b9758f9727048527d582e8e88fd4901fd8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5396e8dbb000c2fada59b7d2093b9c7c870fd09413ab0fdaba45d882959c6244\",\"dweb:/ipfs/QmXQn5XckSiUsUBpMYuiFeqnojRX4rKa9jmgjCPeTuPmhh\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol":{"GovernorVotes":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC5805","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","relay(address,uint256,bytes)":"c28bc2fa","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","token()":"fc0c546a","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract IERC5805\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Extension of {Governor} for voting weight extraction from an {ERC20Votes} token, or since v4.5 an {ERC721Votes} token.\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Machine-readable description of the clock as specified in ERC-6372.\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock (as specified in ERC-6372) is set to match the token's clock. Fallback to block numbers if the token does not implement ERC-6372.\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {IGovernor-proposalThreshold}.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"state(uint256)\":{\"details\":\"See {IGovernor-state}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"token()\":{\"details\":\"The token that voting power is sourced from.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\":\"GovernorVotes\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\":{\"keccak256\":\"0x6fc0e9e0c3ed137dc2281a120cdc01b92010a26e6fd5fc4e6af08fc0f28bdb9e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2de2620f20f2ec0f52b14b241bec63815a5e5c42a76198a754d899fedfbdb97a\",\"dweb:/ipfs/QmTPcYhinbDv9T6T1hzNjbZrWNWSFYauoug4zdPvDTXect\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol":{"GovernorVotesQuorumFraction":{"abi":[{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"uint256","name":"quorumNumerator","type":"uint256"},{"internalType":"uint256","name":"quorumDenominator","type":"uint256"}],"name":"GovernorInvalidQuorumFraction","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldQuorumNumerator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newQuorumNumerator","type":"uint256"}],"name":"QuorumNumeratorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorumNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC5805","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newQuorumNumerator","type":"uint256"}],"name":"updateQuorumNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","quorumDenominator()":"97c3d334","quorumNumerator()":"a7713a70","quorumNumerator(uint256)":"60c4247f","relay(address,uint256,bytes)":"c28bc2fa","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","token()":"fc0c546a","updateQuorumNumerator(uint256)":"06f3f9e6","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"quorumNumerator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"quorumDenominator\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidQuorumFraction\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldQuorumNumerator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newQuorumNumerator\",\"type\":\"uint256\"}],\"name\":\"QuorumNumeratorUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumDenominator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorumNumerator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumNumerator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract IERC5805\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newQuorumNumerator\",\"type\":\"uint256\"}],\"name\":\"updateQuorumNumerator\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Extension of {Governor} for voting weight extraction from an {ERC20Votes} token and a quorum expressed as a fraction of the total supply.\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidQuorumFraction(uint256,uint256)\":[{\"details\":\"The quorum set is not a valid fraction.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Machine-readable description of the clock as specified in ERC-6372.\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock (as specified in ERC-6372) is set to match the token's clock. Fallback to block numbers if the token does not implement ERC-6372.\"},\"constructor\":{\"details\":\"Initialize quorum as a fraction of the token's total supply. The fraction is specified as `numerator / denominator`. By default the denominator is 100, so quorum is specified as a percent: a numerator of 10 corresponds to quorum being 10% of total supply. The denominator can be customized by overriding {quorumDenominator}.\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {IGovernor-proposalThreshold}.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Returns the quorum for a timepoint, in terms of number of votes: `supply * numerator / denominator`.\"},\"quorumDenominator()\":{\"details\":\"Returns the quorum denominator. Defaults to 100, but may be overridden.\"},\"quorumNumerator()\":{\"details\":\"Returns the current quorum numerator. See {quorumDenominator}.\"},\"quorumNumerator(uint256)\":{\"details\":\"Returns the quorum numerator at a specific timepoint. See {quorumDenominator}.\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"state(uint256)\":{\"details\":\"See {IGovernor-state}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"token()\":{\"details\":\"The token that voting power is sourced from.\"},\"updateQuorumNumerator(uint256)\":{\"details\":\"Changes the quorum numerator. Emits a {QuorumNumeratorUpdated} event. Requirements: - Must be called through a governance proposal. - New numerator must be smaller or equal to the denominator.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol\":\"GovernorVotesQuorumFraction\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\":{\"keccak256\":\"0x6fc0e9e0c3ed137dc2281a120cdc01b92010a26e6fd5fc4e6af08fc0f28bdb9e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2de2620f20f2ec0f52b14b241bec63815a5e5c42a76198a754d899fedfbdb97a\",\"dweb:/ipfs/QmTPcYhinbDv9T6T1hzNjbZrWNWSFYauoug4zdPvDTXect\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol\":{\"keccak256\":\"0x5b5cdb361ed018c0162942d673c17e187c1a52ded2ce4f41e8a3f3f5d1656e00\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd78b11b946d9001725a38844f1d6163906965ec321e1b09bd7e476baedc5d12\",\"dweb:/ipfs/QmPgTnTYDbgXgwHXbkxofSH51QDFfycwx1tn8Qj5hGGk5u\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x66364cd3247ea71cdb58f080f5d5ed6732433a8001413139661841535494692f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0f87914c6645b58eaf75f00a156037a7da91129f3a56aec44aebfc715b19ea44\",\"dweb:/ipfs/QmNX7NLSMXyWuogvf8wfCwjUGwLhLBZrGktWPSdoHtERGp\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/utils/IVotes.sol":{"IVotes":{"abi":[{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"}],\"name\":\"VotesExpiredSignature\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousVotes\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotes\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.\",\"errors\":{\"VotesExpiredSignature(uint256)\":[{\"details\":\"The signature used has expired.\"}]},\"events\":{\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\"}},\"kind\":\"dev\",\"methods\":{\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block.\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":\"IVotes\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/utils/Votes.sol":{"Votes":{"abi":[{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"uint48","name":"clock","type":"uint48"}],"name":"ERC5805FutureLookup","type":"error"},{"inputs":[],"name":"ERC6372InconsistentClock","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","clock()":"91ddadf4","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","eip712Domain()":"84b0196e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0","nonces(address)":"7ecebe00"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"clock\",\"type\":\"uint48\"}],\"name\":\"ERC5805FutureLookup\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC6372InconsistentClock\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"}],\"name\":\"VotesExpiredSignature\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousVotes\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotes\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This is a base abstract contract that tracks voting units, which are a measure of voting power that can be transferred, and provides a system of vote delegation, where an account can delegate its voting units to a sort of \\\"representative\\\" that will pool delegated voting units from different accounts and can then use it to vote in decisions. In fact, voting units _must_ be delegated in order to count as actual votes, and an account has to delegate those votes to itself if it wishes to participate in decisions and does not have a trusted representative. This contract is often combined with a token contract such that voting units correspond to token units. For an example, see {ERC721Votes}. The full history of delegate votes is tracked on-chain so that governance protocols can consider votes as distributed at a particular block number to protect against flash loans and double voting. The opt-in delegate system makes the cost of this history tracking optional. When using this module the derived contract must implement {_getVotingUnits} (for example, make it return {ERC721-balanceOf}), and can use {_transferVotingUnits} to track a change in the distribution of those units (in the previous example, it would be included in {ERC721-_update}).\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC5805FutureLookup(uint256,uint48)\":[{\"details\":\"Lookup to future votes is not available.\"}],\"ERC6372InconsistentClock()\":[{\"details\":\"The clock was incorrectly modified.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"VotesExpiredSignature(uint256)\":[{\"details\":\"The signature used has expired.\"}]},\"events\":{\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Machine-readable description of the clock as specified in ERC-6372.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting), in which case {CLOCK_MODE} should be overridden as well to match.\"},\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/utils/Votes.sol\":\"Votes\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/governance/utils/Votes.sol\":{\"keccak256\":\"0x3f91c79d6f55db9e4fc36e1cfe6a483a7b0f5be60fecbd979555071673746d47\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9b1e3c64cbeb2757a2a1a45c69f7f3984a93b0eadd1016341b64f9d94f89d7c4\",\"dweb:/ipfs/QmP1Mj14U4vMTFa2rv2nodMbWSCov2ac9Md8W2aUcgYdKX\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x66364cd3247ea71cdb58f080f5d5ed6732433a8001413139661841535494692f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0f87914c6645b58eaf75f00a156037a7da91129f3a56aec44aebfc715b19ea44\",\"dweb:/ipfs/QmNX7NLSMXyWuogvf8wfCwjUGwLhLBZrGktWPSdoHtERGp\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/IERC1271.sol":{"IERC1271":{"abi":[{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"isValidSignature","outputs":[{"internalType":"bytes4","name":"magicValue","type":"bytes4"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"isValidSignature(bytes32,bytes)":"1626ba7e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"isValidSignature\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"magicValue\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-1271 standard signature validation method for contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].\",\"kind\":\"dev\",\"methods\":{\"isValidSignature(bytes32,bytes)\":{\"details\":\"Should return whether the signature provided is valid for the provided data\",\"params\":{\"hash\":\"Hash of the data to be signed\",\"signature\":\"Signature byte array associated with _data\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC1271.sol\":\"IERC1271\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"IERC5267":{"abi":[{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"eip712Domain()":"84b0196e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"}},\"kind\":\"dev\",\"methods\":{\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":\"IERC5267\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/IERC5805.sol":{"IERC5805":{"abi":[{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","clock()":"91ddadf4","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"}],\"name\":\"VotesExpiredSignature\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousVotes\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotes\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"VotesExpiredSignature(uint256)\":[{\"details\":\"The signature used has expired.\"}]},\"events\":{\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block.\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC5805.sol\":\"IERC5805\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/IERC6372.sol":{"IERC6372":{"abi":[{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","clock()":"91ddadf4"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC6372.sol\":\"IERC6372\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"IERC1155Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC1155InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"idsLength\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"valuesLength\",\"type\":\"uint256\"}],\"name\":\"ERC1155InvalidArrayLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC1155MissingApprovalForAll\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\",\"errors\":{\"ERC1155InsufficientBalance(address,uint256,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC1155InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC1155InvalidArrayLength(uint256,uint256)\":[{\"details\":\"Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.\",\"params\":{\"idsLength\":\"Length of the array of token identifiers\",\"valuesLength\":\"Length of the array of token amounts\"}}],\"ERC1155InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC1155InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC1155InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC1155MissingApprovalForAll(address,address)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"owner\":\"Address of the current owner of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC1155Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}"},"IERC20Errors":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC20Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}"},"IERC721Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721IncorrectOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721InsufficientApproval\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC721InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721NonexistentToken\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\",\"errors\":{\"ERC721IncorrectOwner(address,uint256,address)\":[{\"details\":\"Indicates an error related to the ownership over a particular token. Used in transfers.\",\"params\":{\"owner\":\"Address of the current owner of a token.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InsufficientApproval(address,uint256)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC721InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC721InvalidOwner(address)\":[{\"details\":\"Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.\",\"params\":{\"owner\":\"Address of the current owner of a token.\"}}],\"ERC721InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC721InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC721NonexistentToken(uint256)\":[{\"details\":\"Indicates a `tokenId` whose `owner` is the zero address.\",\"params\":{\"tokenId\":\"Identifier number of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC721Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol":{"IERC1155Receiver":{"abi":[{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface that must be implemented by smart contracts in order to receive ERC-1155 token transfers.\",\"kind\":\"dev\",\"methods\":{\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"Handles the receipt of a multiple ERC-1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. NOTE: To accept the transfer(s), this must return `bytes4(keccak256(\\\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\\\"))` (i.e. 0xbc197c81, or its own function selector).\",\"params\":{\"data\":\"Additional data with no specified format\",\"from\":\"The address which previously owned the token\",\"ids\":\"An array containing ids of each token being transferred (order and length must match values array)\",\"operator\":\"The address which initiated the batch transfer (i.e. msg.sender)\",\"values\":\"An array containing amounts of each token being transferred (order and length must match ids array)\"},\"returns\":{\"_0\":\"`bytes4(keccak256(\\\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\\\"))` if transfer is allowed\"}},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"Handles the receipt of a single ERC-1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. NOTE: To accept the transfer, this must return `bytes4(keccak256(\\\"onERC1155Received(address,address,uint256,uint256,bytes)\\\"))` (i.e. 0xf23a6e61, or its own function selector).\",\"params\":{\"data\":\"Additional data with no specified format\",\"from\":\"The address which previously owned the token\",\"id\":\"The ID of the token being transferred\",\"operator\":\"The address which initiated the transfer (i.e. msg.sender)\",\"value\":\"The amount of tokens being transferred\"},\"returns\":{\"_0\":\"`bytes4(keccak256(\\\"onERC1155Received(address,address,uint256,uint256,bytes)\\\"))` if transfer is allowed\"}},\"supportsInterface(bytes4)\":{\"details\":\"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[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":\"IERC1155Receiver\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol":{"ERC1155Holder":{"abi":[{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Simple implementation of `IERC1155Receiver` that will allow a contract to hold ERC-1155 tokens. IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be stuck.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":\"ERC1155Holder\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":{\"keccak256\":\"0xe103e95f854ef0cd1bba5f469175f67cd332f5c2561941f165e3dd65cee94d6d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cf8cc5d07cf8003255f9d766fe8188b9f6e33b6240e126a605f0d061566b23e\",\"dweb:/ipfs/Qmd7okDCSoUt1L4G9hmb5c4W8kWUnfpAa2jyBKUp4xKErd\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ERC20":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC-20 applications.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-20 standard as defined in the ERC.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol":{"ERC20Votes":{"abi":[{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededSafeSupply","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"uint48","name":"clock","type":"uint48"}],"name":"ERC5805FutureLookup","type":"error"},{"inputs":[],"name":"ERC6372InconsistentClock","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint48","name":"_key","type":"uint48"},{"internalType":"uint208","name":"_value","type":"uint208"}],"internalType":"struct Checkpoints.Checkpoint208","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","checkpoints(address,uint32)":"f1127ed8","clock()":"91ddadf4","decimals()":"313ce567","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","eip712Domain()":"84b0196e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0","name()":"06fdde03","nonces(address)":"7ecebe00","numCheckpoints(address)":"6fcfff45","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"increasedSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cap\",\"type\":\"uint256\"}],\"name\":\"ERC20ExceededSafeSupply\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"clock\",\"type\":\"uint48\"}],\"name\":\"ERC5805FutureLookup\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC6372InconsistentClock\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"}],\"name\":\"VotesExpiredSignature\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousVotes\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotes\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"pos\",\"type\":\"uint32\"}],\"name\":\"checkpoints\",\"outputs\":[{\"components\":[{\"internalType\":\"uint48\",\"name\":\"_key\",\"type\":\"uint48\"},{\"internalType\":\"uint208\",\"name\":\"_value\",\"type\":\"uint208\"}],\"internalType\":\"struct Checkpoints.Checkpoint208\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"numCheckpoints\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Extension of ERC-20 to support Compound-like voting and delegation. This version is more generic than Compound's, and supports token supply up to 2^208^ - 1, while COMP is limited to 2^96^ - 1. NOTE: This contract does not provide interface compatibility with Compound's COMP token. This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either by calling the {Votes-delegate} function directly, or by providing a signature to be used with {Votes-delegateBySig}. Voting power can be queried through the public accessors {Votes-getVotes} and {Votes-getPastVotes}. By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC20ExceededSafeSupply(uint256,uint256)\":[{\"details\":\"Total supply cap has been exceeded, introducing a risk of votes overflowing.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC5805FutureLookup(uint256,uint48)\":[{\"details\":\"Lookup to future votes is not available.\"}],\"ERC6372InconsistentClock()\":[{\"details\":\"The clock was incorrectly modified.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"VotesExpiredSignature(uint256)\":[{\"details\":\"The signature used has expired.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Machine-readable description of the clock as specified in ERC-6372.\"},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"checkpoints(address,uint32)\":{\"details\":\"Get the `pos`-th checkpoint for `account`.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting), in which case {CLOCK_MODE} should be overridden as well to match.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"numCheckpoints(address)\":{\"details\":\"Get number of checkpoints for `account`.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol\":\"ERC20Votes\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/governance/utils/Votes.sol\":{\"keccak256\":\"0x3f91c79d6f55db9e4fc36e1cfe6a483a7b0f5be60fecbd979555071673746d47\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9b1e3c64cbeb2757a2a1a45c69f7f3984a93b0eadd1016341b64f9d94f89d7c4\",\"dweb:/ipfs/QmP1Mj14U4vMTFa2rv2nodMbWSCov2ac9Md8W2aUcgYdKX\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol\":{\"keccak256\":\"0x62dc9346044aabf22d78541bd495aa6ca05a7f5100aed26196ba35d40b59fcb5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5221df4501c74cd4493fee1a0f0788e02c4dc78c3c601e9f557f557c5a53ea92\",\"dweb:/ipfs/QmZpzyYY9dKLrgvYhXSHT93jwqb1UGvtGNMQk5dpECY5pa\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x66364cd3247ea71cdb58f080f5d5ed6732433a8001413139661841535494692f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0f87914c6645b58eaf75f00a156037a7da91129f3a56aec44aebfc715b19ea44\",\"dweb:/ipfs/QmNX7NLSMXyWuogvf8wfCwjUGwLhLBZrGktWPSdoHtERGp\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"IERC20Metadata":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC-20 standard.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"IERC721Receiver":{"abi":[{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC721Received(address,address,uint256,bytes)":"150b7a02"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to support safeTransfers from ERC-721 asset contracts.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"}},\"title\":\"ERC-721 token receiver interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":\"IERC721Receiver\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol":{"ERC721Holder":{"abi":[{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC721Received(address,address,uint256,bytes)":"150b7a02"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC721Receiver} interface. Accepts all token transfers. Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Always returns `IERC721Receiver.onERC721Received.selector`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":\"ERC721Holder\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":{\"keccak256\":\"0xaad20f8713b5cd98114278482d5d91b9758f9727048527d582e8e88fd4901fd8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5396e8dbb000c2fada59b7d2093b9c7c870fd09413ab0fdaba45d882959c6244\",\"dweb:/ipfs/QmXQn5XckSiUsUBpMYuiFeqnojRX4rKa9jmgjCPeTuPmhh\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Address.sol":{"Address":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212201d3ae836a975002216447112ec98c6faf592f9671d271f88896644677de223d764736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SAR GASPRICE 0xE8 CALLDATASIZE 0xA9 PUSH22 0x2216447112EC98C6FAF592F9671D271F8889664467 PUSH30 0xE223D764736F6C6343000814003300000000000000000000000000000000 ","sourceMap":"233:5815:26:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212201d3ae836a975002216447112ec98c6faf592f9671d271f88896644677de223d764736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SAR GASPRICE 0xE8 CALLDATASIZE 0xA9 PUSH22 0x2216447112EC98C6FAF592F9671D271F8889664467 PUSH30 0xE223D764736F6C6343000814003300000000000000000000000000000000 ","sourceMap":"233:5815:26:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Address.sol\":\"Address\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Context.sol":{"Context":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Errors.sol":{"Errors":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"FailedDeployment","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MissingPrecompile","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212201b283e935c822c7731e35bbfd9d8aff275ff943e0d060069d9a4c8a183fb146164736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SHL 0x28 RETURNDATACOPY SWAP4 0x5C DUP3 0x2C PUSH24 0x31E35BBFD9D8AFF275FF943E0D060069D9A4C8A183FB1461 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"411:484:28:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212201b283e935c822c7731e35bbfd9d8aff275ff943e0d060069d9a4c8a183fb146164736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SHL 0x28 RETURNDATACOPY SWAP4 0x5C DUP3 0x2C PUSH24 0x31E35BBFD9D8AFF275FF943E0D060069D9A4C8A183FB1461 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"411:484:28:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedDeployment\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"MissingPrecompile\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Collection of common custom errors used in multiple contracts IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. It is recommended to avoid relying on the error API for critical functionality. _Available since v5.1._\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"FailedDeployment()\":[{\"details\":\"The deployment failed.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"MissingPrecompile(address)\":[{\"details\":\"A necessary precompile is missing.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Errors.sol\":\"Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Nonces.sol":{"Nonces":{"abi":[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"nonces(address)":"7ecebe00"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Provides tracking nonces for addresses. Nonces will only increment.\",\"errors\":{\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}]},\"kind\":\"dev\",\"methods\":{\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Nonces.sol\":\"Nonces\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Panic.sol":{"Panic":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220d3d3dd910cc19267204057e7b98620445f3f33d10c6a1b7d466fb2f1dbaaa3e464736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD3 0xD3 0xDD SWAP2 0xC 0xC1 SWAP3 PUSH8 0x204057E7B9862044 PUSH0 EXTCODEHASH CALLER 0xD1 0xC PUSH11 0x1B7D466FB2F1DBAAA3E464 PUSH20 0x6F6C634300081400330000000000000000000000 ","sourceMap":"657:1315:30:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220d3d3dd910cc19267204057e7b98620445f3f33d10c6a1b7d466fb2f1dbaaa3e464736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD3 0xD3 0xDD SWAP2 0xC 0xC1 SWAP3 PUSH8 0x204057E7B9862044 PUSH0 EXTCODEHASH CALLER 0xD1 0xC PUSH11 0x1B7D466FB2F1DBAAA3E464 PUSH20 0x6F6C634300081400330000000000000000000000 ","sourceMap":"657:1315:30:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Helper library for emitting standardized panic codes. ```solidity contract Example { using Panic for uint256; // Use any of the declared internal constants function foo() { Panic.GENERIC.panic(); } // Alternatively function foo() { Panic.panic(Panic.GENERIC); } } ``` Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"ARRAY_OUT_OF_BOUNDS\":{\"details\":\"array out of bounds access\"},\"ASSERT\":{\"details\":\"used by the assert() builtin\"},\"DIVISION_BY_ZERO\":{\"details\":\"division or modulo by zero\"},\"EMPTY_ARRAY_POP\":{\"details\":\"empty array pop\"},\"ENUM_CONVERSION_ERROR\":{\"details\":\"enum conversion error\"},\"GENERIC\":{\"details\":\"generic / unspecified error\"},\"INVALID_INTERNAL_FUNCTION\":{\"details\":\"calling invalid internal function\"},\"RESOURCE_ERROR\":{\"details\":\"resource error (too large allocation or too large array)\"},\"STORAGE_ENCODING_ERROR\":{\"details\":\"invalid encoding in storage\"},\"UNDER_OVERFLOW\":{\"details\":\"arithmetic underflow or overflow\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Panic.sol\":\"Panic\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/ShortStrings.sol":{"ShortStrings":{"abi":[{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212203910222b2424311f5663a76aa7535fa334025befbbcf48c3b03b5c52304f728e64736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODECOPY LT 0x22 0x2B 0x24 0x24 BALANCE 0x1F JUMP PUSH4 0xA76AA753 PUSH0 LOG3 CALLVALUE MUL JUMPDEST 0xEF 0xBB 0xCF BASEFEE 0xC3 0xB0 EXTCODESIZE 0x5C MSTORE ADDRESS 0x4F PUSH19 0x8E64736F6C6343000814003300000000000000 ","sourceMap":"1255:3026:31:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212203910222b2424311f5663a76aa7535fa334025befbbcf48c3b03b5c52304f728e64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODECOPY LT 0x22 0x2B 0x24 0x24 BALANCE 0x1F JUMP PUSH4 0xA76AA753 PUSH0 LOG3 CALLVALUE MUL JUMPDEST 0xEF 0xBB 0xCF BASEFEE 0xC3 0xB0 EXTCODESIZE 0x5C MSTORE ADDRESS 0x4F PUSH19 0x8E64736F6C6343000814003300000000000000 ","sourceMap":"1255:3026:31:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"This library provides functions to convert short memory strings into a `ShortString` type that can be used as an immutable variable. Strings of arbitrary length can be optimized using this library if they are short enough (up to 31 bytes) by packing them with their length (1 byte) in a single EVM word (32 bytes). Additionally, a fallback mechanism can be used for every other case. Usage example: ```solidity contract Named { using ShortStrings for *; ShortString private immutable _name; string private _nameFallback; constructor(string memory contractName) { _name = contractName.toShortStringWithFallback(_nameFallback); } function name() external view returns (string memory) { return _name.toStringWithFallback(_nameFallback); } } ```\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/ShortStrings.sol\":\"ShortStrings\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/StorageSlot.sol":{"StorageSlot":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220ae25a39ead407bec927c6b9123beab38814d0e8e606e6b51ab70c388ccb21b8f64736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAE 0x25 LOG3 SWAP15 0xAD BLOCKHASH PUSH28 0xEC927C6B9123BEAB38814D0E8E606E6B51AB70C388CCB21B8F64736F PUSH13 0x63430008140033000000000000 ","sourceMap":"1407:2774:32:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220ae25a39ead407bec927c6b9123beab38814d0e8e606e6b51ab70c388ccb21b8f64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAE 0x25 LOG3 SWAP15 0xAD BLOCKHASH PUSH28 0xEC927C6B9123BEAB38814D0E8E606E6B51AB70C388CCB21B8F64736F PUSH13 0x63430008140033000000000000 ","sourceMap":"1407:2774:32:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library for reading and writing primitive types to specific storage slots. Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. This library helps with reading and writing to such slots without the need for inline assembly. The functions in this library return Slot structs that contain a `value` member that can be used to read or write. Example usage to set ERC-1967 implementation slot: ```solidity contract ERC1967 { // Define the slot. Alternatively, use the SlotDerivation library to derive the slot. bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } function _setImplementation(address newImplementation) internal { require(newImplementation.code.length > 0); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } } ``` TIP: Consider using this library along with {SlotDerivation}.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":\"StorageSlot\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Strings.sol":{"Strings":{"abi":[{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"StringsInsufficientHexLength","type":"error"},{"inputs":[],"name":"StringsInvalidAddressFormat","type":"error"},{"inputs":[],"name":"StringsInvalidChar","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220765f35e69774148f6583047be059881881021f7294676859d5243c8ce0ed49c664736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH23 0x5F35E69774148F6583047BE059881881021F7294676859 0xD5 0x24 EXTCODECOPY DUP13 0xE0 0xED 0x49 0xC6 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"297:16541:33:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220765f35e69774148f6583047be059881881021f7294676859d5243c8ce0ed49c664736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH23 0x5F35E69774148F6583047BE059881881021F7294676859 0xD5 0x24 EXTCODECOPY DUP13 0xE0 0xED 0x49 0xC6 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"297:16541:33:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"StringsInsufficientHexLength\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"StringsInvalidAddressFormat\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"StringsInvalidChar\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"String operations.\",\"errors\":{\"StringsInsufficientHexLength(uint256,uint256)\":[{\"details\":\"The `value` string doesn't fit in the specified `length`.\"}],\"StringsInvalidAddressFormat()\":[{\"details\":\"The string being parsed is not a properly formatted address.\"}],\"StringsInvalidChar()\":[{\"details\":\"The string being parsed contains characters that are not in scope of the given base.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Strings.sol\":\"Strings\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ECDSA":{"abi":[{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220dd83379cd91612060872577f24e4aa198892a5e5275b61c6186bb6de502962a664736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDD DUP4 CALLDATACOPY SWAP13 0xD9 AND SLT MOD ADDMOD PUSH19 0x577F24E4AA198892A5E5275B61C6186BB6DE50 0x29 PUSH3 0xA66473 PUSH16 0x6C634300081400330000000000000000 ","sourceMap":"344:7470:34:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220dd83379cd91612060872577f24e4aa198892a5e5275b61c6186bb6de502962a664736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDD DUP4 CALLDATACOPY SWAP13 0xD9 AND SLT MOD ADDMOD PUSH19 0x577F24E4AA198892A5E5275B61C6186BB6DE50 0x29 PUSH3 0xA66473 PUSH16 0x6C634300081400330000000000000000 ","sourceMap":"344:7470:34:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Elliptic Curve Digital Signature Algorithm (ECDSA) operations. These functions can be used to verify that a message was signed by the holder of the private keys of a given address.\",\"errors\":{\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":\"ECDSA\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"EIP712":{"abi":[{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"eip712Domain()":"84b0196e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\",\"details\":\"https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data. The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to produce the hash of their typed data using a combination of `abi.encode` and `keccak256`. This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA ({_hashTypedDataV4}). The implementation of the domain separator was designed to be as efficient as possible while still properly updating the chain id to protect against replay attacks on an eventual fork of the chain. NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\",\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the domain separator and parameter caches. The meaning of `name` and `version` is specified in https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]: - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. - `version`: the current major version of the signing domain. NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart contract upgrade].\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":\"EIP712\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"MessageHashUtils":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212200f3ae3836ce415135a38d38d326faa1cbfe4796606a63002a594f535381cce0564736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF GASPRICE 0xE3 DUP4 PUSH13 0xE415135A38D38D326FAA1CBFE4 PUSH26 0x6606A63002A594F535381CCE0564736F6C634300081400330000 ","sourceMap":"521:3181:36:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212200f3ae3836ce415135a38d38d326faa1cbfe4796606a63002a594f535381cce0564736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF GASPRICE 0xE3 DUP4 PUSH13 0xE415135A38D38D326FAA1CBFE4 PUSH26 0x6606A63002A594F535381CCE0564736F6C634300081400330000 ","sourceMap":"521:3181:36:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. The library provides methods for generating a hash of a message that conforms to the https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] specifications.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":\"MessageHashUtils\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol":{"SignatureChecker":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220ce0ebc0bfec5ddcb3595bcb343c327c67acbc88fcd808f6054a0aa07137e308b64736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCE 0xE 0xBC SIGNEXTEND INVALID 0xC5 0xDD 0xCB CALLDATALOAD SWAP6 0xBC 0xB3 NUMBER 0xC3 0x27 0xC6 PUSH27 0xCBC88FCD808F6054A0AA07137E308B64736F6C6343000814003300 ","sourceMap":"532:1805:37:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220ce0ebc0bfec5ddcb3595bcb343c327c67acbc88fcd808f6054a0aa07137e308b64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCE 0xE 0xBC SIGNEXTEND INVALID 0xC5 0xDD 0xCB CALLDATALOAD SWAP6 0xBC 0xB3 NUMBER 0xC3 0x27 0xC6 PUSH27 0xCBC88FCD808F6054A0AA07137E308B64736F6C6343000814003300 ","sourceMap":"532:1805:37:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA signatures from externally owned accounts (EOAs) as well as ERC-1271 signatures from smart contract wallets like Argent and Safe Wallet (previously Gnosis Safe).\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":\"SignatureChecker\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC165} interface. Contracts that want to implement ERC-165 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); } ```\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"IERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[ERC]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"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[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/Math.sol":{"Math":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220f55ee99a472eb6dc2cc3e168b7846de5ba4a51af97d44e14b45afd9f8748a7d764736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE2 0x5E 0xE9 SWAP11 SELFBALANCE 0x2E 0xB6 0xDC 0x2C 0xC3 0xE1 PUSH9 0xB7846DE5BA4A51AF97 0xD4 0x4E EQ 0xB4 GAS REVERT SWAP16 DUP8 BASEFEE 0xA7 0xD7 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"281:28026:40:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220f55ee99a472eb6dc2cc3e168b7846de5ba4a51af97d44e14b45afd9f8748a7d764736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE2 0x5E 0xE9 SWAP11 SELFBALANCE 0x2E 0xB6 0xDC 0x2C 0xC3 0xE1 PUSH9 0xB7846DE5BA4A51AF97 0xD4 0x4E EQ 0xB4 GAS REVERT SWAP16 DUP8 BASEFEE 0xA7 0xD7 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"281:28026:40:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Standard math utilities missing in the Solidity language.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/Math.sol\":\"Math\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"SafeCast":{"abi":[{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntDowncast","type":"error"},{"inputs":[{"internalType":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntToUint","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintToInt","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212202c4ad86538ce8a084b7fdb2cd3d42f4c2dabe3fc8415c635d8bb43bd1dd67f0264736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2C 0x4A 0xD8 PUSH6 0x38CE8A084B7F 0xDB 0x2C 0xD3 0xD4 0x2F 0x4C 0x2D 0xAB 0xE3 0xFC DUP5 ISZERO 0xC6 CALLDATALOAD 0xD8 0xBB NUMBER 0xBD SAR 0xD6 PUSH32 0x264736F6C634300081400330000000000000000000000000000000000000000 ","sourceMap":"769:34173:41:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212202c4ad86538ce8a084b7fdb2cd3d42f4c2dabe3fc8415c635d8bb43bd1dd67f0264736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2C 0x4A 0xD8 PUSH6 0x38CE8A084B7F 0xDB 0x2C 0xD3 0xD4 0x2F 0x4C 0x2D 0xAB 0xE3 0xFC DUP5 ISZERO 0xC6 CALLDATALOAD 0xD8 0xBB NUMBER 0xBD SAR 0xD6 PUSH32 0x264736F6C634300081400330000000000000000000000000000000000000000 ","sourceMap":"769:34173:41:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"}],\"name\":\"SafeCastOverflowedIntDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"}],\"name\":\"SafeCastOverflowedIntToUint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintToInt\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such an operation overflows. Using this library instead of the unchecked operations eliminates an entire class of bugs, so it's recommended to use it always.\",\"errors\":{\"SafeCastOverflowedIntDowncast(uint8,int256)\":[{\"details\":\"Value doesn't fit in an int of `bits` size.\"}],\"SafeCastOverflowedIntToUint(int256)\":[{\"details\":\"An int value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintToInt(uint256)\":[{\"details\":\"An uint value doesn't fit in an int of `bits` size.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":\"SafeCast\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"SignedMath":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220b18474e30ba46df553fc97b5dbc5e061d13f068480eada5c75b285875d02dfc564736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 DUP5 PUSH21 0xE30BA46DF553FC97B5DBC5E061D13F068480EADA5C PUSH22 0xB285875D02DFC564736F6C6343000814003300000000 ","sourceMap":"258:2354:42:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220b18474e30ba46df553fc97b5dbc5e061d13f068480eada5c75b285875d02dfc564736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 DUP5 PUSH21 0xE30BA46DF553FC97B5DBC5E061D13F068480EADA5C PUSH22 0xB285875D02DFC564736F6C6343000814003300000000 ","sourceMap":"258:2354:42:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Standard signed math utilities missing in the Solidity language.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SignedMath.sol\":\"SignedMath\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/structs/Checkpoints.sol":{"Checkpoints":{"abi":[{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212208f08ac1c5a58ef0dcc61ff5a981ce5ccccf4ca439f5a1432a4cbc4dee782bd3664736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP16 ADDMOD 0xAC SHR GAS PC 0xEF 0xD 0xCC PUSH2 0xFF5A SWAP9 SHR 0xE5 0xCC 0xCC DELEGATECALL 0xCA NUMBER SWAP16 GAS EQ ORIGIN LOG4 0xCB 0xC4 0xDE 0xE7 DUP3 0xBD CALLDATASIZE PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"668:20756:43:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212208f08ac1c5a58ef0dcc61ff5a981ce5ccccf4ca439f5a1432a4cbc4dee782bd3664736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP16 ADDMOD 0xAC SHR GAS PC 0xEF 0xD 0xCC PUSH2 0xFF5A SWAP9 SHR 0xE5 0xCC 0xCC DELEGATECALL 0xCA NUMBER SWAP16 GAS EQ ORIGIN LOG4 0xCB 0xC4 0xDE 0xE7 DUP3 0xBD CALLDATASIZE PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"668:20756:43:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"This library defines the `Trace*` struct, for checkpointing values as they change at different points in time, and later looking up past values by block number. See {Votes} as an example. To create a history of checkpoints define a variable type `Checkpoints.Trace*` in your contract, and store a new checkpoint for the current transaction block using the {push} function.\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":\"Checkpoints\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x66364cd3247ea71cdb58f080f5d5ed6732433a8001413139661841535494692f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0f87914c6645b58eaf75f00a156037a7da91129f3a56aec44aebfc715b19ea44\",\"dweb:/ipfs/QmNX7NLSMXyWuogvf8wfCwjUGwLhLBZrGktWPSdoHtERGp\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol":{"DoubleEndedQueue":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220c59b9fc3d0ea71191ee70988f6d2db4c6dc21b9013d483c913db0ae9fff5cceb64736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 SWAP12 SWAP16 0xC3 0xD0 0xEA PUSH18 0x191EE70988F6D2DB4C6DC21B9013D483C913 0xDB EXP 0xE9 SELFDESTRUCT CREATE2 0xCC 0xEB PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"819:4869:44:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220c59b9fc3d0ea71191ee70988f6d2db4c6dc21b9013d483c913db0ae9fff5cceb64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 SWAP12 SWAP16 0xC3 0xD0 0xEA PUSH18 0x191EE70988F6D2DB4C6DC21B9013D483C913 0xDB EXP 0xE9 SELFDESTRUCT CREATE2 0xCC 0xEB PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"819:4869:44:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"A sequence of items with the ability to efficiently push and pop items (i.e. insert and remove) on both ends of the sequence (called front and back). Among other access patterns, it can be used to implement efficient LIFO and FIFO queues. Storage use is optimized, and all operations are O(1) constant time. This includes {clear}, given that the existing queue contents are left in storage. The struct is called `Bytes32Deque`. Other types can be cast to and from `bytes32`. This data structure can only be used in storage, and not in memory. ```solidity DoubleEndedQueue.Bytes32Deque queue; ```\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":\"DoubleEndedQueue\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/types/Time.sol":{"Time":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220819f3e32bac9d9829f557c4b362d7307e5c1a3acfb410eb1315c67e706dd8d8e64736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP2 SWAP16 RETURNDATACOPY ORIGIN 0xBA 0xC9 0xD9 DUP3 SWAP16 SSTORE PUSH29 0x4B362D7307E5C1A3ACFB410EB1315C67E706DD8D8E64736F6C63430008 EQ STOP CALLER ","sourceMap":"640:4515:45:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220819f3e32bac9d9829f557c4b362d7307e5c1a3acfb410eb1315c67e706dd8d8e64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP2 SWAP16 RETURNDATACOPY ORIGIN 0xBA 0xC9 0xD9 DUP3 SWAP16 SSTORE PUSH29 0x4B362D7307E5C1A3ACFB410EB1315C67E706DD8D8E64736F6C63430008 EQ STOP CALLER ","sourceMap":"640:4515:45:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"This library provides helpers for manipulating time-related objects. It uses the following types: - `uint48` for timepoints - `uint32` for durations While the library doesn't provide specific types for timepoints and duration, it does provide: - a `Delay` type to represent duration that can be programmed to change value automatically at a given point - additional helper functions\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/types/Time.sol\":\"Time\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}"}},"contracts/DLE.sol":{"DLE":{"abi":[{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"coordinates","type":"string"},{"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"internalType":"uint256","name":"oktmo","type":"uint256"},{"internalType":"string[]","name":"okvedCodes","type":"string[]"},{"internalType":"uint256","name":"kpp","type":"uint256"},{"internalType":"uint48","name":"votingDelay","type":"uint48"},{"internalType":"uint32","name":"votingPeriod","type":"uint32"},{"internalType":"uint256","name":"proposalThreshold","type":"uint256"},{"internalType":"uint256","name":"quorumPercentage","type":"uint256"}],"internalType":"struct DLE.DLEConfig","name":"config","type":"tuple"},{"internalType":"address","name":"timelockAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededSafeSupply","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"uint48","name":"clock","type":"uint48"}],"name":"ERC5805FutureLookup","type":"error"},{"inputs":[],"name":"ERC6372InconsistentClock","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"uint256","name":"quorumNumerator","type":"uint256"},{"internalType":"uint256","name":"quorumDenominator","type":"uint256"}],"name":"GovernorInvalidQuorumFraction","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyProposer","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"string","name":"location","type":"string"},{"indexed":false,"internalType":"string","name":"coordinates","type":"string"},{"indexed":false,"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oktmo","type":"uint256"},{"indexed":false,"internalType":"string[]","name":"okvedCodes","type":"string[]"},{"indexed":false,"internalType":"uint256","name":"kpp","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"timelockAddress","type":"address"},{"indexed":false,"internalType":"address","name":"governorAddress","type":"address"}],"name":"DLEInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"moduleName","type":"string"},{"indexed":false,"internalType":"address","name":"moduleAddress","type":"address"}],"name":"ModuleInstalled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"bytes","name":"operation","type":"bytes"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"uint256","name":"signaturesCount","type":"uint256"}],"name":"ProposalSigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldProposalThreshold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newProposalThreshold","type":"uint256"}],"name":"ProposalThresholdSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldQuorumNumerator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newQuorumNumerator","type":"uint256"}],"name":"QuorumNumeratorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldTimelock","type":"address"},{"indexed":false,"internalType":"address","name":"newTimelock","type":"address"}],"name":"TimelockChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"partners","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"TokensDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldVotingDelay","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotingDelay","type":"uint256"}],"name":"VotingDelaySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldVotingPeriod","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotingPeriod","type":"uint256"}],"name":"VotingPeriodSet","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint48","name":"_key","type":"uint48"},{"internalType":"uint208","name":"_value","type":"uint208"}],"internalType":"struct Checkpoints.Checkpoint208","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_operation","type":"bytes"},{"internalType":"uint256[]","name":"_targetChains","type":"uint256[]"},{"internalType":"uint256","name":"_timelock","type":"uint256"},{"internalType":"uint256","name":"_governanceChain","type":"uint256"}],"name":"createProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_partners","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"distributeInitialTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dleInfo","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"coordinates","type":"string"},{"internalType":"uint256","name":"jurisdiction","type":"uint256"},{"internalType":"uint256","name":"oktmo","type":"uint256"},{"internalType":"uint256","name":"kpp","type":"uint256"},{"internalType":"uint256","name":"creationTimestamp","type":"uint256"},{"internalType":"bool","name":"isActive","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"_moduleName","type":"string"},{"internalType":"address","name":"_moduleAddress","type":"address"}],"name":"installModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proposalCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalVotes","outputs":[{"internalType":"uint256","name":"againstVotes","type":"uint256"},{"internalType":"uint256","name":"forVotes","type":"uint256"},{"internalType":"uint256","name":"abstainVotes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposals","outputs":[{"internalType":"bytes","name":"operation","type":"bytes"},{"internalType":"uint256","name":"timelock","type":"uint256"},{"internalType":"uint256","name":"governanceChain","type":"uint256"},{"internalType":"address","name":"initiator","type":"address"},{"internalType":"bool","name":"executed","type":"bool"},{"internalType":"uint256","name":"quorumRequired","type":"uint256"},{"internalType":"uint256","name":"signaturesCount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorumNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newProposalThreshold","type":"uint256"}],"name":"setProposalThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint48","name":"newVotingDelay","type":"uint48"}],"name":"setVotingDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"newVotingPeriod","type":"uint32"}],"name":"setVotingPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalId","type":"uint256"}],"name":"signProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelock","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC5805","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newQuorumNumerator","type":"uint256"}],"name":"updateQuorumNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract TimelockController","name":"newTimelock","type":"address"}],"name":"updateTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"abi_decode_address_fromMemory":{"entryPoint":648,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_string_dyn_fromMemory":{"entryPoint":467,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_string_fromMemory":{"entryPoint":376,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint32_fromMemory":{"entryPoint":630,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint48_fromMemory":{"entryPoint":610,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":3829,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_string_string_string_uint256_uint256_array_string_dyn_uint256_address_address_address":{"entryPoint":3868,"id":null,"parameterSlots":12,"returnSlots":1},"abi_encode_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256_8698":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":289,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_8559":{"entryPoint":256,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_8700":{"entryPoint":322,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_string_storage_20441":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_20443":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_20452":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_20454":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_24234":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_24236":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_24238":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_24239":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_24241":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_8594":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr":{"entryPoint":6294,"id":null,"parameterSlots":1,"returnSlots":0},"checked_sub_uint256":{"entryPoint":6256,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":1670,"id":null,"parameterSlots":3,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_20440":{"entryPoint":1174,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_20442":{"entryPoint":1236,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_20451":{"entryPoint":1298,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_20453":{"entryPoint":1360,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_24233":{"entryPoint":1422,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_24235":{"entryPoint":1484,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_24237":{"entryPoint":1546,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_24240":{"entryPoint":1608,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_8593":{"entryPoint":1100,"id":null,"parameterSlots":2,"returnSlots":0},"cleanup_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_uint32":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_uint48":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"clear_storage_range_bytes1":{"entryPoint":1075,"id":null,"parameterSlots":2,"returnSlots":0},"constructor_DLE":{"entryPoint":4116,"id":15182,"parameterSlots":2,"returnSlots":0},"constructor_GovernorTimelockControl":{"entryPoint":4419,"id":4061,"parameterSlots":9,"returnSlots":0},"copy_arguments_for_constructor_object_DLE":{"entryPoint":669,"id":null,"parameterSlots":0,"returnSlots":2},"copy_array_to_storage_from_array_string_dyn_to_array_string_dyn":{"entryPoint":3166,"id":null,"parameterSlots":1,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string":{"entryPoint":2947,"id":null,"parameterSlots":2,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string_20445":{"entryPoint":2218,"id":null,"parameterSlots":1,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string_20446":{"entryPoint":2461,"id":null,"parameterSlots":1,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string_20447":{"entryPoint":2704,"id":null,"parameterSlots":1,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string_8595":{"entryPoint":1732,"id":null,"parameterSlots":1,"returnSlots":0},"copy_byte_array_to_storage_from_string_to_string_8598":{"entryPoint":1975,"id":null,"parameterSlots":1,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":339,"id":null,"parameterSlots":3,"returnSlots":0},"copy_struct_to_storage_from_struct_DLEInfo_to_struct_DLEInfo":{"entryPoint":3438,"id":null,"parameterSlots":1,"returnSlots":0},"extract_byte_array_length":{"entryPoint":1014,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":220,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_20438":{"entryPoint":186,"id":null,"parameterSlots":1,"returnSlots":0},"fun_buildDomainSeparator":{"entryPoint":6096,"id":8893,"parameterSlots":0,"returnSlots":1},"fun_insert":{"entryPoint":6414,"id":13646,"parameterSlots":2,"returnSlots":2},"fun_setProposalThreshold":{"entryPoint":5117,"id":4020,"parameterSlots":1,"returnSlots":0},"fun_setVotingDelay":{"entryPoint":4907,"id":3979,"parameterSlots":1,"returnSlots":0},"fun_setVotingPeriod":{"entryPoint":4985,"id":4004,"parameterSlots":1,"returnSlots":0},"fun_toShortString":{"entryPoint":6011,"id":6920,"parameterSlots":1,"returnSlots":1},"fun_toShortStringWithFallback":{"entryPoint":5467,"id":7018,"parameterSlots":1,"returnSlots":1},"fun_toShortStringWithFallback_8597":{"entryPoint":5739,"id":7018,"parameterSlots":1,"returnSlots":1},"fun_toUint208":{"entryPoint":6204,"id":10995,"parameterSlots":1,"returnSlots":1},"fun_unsafeAccess":{"entryPoint":null,"id":13765,"parameterSlots":1,"returnSlots":1},"fun_updateQuorumNumerator":{"entryPoint":5253,"id":4676,"parameterSlots":1,"returnSlots":0},"fun_updateTimelock":{"entryPoint":5174,"id":4346,"parameterSlots":1,"returnSlots":0},"panic_error_0x41":{"entryPoint":164,"id":null,"parameterSlots":0,"returnSlots":0},"transit_byte_array_long_to_short_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_bool_to_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_uint208_to_uint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_uint256_to_uint256":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"write_to_memory_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"write_to_memory_uint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"write_to_memory_uint48":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0}},"generatedSources":[],"linkReferences":{},"object":"610180604052346200009f5762000020620000196200029d565b9062001014565b604051615cb2908162001a0b8239608051816143e9015260a0518161449e015260c051816143b3015260e051816144380152610100518161445e01526101205181611c6f01526101405181611c9b01526101605181818161206501528181612e1d01528181612ebd015281816130d101528181613a5a01526159830152f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b03821117620000d657604052565b620000a4565b601f909101601f19168101906001600160401b03821190821017620000d657604052565b6040519061018082016001600160401b03811183821017620000d657604052565b6040519061014082016001600160401b03811183821017620000d657604052565b604051906200015182620000ba565b565b60005b838110620001675750506000910152565b818101518382015260200162000156565b81601f820112156200009f5780516001600160401b038111620000d65760405192620001af601f8301601f191660200185620000dc565b818452602082840101116200009f57620001d0916020808501910162000153565b90565b9080601f830112156200009f5781516001600160401b0392909190838311620000d6578260051b604051946020946200020f86840188620000dc565b86528480870192840101938085116200009f57858401925b85841062000239575050505050505090565b83518381116200009f57879162000256848480948a010162000178565b81520193019262000227565b519065ffffffffffff821682036200009f57565b519063ffffffff821682036200009f57565b51906001600160a01b03821682036200009f57565b6200771d908138038060405193620002b68286620000dc565b843982016040838203126200009f5782516001600160401b0391908281116200009f57840193610180858303126200009f57620002f262000100565b9480518481116200009f57836200030b91830162000178565b865260208101518481116200009f57836200032891830162000178565b602087015260408101518481116200009f57836200034891830162000178565b604087015260608101518481116200009f57836200036891830162000178565b60608701526080810151608087015260a081015160a087015260c08101519384116200009f57620003a2602093620001d0958301620001d3565b60c087015260e081015160e0870152610100620003c181830162000262565b90870152610120620003d581830162000276565b90870152610140808201519087015261016080910151908601520162000288565b90600182811c9216801562000428575b60208310146200041257565b634e487b7160e01b600052602260045260246000fd5b91607f169162000406565b8181106200043f575050565b6000815560010162000433565b90601f82116200045a575050565b620001519160036000526020600020906020601f840160051c830193106200048b575b601f0160051c019062000433565b90915081906200047d565b90601f8211620004a4575050565b620001519160046000526020600020906020601f840160051c830193106200048b57601f0160051c019062000433565b90601f8211620004e2575050565b6200015191600b6000526020600020906020601f840160051c830193106200048b57601f0160051c019062000433565b90601f821162000520575050565b620001519160056000526020600020906020601f840160051c830193106200048b57601f0160051c019062000433565b90601f82116200055e575050565b620001519160066000526020600020906020601f840160051c830193106200048b57601f0160051c019062000433565b90601f82116200059c575050565b620001519160166000526020600020906020601f840160051c830193106200048b57601f0160051c019062000433565b90601f8211620005da575050565b620001519160176000526020600020906020601f840160051c830193106200048b57601f0160051c019062000433565b90601f821162000618575050565b620001519160186000526020600020906020601f840160051c830193106200048b57601f0160051c019062000433565b90601f821162000656575050565b620001519160156000526020600020906020601f840160051c830193106200048b57601f0160051c019062000433565b9190601f81116200069657505050565b62000151926000526020600020906020601f840160051c830193106200048b57601f0160051c019062000433565b80519091906001600160401b038111620000d657620006f081620006ea600454620003f6565b62000496565b602080601f83116001146200072f575081929360009262000723575b50508160011b916000199060031b1c191617600455565b0151905038806200070c565b6004600052601f198316949091907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b926000905b8782106200079e57505083600195961062000784575b505050811b01600455565b015160001960f88460031b161c1916905538808062000779565b8060018596829496860151815501950193019062000763565b80519091906001600160401b038111620000d657620007e381620007dd600b54620003f6565b620004d4565b602080601f831160011462000822575081929360009262000816575b50508160011b916000199060031b1c191617600b55565b015190503880620007ff565b600b600052601f198316949091907f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9926000905b8782106200089157505083600195961062000877575b505050811b01600b55565b015160001960f88460031b161c191690553880806200086c565b8060018596829496860151815501950193019062000856565b80519091906001600160401b038111620000d657620008d681620008d0601654620003f6565b6200058e565b602080601f831160011462000915575081929360009262000909575b50508160011b916000199060031b1c191617601655565b015190503880620008f2565b6016600052601f198316949091907fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289926000905b878210620009845750508360019596106200096a575b505050811b01601655565b015160001960f88460031b161c191690553880806200095f565b8060018596829496860151815501950193019062000949565b80519091906001600160401b038111620000d657620009c981620009c3601754620003f6565b620005cc565b602080601f831160011462000a085750819293600092620009fc575b50508160011b916000199060031b1c191617601755565b015190503880620009e5565b6017600052601f198316949091907fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15926000905b87821062000a7757505083600195961062000a5d575b505050811b01601755565b015160001960f88460031b161c1916905538808062000a52565b8060018596829496860151815501950193019062000a3c565b80519091906001600160401b038111620000d65762000abc8162000ab6601854620003f6565b6200060a565b602080601f831160011462000afb575081929360009262000aef575b50508160011b916000199060031b1c191617601855565b01519050388062000ad8565b6018600052601f198316949091907fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e926000905b87821062000b6a57505083600195961062000b50575b505050811b01601855565b015160001960f88460031b161c1916905538808062000b45565b8060018596829496860151815501950193019062000b2f565b81519192916001600160401b038111620000d65762000baf8162000ba88454620003f6565b8462000686565b602080601f831160011462000bee57508192939460009262000be2575b50508160011b916000199060031b1c1916179055565b01519050388062000bcc565b90601f1983169562000c0585600052602060002090565b926000905b88821062000c455750508360019596971062000c2b575b505050811b019055565b015160001960f88460031b161c1916905538808062000c21565b8060018596829496860151815501950193019062000c0a565b805190680100000000000000008211620000d657601b5482601b5580831062000cd0575b50601b600052602090810190600080516020620076dd8339815191526000925b84841062000cb1575050505050565b6001838262000cc38394518662000b83565b0192019301929062000ca2565b601b6000908152600080516020620076dd8339815191529182019184015b82811062000cfe57505062000c82565b8062000d0d60019254620003f6565b8062000d1c575b500162000cee565b601f90818111841462000d365750508281555b3862000d14565b8362000d5b9262000d4c85600052602060002090565b920160051c8201910162000433565b6000818152602081208183555562000d2f565b805180516001600160401b038111620000d65762000d998162000d93601554620003f6565b62000648565b6020918290601f831160011462000e5a5762000e3c93836101209462000151979462000de79460009262000e4e575b50508160011b916000199060031b1c1916176015555b820151620008aa565b62000df660408201516200099d565b62000e05606082015162000a90565b608081015160195560a0810151601a5562000e2460c082015162000c5e565b60e0810151601c55610100810151601d550151151590565b60ff8019601e54169115151617601e55565b01519050388062000dc8565b6015600052601f19831691907f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4759260005b81811062000edd57508462000151979462000de79462000e3c9894610120986001951062000ec3575b505050811b0160155562000dde565b015160001960f88460031b161c1916905538808062000eb4565b92938660018192878601518155019501930162000e8b565b9060209162000f108151809281855285808601910162000153565b601f01601f1916010190565b9896959262000f699062000f5a62000f499a9e9d9c9a62000f789597948d61016090818152019062000ef5565b6020978d8981840391015262000ef5565b908b820360408d015262000ef5565b9089820360608b015262000ef5565b92608088015260a087015285820360c08701528251908183528083019281808460051b8301019501936000915b84831062000fe357505050505060e08501979097526001600160a01b0391821661010085015291811661012084015292909216610140909101529150565b909192939495848062001003600193601f198682030187528a5162000ef5565b980193019301919493929062000fa5565b906101608201918251926101009283830151620010369065ffffffffffff1690565b9261012095868201516200104d9063ffffffff1690565b9461014083015183518091602086019889519430600160a01b600190038a1697620010789862001143565b8051928451906040830192835191606082019687519a608084019a8b519660a086019d8e5160c08801998a519260e08a019a8b5195620010b762000121565b998a5260208a015260408901526060880152608087015260a086015260c085015260e08401524290830152600190820152620010f39062000d6e565b5160215551955192519451965197519151905191604051988998309730966200111d9a8c62000f1c565b037f5cc2d55798cee8f02a1864e506ff754519b7fbe25d3bd5258441c00b83b7bb0491a1565b9698979590959493929194604051906200115d82620000ba565b6001808352603160f81b60208401528b51906001600160401b038211620000d657620011968262001190600354620003f6565b6200044c565b60209c601f8311600114620012775794620012529794620011f2620001519e9f958580620012659f9e9d9b976200124097620012469a6200124c9d6000946200126b575b50501b916000199060031b1c191617600355620006c4565b620011fd826200155b565b610120526200120c816200166b565b610140528151602083012060e05260208151910120610100524660a05262001233620017d0565b6080523060c052620007b7565b6200132b565b62001379565b620013fd565b6001600160a01b03166101605262001485565b62001436565b015192503880620011da565b6003600052929c9092907fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9160005b601f198516811062001314575094620011f2620001519e9f620012469686620012659f9e9d9b97966200124c9b96620012529e9b6200124099601f19811610620012fa575b505050811b01600355620006c4565b015160001960f88460031b161c19169055388080620012eb565b8183015184559285019260209283019201620012a6565b6010547fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93604080519365ffffffffffff9081851686521693846020820152a165ffffffffffff191617601055565b63ffffffff808216918215620013e4577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093601054958251918760301c1682526020820152a160301b169069ffffffff000000000000191617601055565b60405163f1cfbf0560e01b815260006004820152602490fd5b600f5460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600f55565b6013547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617601355565b906064821162001537576012546000929080620014f05750600080516020620076fd83398151915291925060005b620014d1620014c2836200183c565b65ffffffffffff43166200190e565b5050604080516001600160d01b039290921682526020820192909252a1565b60001990808281011162001523576020856012600080516020620076fd8339815191529697522001015460301c620014b3565b634e487b7160e01b85526011600452602485fd5b60405163243e544560e01b81526004810183905260646024820152604490fd5b0390fd5b90815160208082106000146200157957505090620001d0906200177b565b6001600160401b038211620000d657620015a0826200159a600554620003f6565b62000512565b80601f8311600114620015e05750819293600092620015d4575b50508160011b916000199060031b1c19161760055560ff90565b015190503880620015ba565b6005600052601f198316949091907f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0926000905b8782106200165257505083600195961062001638575b505050811b0160055560ff90565b015160001960f88460031b161c191690553880806200162a565b8060018596829496860151815501950193019062001614565b90815160208082106000146200168957505090620001d0906200177b565b6001600160401b038211620000d657620016b082620016aa600654620003f6565b62000550565b80601f8311600114620016f05750819293600092620016e4575b50508160011b916000199060031b1c19161760065560ff90565b015190503880620016ca565b6006600052601f198316949091907ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f926000905b8782106200176257505083600195961062001748575b505050811b0160065560ff90565b015160001960f88460031b161c191690553880806200173a565b8060018596829496860151815501950193019062001724565b601f815111620017a957602081519101516020821062001799571790565b6000198260200360031b1b161790565b60405163305a27a960e01b8152602060048201529081906200155790602483019062000ef5565b60e051610100516040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815260c0810181811060018060401b03821117620000d65760405251902090565b6001600160d01b039081811162001851571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b6000198101919082116200188057565b634e487b7160e01b600052601160045260246000fd5b6012549068010000000000000000821015620000d6576001820180601255821015620018f857601260005280516020919091015160301b65ffffffffffff191665ffffffffffff9190911617600080516020620076bd83398151915290910155565b634e487b7160e01b600052603260045260246000fd5b6012549192918015620019db576200192a620019439162001870565b6012600052600080516020620076bd8339815191520190565b9081549165ffffffffffff90818416918316808311620019c9578692036200198b576200198492509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050620019c390620019ae620019a062000142565b65ffffffffffff9092168252565b6001600160d01b038516602082015262001896565b62001984565b604051632520601d60e01b8152600490fd5b5062001a0490620019ef620019a062000142565b6001600160d01b038416602082015262001896565b6000919056fe60806040526004361015610023575b361561001957600080fd5b610021612eec565b005b60003560e01c8063013cf08b146104a357806301ffc9a71461049e57806302a251a31461049957806306f3f9e61461049457806306fdde031461048f578063095ea7b31461048a5780630c0512e914610485578063143489d014610480578063150b7a021461047b578063160cbed71461047657806318160ddd14610471578063194a94fc1461046c57806323b872dd146104675780632656227d146104625780632d63f6931461045d5780632fe3e26114610458578063313ce567146104535780633932abb11461044e5780633a46b1a8146104495780633e4f49e614610444578063438596321461043f578063452115d61461043a5780634bf5d7e9146104355780634fa76ec914610430578063544ffc9c1461042b57806354fd4d50146104265780635678138814610421578063587cde1e1461041c5780635b8d0e0d146104175780635c19a95c146104125780635f398a141461040d57806360c4247f146104085780636fcfff451461040357806370a08231146103fe57806379051887146103f95780637b3c71d3146103f45780637d5e81e2146103ef5780637ecebe00146103ea578063824e83e1146103e557806384b0196e146103e05780638e539e8c146103db5780638ff262e3146103d657806391ddadf4146103d157806395d89b41146103cc57806397c3d334146103c75780639a802a6d146103c25780639ab24eb0146103bd578063a7713a70146103b8578063a890c910146103b3578063a9059cbb146103ae578063a9a95294146103a9578063ab273016146103a4578063ab58fb8e1461039f578063b58131b01461039a578063bc197c8114610395578063c01f9e3714610390578063c28bc2fa1461038b578063c3cda52014610386578063c59057e414610381578063d1fad4cd1461037c578063d33219b414610377578063dd4e2ba514610372578063dd62ed3e1461036d578063deaaa7cc14610368578063e540d01d14610363578063eb9019d41461035e578063ece40cc114610359578063f1127ed814610354578063f23a6e611461034f578063f2c26a471461034a578063f8ce560a146103455763fc0c546a0361000e57612ea7565b612ded565b612cbd565b612a31565b61297a565b612925565b6128c3565b61281c565b6127ce565b61276b565b61270d565b6126e4565b6125ac565b612590565b6124c3565b612457565b612439565b612399565b61237b565b612344565b61220a565b6121ee565b6121b9565b612145565b612122565b6120d0565b611fed565b611fd1565b611f2a565b611f07565b611def565b611d20565b611c56565b611aee565b611ab1565b611a29565b6119d4565b611963565b611926565b6118db565b6118bd565b61184e565b611828565b6117a0565b611734565b6116e4565b611682565b611635565b611617565b6115b9565b6114fb565b6114a2565b611475565b611357565b611331565b611315565b6112da565b6112a3565b611136565b61107d565b610ff4565b610fd6565b610d8c565b610b50565b610a80565b610a63565b610995565b6108a3565b6107e3565b6107bc565b610743565b610640565b90600182811c921680156104d8575b60208310146104c257565b634e487b7160e01b600052602260045260246000fd5b91607f16916104b7565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161050b57604052565b6104e2565b604081019081106001600160401b0382111761050b57604052565b602081019081106001600160401b0382111761050b57604052565b60c081019081106001600160401b0382111761050b57604052565b60a081019081106001600160401b0382111761050b57604052565b61010081019081106001600160401b0382111761050b57604052565b90601f801991011681019081106001600160401b0382111761050b57604052565b919082519283825260005b8481106105e5575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016105c4565b93909261061560c096939998979460e0875260e08701906105b9565b602086019990995260408501526001600160a01b031660608401521515608083015260a08201520152565b3461073e5760208060031936011261073e5760006004358152601f82526040812091604051828193908554610674816104a8565b8085529160019180831690811561071c57506001146106df575b50505061069d92500382610598565b60028201546003830154600484015491936106db926001600160a01b0316600682015460ff16906008600784015493015493604051978897886105f9565b0390f35b87815285812095935091905b81831061070457505061069d935082010138808061068e565b855487840185015294850194869450918301916106eb565b9250505061069d94925060ff191682840152151560051b82010138808061068e565b600080fd5b3461073e57602036600319011261073e5760043563ffffffff60e01b811680910361073e576020906332a2ad4360e11b81149081156107a0575b811561078f575b506040519015158152f35b6301ffc9a760e01b14905038610784565b630271189760e51b8114915061077d565b600091031261073e57565b3461073e57600036600319011261073e57602063ffffffff60105460301c16604051908152f35b3461073e57602036600319011261073e576004356107ff613786565b60648111610870577f0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997906001600160d01b03610839614935565b1661085461084683614755565b65ffffffffffff4316614b39565b505060408051918252602082019290925290819081015b0390a1005b6044906040519063243e544560e01b8252600482015260646024820152fd5b9060206108a09281815201906105b9565b90565b3461073e57600080600319360112610981576040519080600b546108c6816104a8565b8085529160019180831690811561095757506001146108fc575b6106db856108f081870382610598565b6040519182918261088f565b9250600b83527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b82841061093f5750505081016020016108f0826106db6108e0565b80546020858701810191909152909301928101610924565b8695506106db969350602092506108f094915060ff191682840152151560051b82010192936108e0565b80fd5b6001600160a01b0381160361073e57565b3461073e57604036600319011261073e576004356109b281610984565b6024353315610a4a576001600160a01b038216918215610a315733600090815260016020526040902082916109f9915b9060018060a01b0316600052602052604060002090565b556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b604051634a1406b160e11b815260006004820152602490fd5b60405163e602df0560e01b815260006004820152602490fd5b3461073e57600036600319011261073e5760208054604051908152f35b3461073e57602036600319011261073e57600435600052600c602052602060018060a01b0360406000205416604051908152f35b6040519061012082018281106001600160401b0382111761050b57604052565b60405190610ae182610510565b565b6001600160401b03811161050b57601f01601f191660200190565b929192610b0a82610ae3565b91610b186040519384610598565b82948184528183011161073e578281602093846000960137010152565b9080601f8301121561073e578160206108a093359101610afe565b3461073e57608036600319011261073e57610b6c600435610984565b610b77602435610984565b6064356001600160401b03811161073e57610b96903690600401610b35565b506013546001600160a01b03163003610bbb57604051630a85bd0160e11b8152602090f35b604051637485328f60e11b8152600490fd5b6001600160401b03811161050b5760051b60200190565b81601f8201121561073e57803591610bfb83610bcd565b92610c096040519485610598565b808452602092838086019260051b82010192831161073e578301905b828210610c33575050505090565b8380918335610c4181610984565b815201910190610c25565b81601f8201121561073e57803591610c6383610bcd565b92610c716040519485610598565b808452602092838086019260051b82010192831161073e578301905b828210610c9b575050505090565b81358152908301908301610c8d565b9080601f8301121561073e57813590610cc282610bcd565b92610cd06040519485610598565b828452602092838086019160051b8301019280841161073e57848301915b848310610cfe5750505050505090565b82356001600160401b03811161073e578691610d1f84848094890101610b35565b815201920191610cee565b608060031982011261073e576001600160401b039160043583811161073e5782610d5691600401610be4565b9260243581811161073e5783610d6e91600401610c4c565b9260443591821161073e57610d8591600401610caa565b9060643590565b3461073e57610d9a36610d2a565b610da8818385879697612fa5565b92610db284613817565b50601354610dd0906001600160a01b03165b6001600160a01b031690565b9260409586519363793d064960e11b855260209081866004818a5afa958615610f8557600096610fb7575b506bffffffffffffffffffffffff193060601b161895818951809263b1c5f42760e01b82528180610e328c8a8a8d60048601615b20565b03915afa918215610f8557600092610f8a575b5050610e5b876000526014602052604060002090565b55601354610e71906001600160a01b0316610dc4565b90813b1561073e5760008094610e9d878b51998a97889687956308f2a0bb60e41b875260048701615b66565b03925af1908115610f8557610ec192610ebc92610f6c575b50426131a3565b614788565b65ffffffffffff811615610f5b57917f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda2892610f4a84610f2c6106db966001610f1288600052600c602052604060002090565b019065ffffffffffff1665ffffffffffff19825416179055565b835185815265ffffffffffff90911660208201529081906040820190565b0390a1519081529081906020820190565b8251634844252360e11b8152600490fd5b80610f79610f7f926104f8565b806107b1565b38610eb5565b613a1d565b610fa99250803d10610fb0575b610fa18183610598565b810190613a0e565b3880610e45565b503d610f97565b610fcf919650823d8411610fb057610fa18183610598565b9438610dfb565b3461073e57600036600319011261073e576020600254604051908152f35b3461073e57604036600319011261073e576004356001600160401b03811161073e576110686110487f5c84c0144a4e16e610c6c44c3571a58af67ce17b61280f57e6feeb2c363eaa60923690600401610b35565b60243561105481610984565b6040519283926040845260408401906105b9565b6001600160a01b0390911660208301520390a1005b3461073e57606036600319011261073e5760043561109a81610984565b6024356110a681610984565b6001600160a01b038216600090815260016020908152604080832033845290915290206044359190549260001984106110f0575b6110e49350613e7e565b60405160018152602090f35b82841061110c57611107836110e495033383613f90565b6110da565b604051637dc7a0d960e11b81523360048201526024810185905260448101849052606490fd5b0390fd5b61113f36610d2a565b61114d818385879597612fa5565b9261115784613869565b5061118261116f85600052600c602052604060002090565b805460ff60f01b1916600160f01b179055565b6013546001600160a01b03939084163003611239575b946111a892916106db9686615bb4565b6013543091166001600160a01b0316141580611214575b611205575b6040518181527f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f9080602081015b0390a16040519081529081906020820190565b61120f6000600d55565b6111c4565b50611234611230600d546001600160801b0381169060801c1490565b1590565b6111bf565b9290939160005b845181101561129957611275903061126b610dc461125e848a6134ac565b516001600160a01b031690565b1461127a57613487565b611240565b611294611287828a6134ac565b5160208151910120614ec8565b613487565b5091939092611198565b3461073e57602036600319011261073e57600435600052600c602052602065ffffffffffff60406000205460a01c16604051908152f35b3461073e57600036600319011261073e5760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b3461073e57600036600319011261073e57602060405160128152f35b3461073e57600036600319011261073e57602065ffffffffffff60105416604051908152f35b3461073e57604036600319011261073e5760043561137481610984565b6001600160a01b0316600090815260096020526040812090611397602435613bdd565b918054829381600581116113e9575b50906020946113b59284614e67565b806113cf5750505b6040516001600160d01b039091168152f35b916113db849293613aa6565b92815220015460301c6113bd565b946113f38661480a565b860395861161143e576020956113b59385875265ffffffffffff80838a8a200154169085161060001461142c5750915b919250946113a6565b92915061143890613195565b90611423565b613009565b634e487b7160e01b600052602160045260246000fd5b6008111561146357565b611443565b9060088210156114635752565b3461073e57602036600319011261073e576020611493600435615718565b6114a06040518092611468565bf35b3461073e57604036600319011261073e57602060ff6114ef6024356114c681610984565b6004356000526011845260036040600020019060018060a01b0316600052602052604060002090565b54166040519015158152f35b3461073e5761150936610d2a565b90611518828285879697612fa5565b61152181615718565b60088110156114635760018060ff83161b161561158c57506000908152600c60205260409020546001600160a01b03163303611574576106db93611564936159df565b6040519081529081906020820190565b60405163233d98e360e01b8152336004820152602490fd5b906115b0606492604051926331b75e4d60e01b845260048401526024830190611468565b60016044820152fd5b3461073e57600036600319011261073e576106db6040516115d981610510565b601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c7400000060208201526040519182916020835260208301906105b9565b3461073e57600036600319011261073e576020602154604051908152f35b3461073e57602036600319011261073e576004356000526011602052604060002080546106db60026001840154930154604051938493846040919493926060820195825260208201520152565b3461073e57600036600319011261073e576106db6040516116a281610510565b60018152603160f81b60208201526040519182916020835260208301906105b9565b6024359060ff8216820361073e57565b6064359060ff8216820361073e57565b3461073e57604036600319011261073e57602061172c6117026116c4565b60405161170e8161052b565b600081526040519161171f8361052b565b6000835233600435613637565b604051908152f35b3461073e57602036600319011261073e57602060043561175381610984565b60018060a01b038091166000526008825260406000205416604051908152f35b9181601f8401121561073e578235916001600160401b03831161073e576020838186019501011161073e57565b3461073e5760c036600319011261073e576117b96116c4565b604435906117c682610984565b6001600160401b039060643582811161073e576117e7903690600401611773565b60843584811161073e576117ff903690600401610b35565b9160a43594851161073e576106db9561181f611564963690600401610b35565b946004356134c5565b3461073e57602036600319011261073e5761002160043561184881610984565b33613c16565b3461073e57608036600319011261073e576118676116c4565b6001600160401b039060443582811161073e57611888903690600401611773565b909160643593841161073e576118b361172c936118ab6020963690600401610b35565b933691610afe565b9033600435613637565b3461073e57602036600319011261073e57602061172c600435613acd565b3461073e57602036600319011261073e576004356118f881610984565b60018060a01b0316600052600960205260206119186040600020546147ba565b63ffffffff60405191168152f35b3461073e57602036600319011261073e57602061172c60043561194881610984565b6001600160a01b031660009081526020819052604090205490565b3461073e57602036600319011261073e5760043565ffffffffffff80821680920361073e57611990613786565b7fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a9360406010549281519084168152846020820152a165ffffffffffff191617601055005b3461073e57606036600319011261073e576119ed6116c4565b6044356001600160401b03811161073e57602091611a1c611a1561172c933690600401611773565b3691610afe565b6040519161171f8361052b565b3461073e57608036600319011261073e576001600160401b0360043581811161073e57611a5a903690600401610be4565b9060243581811161073e57611a73903690600401610c4c565b9160443582811161073e57611a8c903690600401610caa565b60643592831161073e576106db93611aab611564943690600401610b35565b92613051565b3461073e57602036600319011261073e57600435611ace81610984565b60018060a01b031660005260076020526020604060002054604051908152f35b3461073e57604036600319011261073e576001600160401b0360043581811161073e57611b1f903690600401610be4565b9060243590811161073e57611b38903690600401610c4c565b8151815103611be457611b4d82511515614f7b565b60005b8251811015611bb25780611b77611b70610dc461125e611bad95886134ac565b1515614fb6565b611b8c611b8482856134ac565b511515614ff1565b611294611b9c61125e83876134ac565b611ba683866134ac565b5190615050565b611b50565b507f03be9b2a692d7f70f180696d23ab769875fec1b9ec86909e5e62e96e3d709cd09161086b6040519283928361502b565b60405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606490fd5b90815180825260208080930193019160005b828110611c42575050505090565b835185529381019392810192600101611c34565b3461073e57600036600319011261073e57611cf1611c937f00000000000000000000000000000000000000000000000000000000000000006144c4565b6106db611cbf7f00000000000000000000000000000000000000000000000000000000000000006145bd565b611cff60405191611ccf8361052b565b60008352604051958695600f60f81b875260e0602088015260e08701906105b9565b9085820360408701526105b9565b90466060850152306080850152600060a085015283820360c0850152611c22565b3461073e57602036600319011261073e57611d3c600435613bdd565b600a54906000829160058411611d94575b611d579350614d95565b600081611d6c57505060405160008152602090f35b600a611d79602093613aa6565b9152600080516020615c5d833981519152015460301c6113bd565b9192611d9f8161480a565b810390811161143e57611d5793600a835265ffffffffffff8083600080516020615c5d83398151915201541690851610600014611ddd575091611d4d565b929150611de990613195565b90611d4d565b3461073e57608036600319011261073e57600435611e0b6116c4565b9060443591611e1983610984565b6064356001600160401b03811161073e57611230611e3e611ecb923690600401610b35565b6001600160a01b0386166000908152600760205260409020805460018101909155611ec59060405160208101917ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7835288604083015260ff8816606083015260018060a01b038a16608083015260a082015260a08152611ebd81610546565b51902061438a565b86614677565b611ee65790611564916106db93611ee0612f00565b926135bb565b6040516394ab6c0760e01b81526001600160a01b0384166004820152602490fd5b3461073e57600036600319011261073e57602060405165ffffffffffff43168152f35b3461073e57600080600319360112610981576040519080600454611f4d816104a8565b808552916001918083169081156109575750600114611f76576106db856108f081870382610598565b9250600483527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410611fb95750505081016020016108f0826106db6108e0565b80546020858701810191909152909301928101611f9e565b3461073e57600036600319011261073e57602060405160648152f35b3461073e57606036600319011261073e5760043561200a81610984565b6044356001600160401b03811161073e576120619161202f6020923690600401610b35565b50604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610f85576106db916000916120b2575b506040519081529081906020820190565b6120ca915060203d8111610fb057610fa18183610598565b386120a1565b3461073e57602036600319011261073e576004356120ed81610984565b6001600160a01b031660009081526009602090815260409091206001600160d01b0390612119906149c9565b16604051908152f35b3461073e57600036600319011261073e5760206001600160d01b03612119614935565b3461073e57602036600319011261073e5760043561216281610984565b61216a613786565b6013547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617601355005b3461073e57604036600319011261073e576121e36004356121d981610984565b6024359033613e7e565b602060405160018152f35b3461073e57602036600319011261073e57602060405160018152f35b3461073e57602036600319011261073e5760043561223281600052601f602052604060002090565b600681019061224d612248611230845460ff1690565b61551f565b61225c6002820154421061556b565b336000908152602081905260409020612277905415156155aa565b6040513360601b6bffffffffffffffffffffffff191660208201526122b6906122ad81603481015b03601f198101835282610598565b600583016155ea565b600760088201916122c78354613487565b92839055604080518681523360208201529081018490527f9f1b808ccd95cfad6377948752267d2ad18cbd81217ec7abd183a497d47c81d190606090a10154111561230e57005b805460ff191660011790557f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f9061086b90611564565b3461073e57602036600319011261073e57600435600052600c602052602065ffffffffffff60016040600020015416604051908152f35b3461073e57600036600319011261073e576020600f54604051908152f35b3461073e5760a036600319011261073e576123b5600435610984565b6123c0602435610984565b6001600160401b0360443581811161073e576123e0903690600401610c4c565b5060643581811161073e576123f9903690600401610c4c565b5060843590811161073e57612412903690600401610b35565b506106db61241e6137fa565b6040516001600160e01b031990911681529081906020820190565b3461073e57602036600319011261073e57602061172c60043561301f565b606036600319011261073e5760043561246f81610984565b604435906001600160401b03821161073e5760008091612496610021943690600401611773565b9061249f613786565b81604051928392833781018481520391602435905af16124bd613756565b90613fe3565b3461073e5760c036600319011261073e576004356124e081610984565b604435906024356124ef6116d4565b8342116125775761256b61002194612572926040519060208201927fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845260018060a01b038816604084015286606084015260808301526080825261255382610561565b61256660a435936084359351902061438a565b614257565b918261400c565b613c16565b604051632341d78760e11b815260048101859052602490fd5b3461073e57602061172c6125a336610d2a565b92919091612fa5565b3461073e57608036600319011261073e576001600160401b0360043581811161073e576125dd903690600401610b35565b60243591821161073e577f2de0b4ad2878fff8e0328d13d59576e6595e750e974aec7069bd4e182d2d5aaf6111f261261c6106db943690600401610c4c565b926126d660443594612630835115156150fc565b61263c8151151561513a565b61264742871161517c565b6020549561265c61265788613487565b602055565b6126646151bb565b61267d6126766002546021549061408f565b6064900490565b91612686610ab4565b86815260208101949094526040840152606435606084015233608084015260a0830152600060c083015260e082015260006101008201526126d186600052601f602052604060002090565b615453565b6040519182913386846154f7565b3461073e57600036600319011261073e576013546040516001600160a01b039091168152602090f35b3461073e57600036600319011261073e576106db60405161272d81610510565b602081527f737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e60208201526040519182916020835260208301906105b9565b3461073e57604036600319011261073e5760206127c560043561278d81610984565b6024359061279a82610984565b60018060a01b03166000526001835260406000209060018060a01b0316600052602052604060002090565b54604051908152f35b3461073e57600036600319011261073e5760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b6004359063ffffffff8216820361073e57565b3461073e57602036600319011261073e57612835612809565b61283d613786565b63ffffffff8082169182156128aa577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093601054958251918760301c1682526020820152a160301b169069ffffffff000000000000191617601055600080f35b60405163f1cfbf0560e01b815260006004820152602490fd5b3461073e57604036600319011261073e5761206160206004356128e581610984565b60006040516128f38161052b565b52604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b3461073e57602036600319011261073e57600435612941613786565b600f5460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600f55005b3461073e57604036600319011261073e5760043561299781610984565b6024359063ffffffff8216820361073e576106db916129e7916129b8613fca565b506129c1613fca565b506001600160a01b031660009081526009602052604090206129e1613fca565b50613ab5565b50604051906129f582610510565b5465ffffffffffff811680835260309190911c60209283019081526040805192835290516001600160d01b031692820192909252918291820190565b3461073e5760a036600319011261073e57612a4d600435610984565b612a58602435610984565b6084356001600160401b03811161073e57612a77903690600401610b35565b506013546001600160a01b03163003610bbb5760405163f23a6e6160e01b8152602090f35b60165460009291612aac826104a8565b80825291600190818116908115612b235750600114612aca57505050565b9192935060166000527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289916000925b848410612b0b57505060209250010190565b80546020858501810191909152909301928101612af9565b915050602093945060ff929192191683830152151560051b010190565b60175460009291612b50826104a8565b80825291600190818116908115612b235750600114612b6e57505050565b9192935060176000527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15916000925b848410612baf57505060209250010190565b80546020858501810191909152909301928101612b9d565b60185460009291612bd7826104a8565b80825291600190818116908115612b235750600114612bf557505050565b9192935060186000527fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e916000925b848410612c3657505060209250010190565b80546020858501810191909152909301928101612c24565b979499989592612c9390612c85612ca194612c776101009b98958d6101209081815201906105b9565b8c810360208e0152906105b9565b908a820360408c01526105b9565b9088820360608a01526105b9565b97608087015260a086015260c085015260e08401521515910152565b3461073e5760008060031936011261098157604051908181601554612ce1816104a8565b80845293600191808316908115612dc95750600114612d6c575b5050612d0992500382610598565b60405190612d2182612d1a81612a9c565b0383610598565b6106db604051612d3b81612d3481612b40565b0382610598565b604051612d4b81612d3481612bc7565b601954601a54601c5491601d549360ff601e541695604051998a998a612c4e565b9150601582527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4755b848310612dae5750612d0993505081016020013880612cfb565b81935090816020925483858901015201910190918492612d94565b91505060209250612d0994915060ff191682840152151560051b8201013880612cfb565b3461073e57602036600319011261073e57604051632394e7a360e21b8152600480359082018190526020826024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa918215610f85576106db92606492612e7192600092612e83575b50612e6b90613acd565b9061408f565b04604051918291829190602083019252565b612e6b919250612ea09060203d8111610fb057610fa18183610598565b9190612e61565b3461073e57600036600319011261073e576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b6013546001600160a01b03163003610bbb57565b60405190612f0d8261052b565b60008252565b90815180825260208080930193019160005b828110612f33575050505090565b83516001600160a01b031685529381019392810192600101612f25565b90815180825260208092019182818360051b85019501936000915b848310612f7b5750505050505090565b9091929394958480612f9583856001950387528a516105b9565b9801930193019194939290612f6b565b9290612ff19261300392604051948592612fe1612fce602086019960808b5260a0870190612f13565b601f199687878303016040880152611c22565b9085858303016060860152612f50565b90608083015203908101835282610598565b51902090565b634e487b7160e01b600052601160045260246000fd5b600052600c60205260406000205465ffffffffffff908163ffffffff8260d01c169160a01c160181811161143e571690565b919392909361306082336138bb565b1561315d57600f54948561307c575b6108a094955033936132c8565b65ffffffffffff4381166000190181811161143e576130cd9160209160006040516130a68161052b565b52604051630748d63560e31b81523360048201529116602482015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115610f855760009161313f575b50868110613118575061306f565b604051636121770b60e11b8152336004820152602481019190915260448101879052606490fd5b613157915060203d8111610fb057610fa18183610598565b3861310a565b60405163d9b3955760e01b8152336004820152602490fd5b6040906131916000939594606083019683526020830190611468565b0152565b906001820180921161143e57565b9190820180921161143e57565b906131ba82610bcd565b6131c76040519182610598565b82815280926131d8601f1991610bcd565b019060005b8281106131e957505050565b8060606020809385010152016131dd565b959261322d9061323b939b9a9899969592885260209b60018060a01b03168c8901526101208060408a0152880190612f13565b908682036060880152611c22565b9784890360808601528251808a52818a019180808360051b8d01019501926000905b83821061329a5750505050506108a0969750906132819184820360a0860152612f50565b9360c083015260e08201526101008184039101526105b9565b909192939583806132b98f93600194601f199082030186528a516105b9565b9801920192019093929161325d565b9194939092946132e086516020880120828686612fa5565b95835185519081811480159061347c575b8015613474575b61344b57505065ffffffffffff948561332d61331e8a600052600c602052604060002090565b5460a01c65ffffffffffff1690565b16613424577f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e09561341f9363ffffffff61336f601054938085169043166131a3565b9260301c166133fd61338b8c600052600c602052604060002090565b80546001600160a01b0319166001600160a01b038a161781556133d46133b086614788565b825465ffffffffffff60a01b191660a09190911b65ffffffffffff60a01b16178255565b6133dd836147ba565b815463ffffffff60d01b191660d09190911b63ffffffff60d01b16179055565b61341161340a89516131b0565b91846131a3565b936040519889988d8a6131fa565b0390a1565b8761342e81615718565b6040516331b75e4d60e01b81529182916111329160048401613175565b8351604051630447b05d60e41b8152600481019290925260248201526044810191909152606490fd5b5080156132f8565b5083518114156132f1565b600019811461143e5760010190565b634e487b7160e01b600052603260045260246000fd5b80518210156134c05760209160051b010190565b613496565b93909291969561123061357f916135798a6134fb8160018060a01b03166000526007602052604060002080549060018201905590565b61350636888a610afe565b602081519101208b5160208d0120906040519260208401947f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81186528d604086015260ff8d16606086015260018060a01b0316608085015260a084015260c083015260e082015260e08152611ebd8161057c565b8a614677565b61359a576108a0959691613594913691610afe565b92613637565b6040516394ab6c0760e01b81526001600160a01b0388166004820152602490fd5b916108a09391604051936135ce8561052b565b60008552613637565b93909260ff613603936108a097958752166020860152604085015260a0606085015260a08401906105b9565b9160808184039101526105b9565b909260ff6080936108a096958452166020830152604082015281606082015201906105b9565b92919061364384615718565b6008811015611463576002600160ff83161b1615613728575083600052600c60205261369f613697613691613686604060002065ffffffffffff905460a01c1690565b65ffffffffffff1690565b83613a29565b838387613923565b948051156000146136ec57506136e67fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4938660405194859460018060a01b03169785613611565b0390a290565b6136e6907fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712948760405195869560018060a01b031698866135d7565b6040516331b75e4d60e01b81526004810186905260649161374d906024830190611468565b60026044820152fd5b3d15613781573d9061376782610ae3565b916137756040519384610598565b82523d6000602084013e565b606090565b6013546001600160a01b03163381036137e25730036137a157565b6137aa36610ae3565b6137b76040519182610598565b368152602081019036600083376000602036830101525190205b806137da614f23565b036137d15750565b6040516347096e4760e01b8152336004820152602490fd5b6013546001600160a01b03163003610bbb5763bc197c8160e01b90565b61382081615718565b906008821015611463576010600160ff84161b161561383d575090565b613860606492604051926331b75e4d60e01b845260048401526024830190611468565b60106044820152fd5b61387281615718565b906008821015611463576030600160ff84161b161561388f575090565b6138b2606492604051926331b75e4d60e01b845260048401526024830190611468565b60306044820152fd5b9080516034811061391b5760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b0161391b576138fa916029198201906140a2565b901591821561390857505090565b6001600160a01b03918216911614919050565b505050600190565b61393a909291926000526011602052604060002090565b916003830161396561395e83839060018060a01b0316600052602052604060002090565b5460ff1690565b6139ed5761398b60ff9392613998929060018060a01b0316600052602052604060002090565b805460ff19166001179055565b16806139af57506139aa8282546131a3565b905590565b600181036139c657506001016139aa8282546131a3565b6002036139db576002016139aa8282546131a3565b6040516303599be160e11b8152600490fd5b6040516371c6af4960e01b81526001600160a01b0383166004820152602490fd5b9081602091031261073e575190565b6040513d6000823e3d90fd5b604051630748d63560e31b81526001600160a01b0391821660048201526024810192909252602090829060449082907f0000000000000000000000000000000000000000000000000000000000000000165afa908115610f8557600091613a8e575090565b6108a0915060203d8111610fb057610fa18183610598565b60001981019190821161143e57565b80548210156134c05760005260206000200190600090565b60125490600019820182811161143e578211156134c057600091601283527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34438101549165ffffffffffff92818482161115613bd25750613b2c90614788565b83908260058111613b7c575b50613b439350614dfe565b80613b5657505b6001600160d01b031690565b613b61601291613aa6565b9152600080516020615c3d833981519152015460301c613b4a565b9092613b878261480a565b820391821161143e57613b4394601287528083600080516020615c3d83398151915201541690851610600014613bc05750915b38613b38565b929150613bcc90613195565b90613bba565b935050505060301c90565b65ffffffffffff431680821015613bf857506108a090614788565b6044925060405191637669fc0f60e11b835260048301526024820152fd5b6001600160a01b03818116600081815260086020526040812080548685166001600160a01b031982168117909255610ae196941694613c939390928691907f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9080a46001600160a01b031660009081526020819052604090205490565b915b6001600160a01b03808316939291908116908185141580613ddd575b613cbd575b5050505050565b81613d42575b505082613cd2575b8080613cb6565b6001600160a01b031660009081526009602052604090207fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72491613d1f91613d199091614755565b90613de6565b604080516001600160d01b039384168152919092166020820152a2388080613ccb565b6001600160a01b03166000908152600960205260409020613d6284614755565b6001600160d01b03908180613d76856149c9565b169116900381811161143e57613dba613dd3917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7249465ffffffffffff431690614cd9565b6040805192851683529316602082015291829190820190565b0390a23880613cc3565b50831515613cb1565b906001600160d01b03908180613dfb856149c9565b1691160190811161143e57613e199165ffffffffffff431690614cd9565b9091565b6001600160d01b03908180613e3061497f565b1691160190811161143e57613e199065ffffffffffff4316614c22565b6001600160d01b03908180613e6061497f565b169116900390811161143e57613e199065ffffffffffff4316614c22565b6001600160a01b0380821694939291908515613f775782168015613f5e576001600160a01b03821660009081526020819052604090205495848710613f2f5784610ae1969703613ee08460018060a01b03166000526000602052604060002090565b556001600160a01b0384166000908152602081815260409182902080548801905590518681527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3615695565b60405163391434e360e21b81526001600160a01b03841660048201526024810188905260448101869052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b906001600160a01b0380831615610a4a57811615610a31576109e2613fc79260018060a01b03166000526001602052604060002090565b55565b60405190613fd782610510565b60006020838281520152565b909190610ae15750805115613ffa57805190602001fd5b60405163d6bda27560e01b8152600490fd5b6001600160a01b0381166000908152600760205260409020805460018101909155809203614038575050565b6040516301d4b62360e61b81526001600160a01b039190911660048201526024810191909152604490fd5b908160011b918083046002149015171561143e57565b908160041b918083046010149015171561143e57565b8181029291811591840414171561143e57565b919082518211801561412b575b614102576140bc81613195565b82118061410d575b6140cf901515614063565b6028018060281161143e5781830383811161143e5703614102576140f292614134565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b146140c4565b508181116140af565b92909261414084613195565b8311806141c7575b614153901515614063565b93600094810180911161143e579192905b8183106141745750505060019190565b9092919360ff6141956141906020888601015160ff60f81b1690565b6141e5565b1690600f82116141bb57906141ac6141b392614079565b0194613487565b919290614164565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14614148565b60f81c602f81118061424d575b1561420157602f190160ff1690565b6060811180614243575b1561421a576056190160ff1690565b6040811180614239575b15614233576036190160ff1690565b5060ff90565b5060478110614224565b506067811061420b565b50603a81106141f2565b916108a093916142669361426f565b909291926142fd565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116142e757926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa15610f855780516001600160a01b038116156142de57918190565b50809160019190565b50505060009160039190565b6004111561146357565b614306816142f3565b8061430f575050565b614318816142f3565b600181036143325760405163f645eedf60e01b8152600490fd5b61433b816142f3565b6002810361435c5760405163fce698f760e01b815260048101839052602490fd5b806143686003926142f3565b146143705750565b6040516335e2f38360e21b81526004810191909152602490fd5b6042906143956143b0565b906040519161190160f01b8352600283015260228201522090565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316148061449b575b1561440b577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261300381610546565b507f000000000000000000000000000000000000000000000000000000000000000046146143e2565b60ff81146145025760ff811690601f82116144f057604051916144e683610510565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b50604051600554816000614515836104a8565b8083529260019081811690811561459b575060011461453c575b506108a092500382610598565b6005600090815291507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b84831061458057506108a093505081016020013861452f565b81935090816020925483858901015201910190918492614567565b9050602092506108a094915060ff191682840152151560051b8201013861452f565b60ff81146145df5760ff811690601f82116144f057604051916144e683610510565b506040516006548160006145f2836104a8565b8083529260019081811690811561459b575060011461461857506108a092500382610598565b6006600090815291507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b84831061465c57506108a093505081016020013861452f565b81935090816020925483858901015201910190918492614643565b9091813b61469f576146899192614719565b50614693816142f3565b15918261390857505090565b60009182916040516146d58161229f6020820194630b135d3f60e11b998a875260248401526040604484015260648301906105b9565b51915afa906146e2613756565b8261470b575b826146f257505090565b61470791925060208082518301019101613a0e565b1490565b9150602082511015916146e8565b815191906041830361474a5761474392506020820151906060604084015193015160001a9061426f565b9192909190565b505060009160029190565b6001600160d01b0390818111614769571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b65ffffffffffff9081811161479b571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b63ffffffff908181116147cb571690565b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b81156147f4570490565b634e487b7160e01b600052601260045260246000fd5b60018111156108a057600181600160801b811015614923575b6148cb6148c16148b76148ad6148a36148996148d797600488600160401b6148d29a1015614916575b640100000000811015614909575b620100008110156148fc575b6101008110156148f0575b60108110156148e4575b10156148dc575b60030260011c614892818b6147ea565b0160011c90565b614892818a6147ea565b61489281896147ea565b61489281886147ea565b61489281876147ea565b61489281866147ea565b80936147ea565b821190565b900390565b60011b614882565b811c9160021b9161487b565b60081c91811b91614871565b60101c9160081b91614866565b60201c9160101b9161485a565b60401c9160201b9161484c565b50600160401b9050608082901c614823565b60125460009080614947575050600090565b8060001981011161143e5760127fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34439252015460301c90565b600a5460009080614991575050600090565b8060001981011161143e57600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b8054600091816149db57505050600090565b60001992828481011161143e5760209181522001015460301c90565b634e487b7160e01b600052600060045260246000fd5b60125490600160401b82101561050b5760018201806012558210156134c057610ae1916012600052600080516020615c3d8339815191520190614a6d65ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b60200151815465ffffffffffff1660309190911b65ffffffffffff1916179055565b600a5490600160401b82101561050b576001820180600a558210156134c057610ae191600a600052600080516020615c5d8339815191520190614a6d65ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b8054600160401b81101561050b57614b0c91600182018155613ab5565b614b34578151815465ffffffffffff191665ffffffffffff91909116178155610ae191614a6d565b6149f7565b6012549192918015614bf857614b51614b6991613aa6565b6012600052600080516020615c3d8339815191520190565b9081549165ffffffffffff90818416918316808311614be657869203614bae57614ba792509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050614be190614bcd614bbf610ad4565b65ffffffffffff9092168252565b6001600160d01b0385166020820152614a0d565b614ba7565b604051632520601d60e01b8152600490fd5b50614c1c90614c08614bbf610ad4565b6001600160d01b0384166020820152614a0d565b60009190565b600a549192918015614cb557614c3a614c5291613aa6565b600a600052600080516020615c5d8339815191520190565b9081549165ffffffffffff90818416918316808311614be657869203614c9057614ba792509065ffffffffffff82549181199060301b169116179055565b5050614be190614ca1614bbf610ad4565b6001600160d01b0385166020820152614a8f565b50614c1c90614cc5614bbf610ad4565b6001600160d01b0384166020820152614a8f565b80549293928015614d7057614cf0614cfd91613aa6565b8260005260206000200190565b9182549265ffffffffffff91828516928116808411614be657879303614d3c5750614ba792509065ffffffffffff82549181199060301b169116179055565b915050614be191614d5c614d4e610ad4565b65ffffffffffff9093168352565b6001600160d01b0386166020830152614aef565b5090614c1c91614d81614d4e610ad4565b6001600160d01b0385166020830152614aef565b905b828110614da357505090565b90918082169080831860011c820180921161143e57600a60005265ffffffffffff8083600080516020615c5d83398151915201541690851610600014614dec5750915b90614d97565b929150614df890613195565b90614de6565b905b828110614e0c57505090565b90918082169080831860011c820180921161143e57601260005265ffffffffffff8083600080516020615c3d83398151915201541690851610600014614e555750915b90614e00565b929150614e6190613195565b90614e4f565b91905b838210614e775750505090565b9091928083169080841860011c820180921161143e5760008581526020902082015465ffffffffffff9081169084161015614eb65750925b9190614e6a565b939250614ec290613195565b91614eaf565b600d548060801c9160018301926001600160801b0380931683851614614f1057600052600e602052604060002055600d54916001600160801b03199060801b16911617600d55565b634e487b7160005260416020526024601cfd5b600d54906001600160801b038083169260801c8314614f685782600052600e602052600160406000209360008554955501166001600160801b0319600d541617600d55565b634e487b7160005260316020526024601cfd5b15614f8257565b60405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606490fd5b15614fbd57565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b15614ff857565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b90916150426108a093604084526040840190612f13565b916020818403910152611c22565b91906001600160a01b0383168015613f5e5760025482810180911161143e576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b0384116150d657610ae1929350615617565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b1561510357565b60405162461bcd60e51b815260206004820152600f60248201526e22b6b83a3c9037b832b930ba34b7b760891b6044820152606490fd5b1561514157565b60405162461bcd60e51b8152602060048201526013602482015272456d7074792074617267657420636861696e7360681b6044820152606490fd5b1561518357565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c69642074696d656c6f636b60801b6044820152606490fd5b6040516151c78161052b565b6000815290565b8181106151d9575050565b600081556001016151ce565b9190601f81116151f457505050565b610ae1926000526020600020906020601f840160051c83019310615220575b601f0160051c01906151ce565b9091508190615213565b91909182516001600160401b03811161050b576152518161524b84546104a8565b846151e5565b602080601f831160011461528d575081929394600092615282575b50508160011b916000199060031b1c1916179055565b01519050388061526c565b90601f198316956152a385600052602060002090565b926000905b8882106152e0575050836001959697106152c7575b505050811b019055565b015160001960f88460031b161c191690553880806152bd565b806001859682949686015181550195019301906152a8565b8151916001600160401b03831161050b57600160401b831161050b578154838355808410615353575b50602080910191600052806000209060005b848110615341575050505050565b83518382015592810192600101615333565b61536b908360005284602060002091820191016151ce565b38615321565b815191600160401b831161050b5781548383558084106153cf575b506153a1602080920192600052602060002090565b6000925b8484106153b3575050505050565b600183826153c38394518661522a565b019201930192906153a5565b6000838152846020822092830192015b8281106153ed57505061538c565b806153fa600192546104a8565b80615407575b50016153df565b601f90818111841461541f5750508281555b38615400565b836154419261543385600052602060002090565b920160051c820191016151ce565b60008181526020812081835555615419565b9061010060089161546581518561522a565b6154766020820151600186016152f8565b604081015160028501556060810151600385015560808101516004850180546001600160a01b0319166001600160a01b039092169190911790556154c160a082015160058601615371565b6154e66154d160c0830151151590565b600686019060ff801983541691151516179055565b60e081015160078501550151910155565b9081526001600160a01b0390911660208201526060604082018190526108a0929101906105b9565b1561552657565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b1561557257565b60405162461bcd60e51b815260206004820152601060248201526f141c9bdc1bdcd85b08195e1c1a5c995960821b6044820152606490fd5b156155b157565b60405162461bcd60e51b81526020600482015260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b8054600160401b81101561050b5761560791600182018155613ab5565b919091614b3457610ae19161522a565b90610ae19161562d61562883614755565b613e1d565b50506001600160a01b0390811690811561567d575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c754600092835260409092205481169116613c95565b61568e61568984614755565b613e4d565b5050615642565b610ae192916001600160a01b039182169190819083156156ed575b169182156156da575b60005260086020528060406000205416916000526040600020541690613c95565b6156e661568985614755565b50506156b9565b6156f961562886614755565b50506156b0565b9081602091031261073e5751801515810361073e5790565b6157218161582a565b9061572b82611459565b600582036158265761574891506000526014602052604060002090565b5460135461575e906001600160a01b0316610dc4565b604051632c258a9f60e11b81526004810183905260209291908381602481855afa908115610f8557600091615809575b501561579c57505050600590565b604051632ab0f52960e01b815260048101929092528290829060249082905afa918215610f85576000926157dc575b5050156157d757600790565b600290565b6157fb9250803d10615802575b6157f38183610598565b810190615700565b38806157cb565b503d6157e9565b6158209150843d8611615802576157f38183610598565b3861578e565b5090565b61583e81600052600c602052604060002090565b5460ff8160f01c166159365760f81c6159305761586b61368661331e83600052600c602052604060002090565b80156159175765ffffffffffff4316809110156159105761588b8261301f565b106158965750600190565b6158a26112308261593d565b80156158eb575b156158b45750600390565b61368660016158d06158dd93600052600c602052604060002090565b015465ffffffffffff1690565b6158e657600490565b600590565b5061590b6112308260005260116020526040600020600181015490541090565b6158a9565b5050600090565b604051636ad0607560e01b815260048101839052602490fd5b50600290565b5050600790565b60005260116020526040600020600c60205265ffffffffffff60406000205460a01c1660405190632394e7a360e21b825280600483015260208260248160018060a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa918215610f85576159da926064926159c892600092612e835750612e6b90613acd565b049160026001820154910154906131a3565b101590565b906159eb939291612fa5565b6159f481615718565b600881101561146357603b600160ff83161b1615615af35750615a39615a2482600052600c602052604060002090565b80546001600160f81b0316600160f81b179055565b6040518181527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c90602090a1615a79816000526014602052604060002090565b5480615a83575090565b601354615a98906001600160a01b0316610dc4565b803b1561073e5760405163c4d252f560e01b815260048101929092526000908290602490829084905af18015610f8557615ae0575b5060008181526014602052604081205590565b80610f79615aed926104f8565b38615acd565b90615b17606492604051926331b75e4d60e01b845260048401526024830190611468565b603b6044820152fd5b949392615b4c608093615b3e615b5a9460a08a5260a08a0190612f13565b9088820360208a0152611c22565b908682036040880152612f50565b93600060608201520152565b9192615b9560a094615b87615ba3949998979960c0875260c0870190612f13565b908582036020870152611c22565b908382036040850152612f50565b946000606083015260808201520152565b9290939160018060a01b036013541690813b1561073e57600093615c036040519788958694859463e38335e560e01b86526bffffffffffffffffffffffff193060601b16189260048601615b20565b039134905af1908115610f8557600092613fc792615c2d575b506000526014602052604060002090565b615c36906104f8565b38615c1c56febb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a26469706673582212202627befb43889ac882392be166d232b6cf88ef987654f0f10b333640cb78ebe464736f6c63430008140033bb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34443ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc10553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997","opcodes":"PUSH2 0x180 PUSH1 0x40 MSTORE CALLVALUE PUSH3 0x9F JUMPI PUSH3 0x20 PUSH3 0x19 PUSH3 0x29D JUMP JUMPDEST SWAP1 PUSH3 0x1014 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5CB2 SWAP1 DUP2 PUSH3 0x1A0B DUP3 CODECOPY PUSH1 0x80 MLOAD DUP2 PUSH2 0x43E9 ADD MSTORE PUSH1 0xA0 MLOAD DUP2 PUSH2 0x449E ADD MSTORE PUSH1 0xC0 MLOAD DUP2 PUSH2 0x43B3 ADD MSTORE PUSH1 0xE0 MLOAD DUP2 PUSH2 0x4438 ADD MSTORE PUSH2 0x100 MLOAD DUP2 PUSH2 0x445E ADD MSTORE PUSH2 0x120 MLOAD DUP2 PUSH2 0x1C6F ADD MSTORE PUSH2 0x140 MLOAD DUP2 PUSH2 0x1C9B ADD MSTORE PUSH2 0x160 MLOAD DUP2 DUP2 DUP2 PUSH2 0x2065 ADD MSTORE DUP2 DUP2 PUSH2 0x2E1D ADD MSTORE DUP2 DUP2 PUSH2 0x2EBD ADD MSTORE DUP2 DUP2 PUSH2 0x30D1 ADD MSTORE DUP2 DUP2 PUSH2 0x3A5A ADD MSTORE PUSH2 0x5983 ADD MSTORE RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH3 0xD6 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH3 0xA4 JUMP JUMPDEST PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND DUP2 ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT SWAP1 DUP3 LT OR PUSH3 0xD6 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x180 DUP3 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP4 DUP3 LT OR PUSH3 0xD6 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x140 DUP3 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP4 DUP3 LT OR PUSH3 0xD6 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH3 0x151 DUP3 PUSH3 0xBA JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH3 0x167 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x156 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x9F JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH1 0x40 MLOAD SWAP3 PUSH3 0x1AF PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP6 PUSH3 0xDC JUMP JUMPDEST DUP2 DUP5 MSTORE PUSH1 0x20 DUP3 DUP5 ADD ADD GT PUSH3 0x9F JUMPI PUSH3 0x1D0 SWAP2 PUSH1 0x20 DUP1 DUP6 ADD SWAP2 ADD PUSH3 0x153 JUMP JUMPDEST SWAP1 JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH3 0x9F JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP3 SWAP1 SWAP2 SWAP1 DUP4 DUP4 GT PUSH3 0xD6 JUMPI DUP3 PUSH1 0x5 SHL PUSH1 0x40 MLOAD SWAP5 PUSH1 0x20 SWAP5 PUSH3 0x20F DUP7 DUP5 ADD DUP9 PUSH3 0xDC JUMP JUMPDEST DUP7 MSTORE DUP5 DUP1 DUP8 ADD SWAP3 DUP5 ADD ADD SWAP4 DUP1 DUP6 GT PUSH3 0x9F JUMPI DUP6 DUP5 ADD SWAP3 JUMPDEST DUP6 DUP5 LT PUSH3 0x239 JUMPI POP POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD DUP4 DUP2 GT PUSH3 0x9F JUMPI DUP8 SWAP2 PUSH3 0x256 DUP5 DUP5 DUP1 SWAP5 DUP11 ADD ADD PUSH3 0x178 JUMP JUMPDEST DUP2 MSTORE ADD SWAP4 ADD SWAP3 PUSH3 0x227 JUMP JUMPDEST MLOAD SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 AND DUP3 SUB PUSH3 0x9F JUMPI JUMP JUMPDEST MLOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH3 0x9F JUMPI JUMP JUMPDEST MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH3 0x9F JUMPI JUMP JUMPDEST PUSH3 0x771D SWAP1 DUP2 CODESIZE SUB DUP1 PUSH1 0x40 MLOAD SWAP4 PUSH3 0x2B6 DUP3 DUP7 PUSH3 0xDC JUMP JUMPDEST DUP5 CODECOPY DUP3 ADD PUSH1 0x40 DUP4 DUP3 SUB SLT PUSH3 0x9F JUMPI DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 SWAP1 DUP3 DUP2 GT PUSH3 0x9F JUMPI DUP5 ADD SWAP4 PUSH2 0x180 DUP6 DUP4 SUB SLT PUSH3 0x9F JUMPI PUSH3 0x2F2 PUSH3 0x100 JUMP JUMPDEST SWAP5 DUP1 MLOAD DUP5 DUP2 GT PUSH3 0x9F JUMPI DUP4 PUSH3 0x30B SWAP2 DUP4 ADD PUSH3 0x178 JUMP JUMPDEST DUP7 MSTORE PUSH1 0x20 DUP2 ADD MLOAD DUP5 DUP2 GT PUSH3 0x9F JUMPI DUP4 PUSH3 0x328 SWAP2 DUP4 ADD PUSH3 0x178 JUMP JUMPDEST PUSH1 0x20 DUP8 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD DUP5 DUP2 GT PUSH3 0x9F JUMPI DUP4 PUSH3 0x348 SWAP2 DUP4 ADD PUSH3 0x178 JUMP JUMPDEST PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD DUP5 DUP2 GT PUSH3 0x9F JUMPI DUP4 PUSH3 0x368 SWAP2 DUP4 ADD PUSH3 0x178 JUMP JUMPDEST PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP8 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD SWAP4 DUP5 GT PUSH3 0x9F JUMPI PUSH3 0x3A2 PUSH1 0x20 SWAP4 PUSH3 0x1D0 SWAP6 DUP4 ADD PUSH3 0x1D3 JUMP JUMPDEST PUSH1 0xC0 DUP8 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP8 ADD MSTORE PUSH2 0x100 PUSH3 0x3C1 DUP2 DUP4 ADD PUSH3 0x262 JUMP JUMPDEST SWAP1 DUP8 ADD MSTORE PUSH2 0x120 PUSH3 0x3D5 DUP2 DUP4 ADD PUSH3 0x276 JUMP JUMPDEST SWAP1 DUP8 ADD MSTORE PUSH2 0x140 DUP1 DUP3 ADD MLOAD SWAP1 DUP8 ADD MSTORE PUSH2 0x160 DUP1 SWAP2 ADD MLOAD SWAP1 DUP7 ADD MSTORE ADD PUSH3 0x288 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH3 0x428 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH3 0x412 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 PUSH1 0x7F AND SWAP2 PUSH3 0x406 JUMP JUMPDEST DUP2 DUP2 LT PUSH3 0x43F JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x433 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x45A JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x48B JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x433 JUMP JUMPDEST SWAP1 SWAP2 POP DUP2 SWAP1 PUSH3 0x47D JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x4A4 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x4 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x48B JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x433 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x4E2 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0xB PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x48B JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x433 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x520 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x5 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x48B JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x433 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x55E JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x48B JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x433 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x59C JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x16 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x48B JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x433 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x5DA JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x17 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x48B JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x433 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x618 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x18 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x48B JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x433 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x656 JUMPI POP POP JUMP JUMPDEST PUSH3 0x151 SWAP2 PUSH1 0x15 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x48B JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x433 JUMP JUMPDEST SWAP2 SWAP1 PUSH1 0x1F DUP2 GT PUSH3 0x696 JUMPI POP POP POP JUMP JUMPDEST PUSH3 0x151 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH3 0x48B JUMPI PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH3 0x433 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0x6F0 DUP2 PUSH3 0x6EA PUSH1 0x4 SLOAD PUSH3 0x3F6 JUMP JUMPDEST PUSH3 0x496 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x72F JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x723 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x4 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x70C JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0x79E JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0x784 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x4 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x779 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x763 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0x7E3 DUP2 PUSH3 0x7DD PUSH1 0xB SLOAD PUSH3 0x3F6 JUMP JUMPDEST PUSH3 0x4D4 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x822 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x816 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0xB SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x7FF JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0x175B7A638427703F0DBE7BB9BBF987A2551717B34E79F33B5B1008D1FA01DB9 SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0x891 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0x877 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0xB SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x86C JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x856 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0x8D6 DUP2 PUSH3 0x8D0 PUSH1 0x16 SLOAD PUSH3 0x3F6 JUMP JUMPDEST PUSH3 0x58E JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x915 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x909 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x16 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x8F2 JUMP JUMPDEST PUSH1 0x16 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0xD833147D7DC355BA459FC788F669E58CFAF9DC25DDCD0702E87D69C7B5124289 SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0x984 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0x96A JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x16 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x95F JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x949 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0x9C9 DUP2 PUSH3 0x9C3 PUSH1 0x17 SLOAD PUSH3 0x3F6 JUMP JUMPDEST PUSH3 0x5CC JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xA08 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x9FC JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x17 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x9E5 JUMP JUMPDEST PUSH1 0x17 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0xC624B66CC0138B8FABC209247F72D758E1CF3343756D543BADBF24212BED8C15 SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0xA77 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0xA5D JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x17 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xA52 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0xA3C JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0xABC DUP2 PUSH3 0xAB6 PUSH1 0x18 SLOAD PUSH3 0x3F6 JUMP JUMPDEST PUSH3 0x60A JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xAFB JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0xAEF JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x18 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xAD8 JUMP JUMPDEST PUSH1 0x18 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0xB13D2D76D1F4B7BE834882E410B3E3A8AFAF69F83600AE24DB354391D2378D2E SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0xB6A JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0xB50 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x18 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xB45 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0xB2F JUMP JUMPDEST DUP2 MLOAD SWAP2 SWAP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0xBAF DUP2 PUSH3 0xBA8 DUP5 SLOAD PUSH3 0x3F6 JUMP JUMPDEST DUP5 PUSH3 0x686 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xBEE JUMPI POP DUP2 SWAP3 SWAP4 SWAP5 PUSH1 0x0 SWAP3 PUSH3 0xBE2 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xBCC JUMP JUMPDEST SWAP1 PUSH1 0x1F NOT DUP4 AND SWAP6 PUSH3 0xC05 DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP9 DUP3 LT PUSH3 0xC45 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 SWAP8 LT PUSH3 0xC2B JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xC21 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0xC0A JUMP JUMPDEST DUP1 MLOAD SWAP1 PUSH9 0x10000000000000000 DUP3 GT PUSH3 0xD6 JUMPI PUSH1 0x1B SLOAD DUP3 PUSH1 0x1B SSTORE DUP1 DUP4 LT PUSH3 0xCD0 JUMPI JUMPDEST POP PUSH1 0x1B PUSH1 0x0 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD SWAP1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x76DD DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH3 0xCB1 JUMPI POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP4 DUP3 PUSH3 0xCC3 DUP4 SWAP5 MLOAD DUP7 PUSH3 0xB83 JUMP JUMPDEST ADD SWAP3 ADD SWAP4 ADD SWAP3 SWAP1 PUSH3 0xCA2 JUMP JUMPDEST PUSH1 0x1B PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x76DD DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP2 DUP3 ADD SWAP2 DUP5 ADD JUMPDEST DUP3 DUP2 LT PUSH3 0xCFE JUMPI POP POP PUSH3 0xC82 JUMP JUMPDEST DUP1 PUSH3 0xD0D PUSH1 0x1 SWAP3 SLOAD PUSH3 0x3F6 JUMP JUMPDEST DUP1 PUSH3 0xD1C JUMPI JUMPDEST POP ADD PUSH3 0xCEE JUMP JUMPDEST PUSH1 0x1F SWAP1 DUP2 DUP2 GT DUP5 EQ PUSH3 0xD36 JUMPI POP POP DUP3 DUP2 SSTORE JUMPDEST CODESIZE PUSH3 0xD14 JUMP JUMPDEST DUP4 PUSH3 0xD5B SWAP3 PUSH3 0xD4C DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 ADD PUSH3 0x433 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP2 DUP4 SSTORE SSTORE PUSH3 0xD2F JUMP JUMPDEST DUP1 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xD6 JUMPI PUSH3 0xD99 DUP2 PUSH3 0xD93 PUSH1 0x15 SLOAD PUSH3 0x3F6 JUMP JUMPDEST PUSH3 0x648 JUMP JUMPDEST PUSH1 0x20 SWAP2 DUP3 SWAP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xE5A JUMPI PUSH3 0xE3C SWAP4 DUP4 PUSH2 0x120 SWAP5 PUSH3 0x151 SWAP8 SWAP5 PUSH3 0xDE7 SWAP5 PUSH1 0x0 SWAP3 PUSH3 0xE4E JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x15 SSTORE JUMPDEST DUP3 ADD MLOAD PUSH3 0x8AA JUMP JUMPDEST PUSH3 0xDF6 PUSH1 0x40 DUP3 ADD MLOAD PUSH3 0x99D JUMP JUMPDEST PUSH3 0xE05 PUSH1 0x60 DUP3 ADD MLOAD PUSH3 0xA90 JUMP JUMPDEST PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x19 SSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0x1A SSTORE PUSH3 0xE24 PUSH1 0xC0 DUP3 ADD MLOAD PUSH3 0xC5E JUMP JUMPDEST PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x1C SSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH1 0x1D SSTORE ADD MLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0xFF DUP1 NOT PUSH1 0x1E SLOAD AND SWAP2 ISZERO ISZERO AND OR PUSH1 0x1E SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xDC8 JUMP JUMPDEST PUSH1 0x15 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP2 SWAP1 PUSH32 0x55F448FDEA98C4D29EB340757EF0A66CD03DBB9538908A6A81D96026B71EC475 SWAP3 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH3 0xEDD JUMPI POP DUP5 PUSH3 0x151 SWAP8 SWAP5 PUSH3 0xDE7 SWAP5 PUSH3 0xE3C SWAP9 SWAP5 PUSH2 0x120 SWAP9 PUSH1 0x1 SWAP6 LT PUSH3 0xEC3 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x15 SSTORE PUSH3 0xDDE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0xEB4 JUMP JUMPDEST SWAP3 SWAP4 DUP7 PUSH1 0x1 DUP2 SWAP3 DUP8 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD PUSH3 0xE8B JUMP JUMPDEST SWAP1 PUSH1 0x20 SWAP2 PUSH3 0xF10 DUP2 MLOAD DUP1 SWAP3 DUP2 DUP6 MSTORE DUP6 DUP1 DUP7 ADD SWAP2 ADD PUSH3 0x153 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST SWAP9 SWAP7 SWAP6 SWAP3 PUSH3 0xF69 SWAP1 PUSH3 0xF5A PUSH3 0xF49 SWAP11 SWAP15 SWAP14 SWAP13 SWAP11 PUSH3 0xF78 SWAP6 SWAP8 SWAP5 DUP14 PUSH2 0x160 SWAP1 DUP2 DUP2 MSTORE ADD SWAP1 PUSH3 0xEF5 JUMP JUMPDEST PUSH1 0x20 SWAP8 DUP14 DUP10 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH3 0xEF5 JUMP JUMPDEST SWAP1 DUP12 DUP3 SUB PUSH1 0x40 DUP14 ADD MSTORE PUSH3 0xEF5 JUMP JUMPDEST SWAP1 DUP10 DUP3 SUB PUSH1 0x60 DUP12 ADD MSTORE PUSH3 0xEF5 JUMP JUMPDEST SWAP3 PUSH1 0x80 DUP9 ADD MSTORE PUSH1 0xA0 DUP8 ADD MSTORE DUP6 DUP3 SUB PUSH1 0xC0 DUP8 ADD MSTORE DUP3 MLOAD SWAP1 DUP2 DUP4 MSTORE DUP1 DUP4 ADD SWAP3 DUP2 DUP1 DUP5 PUSH1 0x5 SHL DUP4 ADD ADD SWAP6 ADD SWAP4 PUSH1 0x0 SWAP2 JUMPDEST DUP5 DUP4 LT PUSH3 0xFE3 JUMPI POP POP POP POP POP PUSH1 0xE0 DUP6 ADD SWAP8 SWAP1 SWAP8 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH2 0x100 DUP6 ADD MSTORE SWAP2 DUP2 AND PUSH2 0x120 DUP5 ADD MSTORE SWAP3 SWAP1 SWAP3 AND PUSH2 0x140 SWAP1 SWAP2 ADD MSTORE SWAP2 POP JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 DUP5 DUP1 PUSH3 0x1003 PUSH1 0x1 SWAP4 PUSH1 0x1F NOT DUP7 DUP3 SUB ADD DUP8 MSTORE DUP11 MLOAD PUSH3 0xEF5 JUMP JUMPDEST SWAP9 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP5 SWAP4 SWAP3 SWAP1 PUSH3 0xFA5 JUMP JUMPDEST SWAP1 PUSH2 0x160 DUP3 ADD SWAP2 DUP3 MLOAD SWAP3 PUSH2 0x100 SWAP3 DUP4 DUP4 ADD MLOAD PUSH3 0x1036 SWAP1 PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST SWAP3 PUSH2 0x120 SWAP6 DUP7 DUP3 ADD MLOAD PUSH3 0x104D SWAP1 PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST SWAP5 PUSH2 0x140 DUP4 ADD MLOAD DUP4 MLOAD DUP1 SWAP2 PUSH1 0x20 DUP7 ADD SWAP9 DUP10 MLOAD SWAP5 ADDRESS PUSH1 0x1 PUSH1 0xA0 SHL PUSH1 0x1 SWAP1 SUB DUP11 AND SWAP8 PUSH3 0x1078 SWAP9 PUSH3 0x1143 JUMP JUMPDEST DUP1 MLOAD SWAP3 DUP5 MLOAD SWAP1 PUSH1 0x40 DUP4 ADD SWAP3 DUP4 MLOAD SWAP2 PUSH1 0x60 DUP3 ADD SWAP7 DUP8 MLOAD SWAP11 PUSH1 0x80 DUP5 ADD SWAP11 DUP12 MLOAD SWAP7 PUSH1 0xA0 DUP7 ADD SWAP14 DUP15 MLOAD PUSH1 0xC0 DUP9 ADD SWAP10 DUP11 MLOAD SWAP3 PUSH1 0xE0 DUP11 ADD SWAP11 DUP12 MLOAD SWAP6 PUSH3 0x10B7 PUSH3 0x121 JUMP JUMPDEST SWAP10 DUP11 MSTORE PUSH1 0x20 DUP11 ADD MSTORE PUSH1 0x40 DUP10 ADD MSTORE PUSH1 0x60 DUP9 ADD MSTORE PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE TIMESTAMP SWAP1 DUP4 ADD MSTORE PUSH1 0x1 SWAP1 DUP3 ADD MSTORE PUSH3 0x10F3 SWAP1 PUSH3 0xD6E JUMP JUMPDEST MLOAD PUSH1 0x21 SSTORE MLOAD SWAP6 MLOAD SWAP3 MLOAD SWAP5 MLOAD SWAP7 MLOAD SWAP8 MLOAD SWAP2 MLOAD SWAP1 MLOAD SWAP2 PUSH1 0x40 MLOAD SWAP9 DUP10 SWAP9 ADDRESS SWAP8 ADDRESS SWAP7 PUSH3 0x111D SWAP11 DUP13 PUSH3 0xF1C JUMP JUMPDEST SUB PUSH32 0x5CC2D55798CEE8F02A1864E506FF754519B7FBE25D3BD5258441C00B83B7BB04 SWAP2 LOG1 JUMP JUMPDEST SWAP7 SWAP9 SWAP8 SWAP6 SWAP1 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP5 PUSH1 0x40 MLOAD SWAP1 PUSH3 0x115D DUP3 PUSH3 0xBA JUMP JUMPDEST PUSH1 0x1 DUP1 DUP4 MSTORE PUSH1 0x31 PUSH1 0xF8 SHL PUSH1 0x20 DUP5 ADD MSTORE DUP12 MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0xD6 JUMPI PUSH3 0x1196 DUP3 PUSH3 0x1190 PUSH1 0x3 SLOAD PUSH3 0x3F6 JUMP JUMPDEST PUSH3 0x44C JUMP JUMPDEST PUSH1 0x20 SWAP13 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x1277 JUMPI SWAP5 PUSH3 0x1252 SWAP8 SWAP5 PUSH3 0x11F2 PUSH3 0x151 SWAP15 SWAP16 SWAP6 DUP6 DUP1 PUSH3 0x1265 SWAP16 SWAP15 SWAP14 SWAP12 SWAP8 PUSH3 0x1240 SWAP8 PUSH3 0x1246 SWAP11 PUSH3 0x124C SWAP14 PUSH1 0x0 SWAP5 PUSH3 0x126B JUMPI JUMPDEST POP POP SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x3 SSTORE PUSH3 0x6C4 JUMP JUMPDEST PUSH3 0x11FD DUP3 PUSH3 0x155B JUMP JUMPDEST PUSH2 0x120 MSTORE PUSH3 0x120C DUP2 PUSH3 0x166B JUMP JUMPDEST PUSH2 0x140 MSTORE DUP2 MLOAD PUSH1 0x20 DUP4 ADD KECCAK256 PUSH1 0xE0 MSTORE PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 PUSH2 0x100 MSTORE CHAINID PUSH1 0xA0 MSTORE PUSH3 0x1233 PUSH3 0x17D0 JUMP JUMPDEST PUSH1 0x80 MSTORE ADDRESS PUSH1 0xC0 MSTORE PUSH3 0x7B7 JUMP JUMPDEST PUSH3 0x132B JUMP JUMPDEST PUSH3 0x1379 JUMP JUMPDEST PUSH3 0x13FD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x160 MSTORE PUSH3 0x1485 JUMP JUMPDEST PUSH3 0x1436 JUMP JUMPDEST ADD MLOAD SWAP3 POP CODESIZE DUP1 PUSH3 0x11DA JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 MSTORE SWAP3 SWAP13 SWAP1 SWAP3 SWAP1 PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B SWAP2 PUSH1 0x0 JUMPDEST PUSH1 0x1F NOT DUP6 AND DUP2 LT PUSH3 0x1314 JUMPI POP SWAP5 PUSH3 0x11F2 PUSH3 0x151 SWAP15 SWAP16 PUSH3 0x1246 SWAP7 DUP7 PUSH3 0x1265 SWAP16 SWAP15 SWAP14 SWAP12 SWAP8 SWAP7 PUSH3 0x124C SWAP12 SWAP7 PUSH3 0x1252 SWAP15 SWAP12 PUSH3 0x1240 SWAP10 PUSH1 0x1F NOT DUP2 AND LT PUSH3 0x12FA JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x3 SSTORE PUSH3 0x6C4 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x12EB JUMP JUMPDEST DUP2 DUP4 ADD MLOAD DUP5 SSTORE SWAP3 DUP6 ADD SWAP3 PUSH1 0x20 SWAP3 DUP4 ADD SWAP3 ADD PUSH3 0x12A6 JUMP JUMPDEST PUSH1 0x10 SLOAD PUSH32 0xC565B045403DC03C2EEA82B81A0465EDAD9E2E7FC4D97E11421C209DA93D7A93 PUSH1 0x40 DUP1 MLOAD SWAP4 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP6 AND DUP7 MSTORE AND SWAP4 DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH6 0xFFFFFFFFFFFF NOT AND OR PUSH1 0x10 SSTORE JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP1 DUP3 AND SWAP2 DUP3 ISZERO PUSH3 0x13E4 JUMPI PUSH32 0x7E3F7F0708A84DE9203036ABAA450DCCC85AD5FF52F78C170F3EDB55CF5E8828 PUSH1 0x40 PUSH10 0xFFFFFFFF000000000000 SWAP4 PUSH1 0x10 SLOAD SWAP6 DUP3 MLOAD SWAP2 DUP8 PUSH1 0x30 SHR AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x30 SHL AND SWAP1 PUSH10 0xFFFFFFFF000000000000 NOT AND OR PUSH1 0x10 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF1CFBF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0xF SLOAD PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0xCCB45DA8D5717E6C4544694297C4BA5CF151D455C9BB0ED4FC7A38411BC05461 SWAP2 LOG1 PUSH1 0xF SSTORE JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH32 0x8F74EA46EF7894F65EABFB5E6E695DE773A000B47C529AB559178069B226401 PUSH1 0x40 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP5 AND SWAP4 DUP2 MLOAD SWAP1 DUP5 AND DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x13 SSTORE JUMP JUMPDEST SWAP1 PUSH1 0x64 DUP3 GT PUSH3 0x1537 JUMPI PUSH1 0x12 SLOAD PUSH1 0x0 SWAP3 SWAP1 DUP1 PUSH3 0x14F0 JUMPI POP PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x76FD DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP2 SWAP3 POP PUSH1 0x0 JUMPDEST PUSH3 0x14D1 PUSH3 0x14C2 DUP4 PUSH3 0x183C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH3 0x190E JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE LOG1 JUMP JUMPDEST PUSH1 0x0 NOT SWAP1 DUP1 DUP3 DUP2 ADD GT PUSH3 0x1523 JUMPI PUSH1 0x20 DUP6 PUSH1 0x12 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x76FD DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP7 SWAP8 MSTORE KECCAK256 ADD ADD SLOAD PUSH1 0x30 SHR PUSH3 0x14B3 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP6 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x243E5445 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST SUB SWAP1 REVERT JUMPDEST SWAP1 DUP2 MLOAD PUSH1 0x20 DUP1 DUP3 LT PUSH1 0x0 EQ PUSH3 0x1579 JUMPI POP POP SWAP1 PUSH3 0x1D0 SWAP1 PUSH3 0x177B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0xD6 JUMPI PUSH3 0x15A0 DUP3 PUSH3 0x159A PUSH1 0x5 SLOAD PUSH3 0x3F6 JUMP JUMPDEST PUSH3 0x512 JUMP JUMPDEST DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x15E0 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x15D4 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x5 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x15BA JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0x36B6384B5ECA791C62761152D0C79BB0604C104A5FB6F4EB0703F3154BB3DB0 SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0x1652 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0x1638 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x5 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x162A JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x1614 JUMP JUMPDEST SWAP1 DUP2 MLOAD PUSH1 0x20 DUP1 DUP3 LT PUSH1 0x0 EQ PUSH3 0x1689 JUMPI POP POP SWAP1 PUSH3 0x1D0 SWAP1 PUSH3 0x177B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0xD6 JUMPI PUSH3 0x16B0 DUP3 PUSH3 0x16AA PUSH1 0x6 SLOAD PUSH3 0x3F6 JUMP JUMPDEST PUSH3 0x550 JUMP JUMPDEST DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x16F0 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x16E4 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x6 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x16CA JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0x1762 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0x1748 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x6 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x173A JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x1724 JUMP JUMPDEST PUSH1 0x1F DUP2 MLOAD GT PUSH3 0x17A9 JUMPI PUSH1 0x20 DUP2 MLOAD SWAP2 ADD MLOAD PUSH1 0x20 DUP3 LT PUSH3 0x1799 JUMPI OR SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT DUP3 PUSH1 0x20 SUB PUSH1 0x3 SHL SHL AND OR SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x305A27A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP2 SWAP1 PUSH3 0x1557 SWAP1 PUSH1 0x24 DUP4 ADD SWAP1 PUSH3 0xEF5 JUMP JUMPDEST PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH1 0x40 MLOAD SWAP1 PUSH1 0x20 DUP3 ADD SWAP3 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP5 MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH1 0xC0 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 DUP1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH3 0xD6 JUMPI PUSH1 0x40 MSTORE MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP2 GT PUSH3 0x1851 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0xD0 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP3 GT PUSH3 0x1880 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x12 SLOAD SWAP1 PUSH9 0x10000000000000000 DUP3 LT ISZERO PUSH3 0xD6 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0x12 SSTORE DUP3 LT ISZERO PUSH3 0x18F8 JUMPI PUSH1 0x12 PUSH1 0x0 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD MLOAD PUSH1 0x30 SHL PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP2 SWAP1 SWAP2 AND OR PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x76BD DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 SWAP2 ADD SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x12 SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH3 0x19DB JUMPI PUSH3 0x192A PUSH3 0x1943 SWAP2 PUSH3 0x1870 JUMP JUMPDEST PUSH1 0x12 PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x76BD DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 JUMP JUMPDEST SWAP1 DUP2 SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP5 AND SWAP2 DUP4 AND DUP1 DUP4 GT PUSH3 0x19C9 JUMPI DUP7 SWAP3 SUB PUSH3 0x198B JUMPI PUSH3 0x1984 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x30 SHR SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH3 0x19C3 SWAP1 PUSH3 0x19AE PUSH3 0x19A0 PUSH3 0x142 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP3 AND DUP3 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0x1896 JUMP JUMPDEST PUSH3 0x1984 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH3 0x1A04 SWAP1 PUSH3 0x19EF PUSH3 0x19A0 PUSH3 0x142 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0x1896 JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT ISZERO PUSH2 0x23 JUMPI JUMPDEST CALLDATASIZE ISZERO PUSH2 0x19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21 PUSH2 0x2EEC JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x13CF08B EQ PUSH2 0x4A3 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x49E JUMPI DUP1 PUSH4 0x2A251A3 EQ PUSH2 0x499 JUMPI DUP1 PUSH4 0x6F3F9E6 EQ PUSH2 0x494 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x48F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x48A JUMPI DUP1 PUSH4 0xC0512E9 EQ PUSH2 0x485 JUMPI DUP1 PUSH4 0x143489D0 EQ PUSH2 0x480 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x47B JUMPI DUP1 PUSH4 0x160CBED7 EQ PUSH2 0x476 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x471 JUMPI DUP1 PUSH4 0x194A94FC EQ PUSH2 0x46C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x467 JUMPI DUP1 PUSH4 0x2656227D EQ PUSH2 0x462 JUMPI DUP1 PUSH4 0x2D63F693 EQ PUSH2 0x45D JUMPI DUP1 PUSH4 0x2FE3E261 EQ PUSH2 0x458 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x453 JUMPI DUP1 PUSH4 0x3932ABB1 EQ PUSH2 0x44E JUMPI DUP1 PUSH4 0x3A46B1A8 EQ PUSH2 0x449 JUMPI DUP1 PUSH4 0x3E4F49E6 EQ PUSH2 0x444 JUMPI DUP1 PUSH4 0x43859632 EQ PUSH2 0x43F JUMPI DUP1 PUSH4 0x452115D6 EQ PUSH2 0x43A JUMPI DUP1 PUSH4 0x4BF5D7E9 EQ PUSH2 0x435 JUMPI DUP1 PUSH4 0x4FA76EC9 EQ PUSH2 0x430 JUMPI DUP1 PUSH4 0x544FFC9C EQ PUSH2 0x42B JUMPI DUP1 PUSH4 0x54FD4D50 EQ PUSH2 0x426 JUMPI DUP1 PUSH4 0x56781388 EQ PUSH2 0x421 JUMPI DUP1 PUSH4 0x587CDE1E EQ PUSH2 0x41C JUMPI DUP1 PUSH4 0x5B8D0E0D EQ PUSH2 0x417 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x412 JUMPI DUP1 PUSH4 0x5F398A14 EQ PUSH2 0x40D JUMPI DUP1 PUSH4 0x60C4247F EQ PUSH2 0x408 JUMPI DUP1 PUSH4 0x6FCFFF45 EQ PUSH2 0x403 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x3FE JUMPI DUP1 PUSH4 0x79051887 EQ PUSH2 0x3F9 JUMPI DUP1 PUSH4 0x7B3C71D3 EQ PUSH2 0x3F4 JUMPI DUP1 PUSH4 0x7D5E81E2 EQ PUSH2 0x3EF JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x3EA JUMPI DUP1 PUSH4 0x824E83E1 EQ PUSH2 0x3E5 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x3E0 JUMPI DUP1 PUSH4 0x8E539E8C EQ PUSH2 0x3DB JUMPI DUP1 PUSH4 0x8FF262E3 EQ PUSH2 0x3D6 JUMPI DUP1 PUSH4 0x91DDADF4 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3CC JUMPI DUP1 PUSH4 0x97C3D334 EQ PUSH2 0x3C7 JUMPI DUP1 PUSH4 0x9A802A6D EQ PUSH2 0x3C2 JUMPI DUP1 PUSH4 0x9AB24EB0 EQ PUSH2 0x3BD JUMPI DUP1 PUSH4 0xA7713A70 EQ PUSH2 0x3B8 JUMPI DUP1 PUSH4 0xA890C910 EQ PUSH2 0x3B3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3AE JUMPI DUP1 PUSH4 0xA9A95294 EQ PUSH2 0x3A9 JUMPI DUP1 PUSH4 0xAB273016 EQ PUSH2 0x3A4 JUMPI DUP1 PUSH4 0xAB58FB8E EQ PUSH2 0x39F JUMPI DUP1 PUSH4 0xB58131B0 EQ PUSH2 0x39A JUMPI DUP1 PUSH4 0xBC197C81 EQ PUSH2 0x395 JUMPI DUP1 PUSH4 0xC01F9E37 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0xC28BC2FA EQ PUSH2 0x38B JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0x386 JUMPI DUP1 PUSH4 0xC59057E4 EQ PUSH2 0x381 JUMPI DUP1 PUSH4 0xD1FAD4CD EQ PUSH2 0x37C JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x377 JUMPI DUP1 PUSH4 0xDD4E2BA5 EQ PUSH2 0x372 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x36D JUMPI DUP1 PUSH4 0xDEAAA7CC EQ PUSH2 0x368 JUMPI DUP1 PUSH4 0xE540D01D EQ PUSH2 0x363 JUMPI DUP1 PUSH4 0xEB9019D4 EQ PUSH2 0x35E JUMPI DUP1 PUSH4 0xECE40CC1 EQ PUSH2 0x359 JUMPI DUP1 PUSH4 0xF1127ED8 EQ PUSH2 0x354 JUMPI DUP1 PUSH4 0xF23A6E61 EQ PUSH2 0x34F JUMPI DUP1 PUSH4 0xF2C26A47 EQ PUSH2 0x34A JUMPI DUP1 PUSH4 0xF8CE560A EQ PUSH2 0x345 JUMPI PUSH4 0xFC0C546A SUB PUSH2 0xE JUMPI PUSH2 0x2EA7 JUMP JUMPDEST PUSH2 0x2DED JUMP JUMPDEST PUSH2 0x2CBD JUMP JUMPDEST PUSH2 0x2A31 JUMP JUMPDEST PUSH2 0x297A JUMP JUMPDEST PUSH2 0x2925 JUMP JUMPDEST PUSH2 0x28C3 JUMP JUMPDEST PUSH2 0x281C JUMP JUMPDEST PUSH2 0x27CE JUMP JUMPDEST PUSH2 0x276B JUMP JUMPDEST PUSH2 0x270D JUMP JUMPDEST PUSH2 0x26E4 JUMP JUMPDEST PUSH2 0x25AC JUMP JUMPDEST PUSH2 0x2590 JUMP JUMPDEST PUSH2 0x24C3 JUMP JUMPDEST PUSH2 0x2457 JUMP JUMPDEST PUSH2 0x2439 JUMP JUMPDEST PUSH2 0x2399 JUMP JUMPDEST PUSH2 0x237B JUMP JUMPDEST PUSH2 0x2344 JUMP JUMPDEST PUSH2 0x220A JUMP JUMPDEST PUSH2 0x21EE JUMP JUMPDEST PUSH2 0x21B9 JUMP JUMPDEST PUSH2 0x2145 JUMP JUMPDEST PUSH2 0x2122 JUMP JUMPDEST PUSH2 0x20D0 JUMP JUMPDEST PUSH2 0x1FED JUMP JUMPDEST PUSH2 0x1FD1 JUMP JUMPDEST PUSH2 0x1F2A JUMP JUMPDEST PUSH2 0x1F07 JUMP JUMPDEST PUSH2 0x1DEF JUMP JUMPDEST PUSH2 0x1D20 JUMP JUMPDEST PUSH2 0x1C56 JUMP JUMPDEST PUSH2 0x1AEE JUMP JUMPDEST PUSH2 0x1AB1 JUMP JUMPDEST PUSH2 0x1A29 JUMP JUMPDEST PUSH2 0x19D4 JUMP JUMPDEST PUSH2 0x1963 JUMP JUMPDEST PUSH2 0x1926 JUMP JUMPDEST PUSH2 0x18DB JUMP JUMPDEST PUSH2 0x18BD JUMP JUMPDEST PUSH2 0x184E JUMP JUMPDEST PUSH2 0x1828 JUMP JUMPDEST PUSH2 0x17A0 JUMP JUMPDEST PUSH2 0x1734 JUMP JUMPDEST PUSH2 0x16E4 JUMP JUMPDEST PUSH2 0x1682 JUMP JUMPDEST PUSH2 0x1635 JUMP JUMPDEST PUSH2 0x1617 JUMP JUMPDEST PUSH2 0x15B9 JUMP JUMPDEST PUSH2 0x14FB JUMP JUMPDEST PUSH2 0x14A2 JUMP JUMPDEST PUSH2 0x1475 JUMP JUMPDEST PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x1331 JUMP JUMPDEST PUSH2 0x1315 JUMP JUMPDEST PUSH2 0x12DA JUMP JUMPDEST PUSH2 0x12A3 JUMP JUMPDEST PUSH2 0x1136 JUMP JUMPDEST PUSH2 0x107D JUMP JUMPDEST PUSH2 0xFF4 JUMP JUMPDEST PUSH2 0xFD6 JUMP JUMPDEST PUSH2 0xD8C JUMP JUMPDEST PUSH2 0xB50 JUMP JUMPDEST PUSH2 0xA80 JUMP JUMPDEST PUSH2 0xA63 JUMP JUMPDEST PUSH2 0x995 JUMP JUMPDEST PUSH2 0x8A3 JUMP JUMPDEST PUSH2 0x7E3 JUMP JUMPDEST PUSH2 0x7BC JUMP JUMPDEST PUSH2 0x743 JUMP JUMPDEST PUSH2 0x640 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x4D8 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x4C2 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 PUSH1 0x7F AND SWAP2 PUSH2 0x4B7 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0x4E2 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0x100 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD SWAP3 DUP4 DUP3 MSTORE PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x5E5 JUMPI POP POP DUP3 PUSH1 0x0 PUSH1 0x20 DUP1 SWAP5 SWAP6 DUP5 ADD ADD MSTORE PUSH1 0x1F DUP1 NOT SWAP2 ADD AND ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 DUP4 ADD DUP2 ADD MLOAD DUP5 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0x5C4 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 PUSH2 0x615 PUSH1 0xC0 SWAP7 SWAP4 SWAP10 SWAP9 SWAP8 SWAP5 PUSH1 0xE0 DUP8 MSTORE PUSH1 0xE0 DUP8 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD SWAP10 SWAP1 SWAP10 MSTORE PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x60 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x73E JUMPI PUSH1 0x0 PUSH1 0x4 CALLDATALOAD DUP2 MSTORE PUSH1 0x1F DUP3 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP2 PUSH1 0x40 MLOAD DUP3 DUP2 SWAP4 SWAP1 DUP6 SLOAD PUSH2 0x674 DUP2 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x71C JUMPI POP PUSH1 0x1 EQ PUSH2 0x6DF JUMPI JUMPDEST POP POP POP PUSH2 0x69D SWAP3 POP SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SLOAD PUSH1 0x3 DUP4 ADD SLOAD PUSH1 0x4 DUP5 ADD SLOAD SWAP2 SWAP4 PUSH2 0x6DB SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x6 DUP3 ADD SLOAD PUSH1 0xFF AND SWAP1 PUSH1 0x8 PUSH1 0x7 DUP5 ADD SLOAD SWAP4 ADD SLOAD SWAP4 PUSH1 0x40 MLOAD SWAP8 DUP9 SWAP8 DUP9 PUSH2 0x5F9 JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST DUP8 DUP2 MSTORE DUP6 DUP2 KECCAK256 SWAP6 SWAP4 POP SWAP2 SWAP1 JUMPDEST DUP2 DUP4 LT PUSH2 0x704 JUMPI POP POP PUSH2 0x69D SWAP4 POP DUP3 ADD ADD CODESIZE DUP1 DUP1 PUSH2 0x68E JUMP JUMPDEST DUP6 SLOAD DUP8 DUP5 ADD DUP6 ADD MSTORE SWAP5 DUP6 ADD SWAP5 DUP7 SWAP5 POP SWAP2 DUP4 ADD SWAP2 PUSH2 0x6EB JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x69D SWAP5 SWAP3 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE DUP1 DUP1 PUSH2 0x68E JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP2 AND DUP1 SWAP2 SUB PUSH2 0x73E JUMPI PUSH1 0x20 SWAP1 PUSH4 0x32A2AD43 PUSH1 0xE1 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x7A0 JUMPI JUMPDEST DUP2 ISZERO PUSH2 0x78F JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0x784 JUMP JUMPDEST PUSH4 0x2711897 PUSH1 0xE5 SHL DUP2 EQ SWAP2 POP PUSH2 0x77D JUMP JUMPDEST PUSH1 0x0 SWAP2 SUB SLT PUSH2 0x73E JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH4 0xFFFFFFFF PUSH1 0x10 SLOAD PUSH1 0x30 SHR AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x7FF PUSH2 0x3786 JUMP JUMPDEST PUSH1 0x64 DUP2 GT PUSH2 0x870 JUMPI PUSH32 0x553476BF02EF2726E8CE5CED78D63E26E602E4A2257B1F559418E24B4633997 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH2 0x839 PUSH2 0x4935 JUMP JUMPDEST AND PUSH2 0x854 PUSH2 0x846 DUP4 PUSH2 0x4755 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x4B39 JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 DUP2 ADD JUMPDEST SUB SWAP1 LOG1 STOP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x243E5445 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x64 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 PUSH1 0x20 PUSH2 0x8A0 SWAP3 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x981 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0xB SLOAD PUSH2 0x8C6 DUP2 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x957 JUMPI POP PUSH1 0x1 EQ PUSH2 0x8FC JUMPI JUMPDEST PUSH2 0x6DB DUP6 PUSH2 0x8F0 DUP2 DUP8 SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 PUSH2 0x88F JUMP JUMPDEST SWAP3 POP PUSH1 0xB DUP4 MSTORE PUSH32 0x175B7A638427703F0DBE7BB9BBF987A2551717B34E79F33B5B1008D1FA01DB9 JUMPDEST DUP3 DUP5 LT PUSH2 0x93F JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0x8F0 DUP3 PUSH2 0x6DB PUSH2 0x8E0 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x924 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0x6DB SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0x8F0 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0x8E0 JUMP JUMPDEST DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND SUB PUSH2 0x73E JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x9B2 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD CALLER ISZERO PUSH2 0xA4A JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP2 DUP3 ISZERO PUSH2 0xA31 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP3 SWAP2 PUSH2 0x9F9 SWAP2 JUMPDEST SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x20 CALLER SWAP3 LOG3 PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 DUP1 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x120 DUP3 ADD DUP3 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0xAE1 DUP3 PUSH2 0x510 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x50B JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 SWAP3 PUSH2 0xB0A DUP3 PUSH2 0xAE3 JUMP JUMPDEST SWAP2 PUSH2 0xB18 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x598 JUMP JUMPDEST DUP3 SWAP5 DUP2 DUP5 MSTORE DUP2 DUP4 ADD GT PUSH2 0x73E JUMPI DUP3 DUP2 PUSH1 0x20 SWAP4 DUP5 PUSH1 0x0 SWAP7 ADD CALLDATACOPY ADD ADD MSTORE JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0x73E JUMPI DUP2 PUSH1 0x20 PUSH2 0x8A0 SWAP4 CALLDATALOAD SWAP2 ADD PUSH2 0xAFE JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0xB6C PUSH1 0x4 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH2 0xB77 PUSH1 0x24 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH2 0xB96 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0xBBB JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7485328F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x50B JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x73E JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0xBFB DUP4 PUSH2 0xBCD JUMP JUMPDEST SWAP3 PUSH2 0xC09 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x598 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x73E JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xC33 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 DUP1 SWAP2 DUP4 CALLDATALOAD PUSH2 0xC41 DUP2 PUSH2 0x984 JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH2 0xC25 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x73E JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0xC63 DUP4 PUSH2 0xBCD JUMP JUMPDEST SWAP3 PUSH2 0xC71 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x598 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x73E JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xC9B JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xC8D JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0x73E JUMPI DUP2 CALLDATALOAD SWAP1 PUSH2 0xCC2 DUP3 PUSH2 0xBCD JUMP JUMPDEST SWAP3 PUSH2 0xCD0 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x598 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP2 PUSH1 0x5 SHL DUP4 ADD ADD SWAP3 DUP1 DUP5 GT PUSH2 0x73E JUMPI DUP5 DUP4 ADD SWAP2 JUMPDEST DUP5 DUP4 LT PUSH2 0xCFE JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI DUP7 SWAP2 PUSH2 0xD1F DUP5 DUP5 DUP1 SWAP5 DUP10 ADD ADD PUSH2 0xB35 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP2 PUSH2 0xCEE JUMP JUMPDEST PUSH1 0x80 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0x73E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 PUSH1 0x4 CALLDATALOAD DUP4 DUP2 GT PUSH2 0x73E JUMPI DUP3 PUSH2 0xD56 SWAP2 PUSH1 0x4 ADD PUSH2 0xBE4 JUMP JUMPDEST SWAP3 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI DUP4 PUSH2 0xD6E SWAP2 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x73E JUMPI PUSH2 0xD85 SWAP2 PUSH1 0x4 ADD PUSH2 0xCAA JUMP JUMPDEST SWAP1 PUSH1 0x64 CALLDATALOAD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH2 0xD9A CALLDATASIZE PUSH2 0xD2A JUMP JUMPDEST PUSH2 0xDA8 DUP2 DUP4 DUP6 DUP8 SWAP7 SWAP8 PUSH2 0x2FA5 JUMP JUMPDEST SWAP3 PUSH2 0xDB2 DUP5 PUSH2 0x3817 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH2 0xDD0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP3 PUSH1 0x40 SWAP6 DUP7 MLOAD SWAP4 PUSH4 0x793D0649 PUSH1 0xE1 SHL DUP6 MSTORE PUSH1 0x20 SWAP1 DUP2 DUP7 PUSH1 0x4 DUP2 DUP11 GAS STATICCALL SWAP6 DUP7 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP7 PUSH2 0xFB7 JUMPI JUMPDEST POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT ADDRESS PUSH1 0x60 SHL AND XOR SWAP6 DUP2 DUP10 MLOAD DUP1 SWAP3 PUSH4 0xB1C5F427 PUSH1 0xE0 SHL DUP3 MSTORE DUP2 DUP1 PUSH2 0xE32 DUP13 DUP11 DUP11 DUP14 PUSH1 0x4 DUP7 ADD PUSH2 0x5B20 JUMP JUMPDEST SUB SWAP2 GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP3 PUSH2 0xF8A JUMPI JUMPDEST POP POP PUSH2 0xE5B DUP8 PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x13 SLOAD PUSH2 0xE71 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xDC4 JUMP JUMPDEST SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 SWAP5 PUSH2 0xE9D DUP8 DUP12 MLOAD SWAP10 DUP11 SWAP8 DUP9 SWAP7 DUP8 SWAP6 PUSH4 0x8F2A0BB PUSH1 0xE4 SHL DUP8 MSTORE PUSH1 0x4 DUP8 ADD PUSH2 0x5B66 JUMP JUMPDEST SUB SWAP3 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0xF85 JUMPI PUSH2 0xEC1 SWAP3 PUSH2 0xEBC SWAP3 PUSH2 0xF6C JUMPI JUMPDEST POP TIMESTAMP PUSH2 0x31A3 JUMP JUMPDEST PUSH2 0x4788 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 AND ISZERO PUSH2 0xF5B JUMPI SWAP2 PUSH32 0x9A2E42FD6722813D69113E7D0079D3D940171428DF7373DF9C7F7617CFDA2892 PUSH2 0xF4A DUP5 PUSH2 0xF2C PUSH2 0x6DB SWAP7 PUSH1 0x1 PUSH2 0xF12 DUP9 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST ADD SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST DUP4 MLOAD DUP6 DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG1 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST DUP3 MLOAD PUSH4 0x48442523 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST DUP1 PUSH2 0xF79 PUSH2 0xF7F SWAP3 PUSH2 0x4F8 JUMP JUMPDEST DUP1 PUSH2 0x7B1 JUMP JUMPDEST CODESIZE PUSH2 0xEB5 JUMP JUMPDEST PUSH2 0x3A1D JUMP JUMPDEST PUSH2 0xFA9 SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0xFB0 JUMPI JUMPDEST PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x3A0E JUMP JUMPDEST CODESIZE DUP1 PUSH2 0xE45 JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0xF97 JUMP JUMPDEST PUSH2 0xFCF SWAP2 SWAP7 POP DUP3 RETURNDATASIZE DUP5 GT PUSH2 0xFB0 JUMPI PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST SWAP5 CODESIZE PUSH2 0xDFB JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1068 PUSH2 0x1048 PUSH32 0x5C84C0144A4E16E610C6C44C3571A58AF67CE17B61280F57E6FEEB2C363EAA60 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD PUSH2 0x1054 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 PUSH1 0x40 DUP5 MSTORE PUSH1 0x40 DUP5 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE SUB SWAP1 LOG1 STOP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x109A DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD PUSH2 0x10A6 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 PUSH1 0x44 CALLDATALOAD SWAP2 SWAP1 SLOAD SWAP3 PUSH1 0x0 NOT DUP5 LT PUSH2 0x10F0 JUMPI JUMPDEST PUSH2 0x10E4 SWAP4 POP PUSH2 0x3E7E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST DUP3 DUP5 LT PUSH2 0x110C JUMPI PUSH2 0x1107 DUP4 PUSH2 0x10E4 SWAP6 SUB CALLER DUP4 PUSH2 0x3F90 JUMP JUMPDEST PUSH2 0x10DA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SUB SWAP1 REVERT JUMPDEST PUSH2 0x113F CALLDATASIZE PUSH2 0xD2A JUMP JUMPDEST PUSH2 0x114D DUP2 DUP4 DUP6 DUP8 SWAP6 SWAP8 PUSH2 0x2FA5 JUMP JUMPDEST SWAP3 PUSH2 0x1157 DUP5 PUSH2 0x3869 JUMP JUMPDEST POP PUSH2 0x1182 PUSH2 0x116F DUP6 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0xFF PUSH1 0xF0 SHL NOT AND PUSH1 0x1 PUSH1 0xF0 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 DUP5 AND ADDRESS SUB PUSH2 0x1239 JUMPI JUMPDEST SWAP5 PUSH2 0x11A8 SWAP3 SWAP2 PUSH2 0x6DB SWAP7 DUP7 PUSH2 0x5BB4 JUMP JUMPDEST PUSH1 0x13 SLOAD ADDRESS SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO DUP1 PUSH2 0x1214 JUMPI JUMPDEST PUSH2 0x1205 JUMPI JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x712AE1383F79AC853F8D882153778E0260EF8F03B504E2866E0593E04D2B291F SWAP1 DUP1 PUSH1 0x20 DUP2 ADD JUMPDEST SUB SWAP1 LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH2 0x120F PUSH1 0x0 PUSH1 0xD SSTORE JUMP JUMPDEST PUSH2 0x11C4 JUMP JUMPDEST POP PUSH2 0x1234 PUSH2 0x1230 PUSH1 0xD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND SWAP1 PUSH1 0x80 SHR EQ SWAP1 JUMP JUMPDEST ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x11BF JUMP JUMPDEST SWAP3 SWAP1 SWAP4 SWAP2 PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x1299 JUMPI PUSH2 0x1275 SWAP1 ADDRESS PUSH2 0x126B PUSH2 0xDC4 PUSH2 0x125E DUP5 DUP11 PUSH2 0x34AC JUMP JUMPDEST MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST EQ PUSH2 0x127A JUMPI PUSH2 0x3487 JUMP JUMPDEST PUSH2 0x1240 JUMP JUMPDEST PUSH2 0x1294 PUSH2 0x1287 DUP3 DUP11 PUSH2 0x34AC JUMP JUMPDEST MLOAD PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 PUSH2 0x4EC8 JUMP JUMPDEST PUSH2 0x3487 JUMP JUMPDEST POP SWAP2 SWAP4 SWAP1 SWAP3 PUSH2 0x1198 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0xA0 SHR AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0x3E83946653575F9A39005E1545185629E92736B7528AB20CA3816F315424A811 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x10 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1374 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x1397 PUSH1 0x24 CALLDATALOAD PUSH2 0x3BDD JUMP JUMPDEST SWAP2 DUP1 SLOAD DUP3 SWAP4 DUP2 PUSH1 0x5 DUP2 GT PUSH2 0x13E9 JUMPI JUMPDEST POP SWAP1 PUSH1 0x20 SWAP5 PUSH2 0x13B5 SWAP3 DUP5 PUSH2 0x4E67 JUMP JUMPDEST DUP1 PUSH2 0x13CF JUMPI POP POP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE RETURN JUMPDEST SWAP2 PUSH2 0x13DB DUP5 SWAP3 SWAP4 PUSH2 0x3AA6 JUMP JUMPDEST SWAP3 DUP2 MSTORE KECCAK256 ADD SLOAD PUSH1 0x30 SHR PUSH2 0x13BD JUMP JUMPDEST SWAP5 PUSH2 0x13F3 DUP7 PUSH2 0x480A JUMP JUMPDEST DUP7 SUB SWAP6 DUP7 GT PUSH2 0x143E JUMPI PUSH1 0x20 SWAP6 PUSH2 0x13B5 SWAP4 DUP6 DUP8 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 DUP11 DUP11 KECCAK256 ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x142C JUMPI POP SWAP2 JUMPDEST SWAP2 SWAP3 POP SWAP5 PUSH2 0x13A6 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x1438 SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP1 PUSH2 0x1423 JUMP JUMPDEST PUSH2 0x3009 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x8 GT ISZERO PUSH2 0x1463 JUMPI JUMP JUMPDEST PUSH2 0x1443 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1463 JUMPI MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x1493 PUSH1 0x4 CALLDATALOAD PUSH2 0x5718 JUMP JUMPDEST PUSH2 0x14A0 PUSH1 0x40 MLOAD DUP1 SWAP3 PUSH2 0x1468 JUMP JUMPDEST RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0xFF PUSH2 0x14EF PUSH1 0x24 CALLDATALOAD PUSH2 0x14C6 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x11 DUP5 MSTORE PUSH1 0x3 PUSH1 0x40 PUSH1 0x0 KECCAK256 ADD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH2 0x1509 CALLDATASIZE PUSH2 0xD2A JUMP JUMPDEST SWAP1 PUSH2 0x1518 DUP3 DUP3 DUP6 DUP8 SWAP7 SWAP8 PUSH2 0x2FA5 JUMP JUMPDEST PUSH2 0x1521 DUP2 PUSH2 0x5718 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x1 DUP1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x158C JUMPI POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0x1574 JUMPI PUSH2 0x6DB SWAP4 PUSH2 0x1564 SWAP4 PUSH2 0x59DF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x233D98E3 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 PUSH2 0x15B0 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x6DB PUSH1 0x40 MLOAD PUSH2 0x15D9 DUP2 PUSH2 0x510 JUMP JUMPDEST PUSH1 0x1D DUP2 MSTORE PUSH32 0x6D6F64653D626C6F636B6E756D6265722666726F6D3D64656661756C74000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x21 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x6DB PUSH1 0x2 PUSH1 0x1 DUP5 ADD SLOAD SWAP4 ADD SLOAD PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP4 DUP5 PUSH1 0x40 SWAP2 SWAP5 SWAP4 SWAP3 PUSH1 0x60 DUP3 ADD SWAP6 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x6DB PUSH1 0x40 MLOAD PUSH2 0x16A2 DUP2 PUSH2 0x510 JUMP JUMPDEST PUSH1 0x1 DUP2 MSTORE PUSH1 0x31 PUSH1 0xF8 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x73E JUMPI JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x73E JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x172C PUSH2 0x1702 PUSH2 0x16C4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x170E DUP2 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP2 MSTORE PUSH1 0x40 MLOAD SWAP2 PUSH2 0x171F DUP4 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP4 MSTORE CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x3637 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x4 CALLDATALOAD PUSH2 0x1753 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x8 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0x73E JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x73E JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0x73E JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x17B9 PUSH2 0x16C4 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH2 0x17C6 DUP3 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x17E7 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1773 JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x17FF SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST SWAP2 PUSH1 0xA4 CALLDATALOAD SWAP5 DUP6 GT PUSH2 0x73E JUMPI PUSH2 0x6DB SWAP6 PUSH2 0x181F PUSH2 0x1564 SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST SWAP5 PUSH1 0x4 CALLDATALOAD PUSH2 0x34C5 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x21 PUSH1 0x4 CALLDATALOAD PUSH2 0x1848 DUP2 PUSH2 0x984 JUMP JUMPDEST CALLER PUSH2 0x3C16 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x1867 PUSH2 0x16C4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1888 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1773 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP4 DUP5 GT PUSH2 0x73E JUMPI PUSH2 0x18B3 PUSH2 0x172C SWAP4 PUSH2 0x18AB PUSH1 0x20 SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST SWAP4 CALLDATASIZE SWAP2 PUSH2 0xAFE JUMP JUMPDEST SWAP1 CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x3637 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x172C PUSH1 0x4 CALLDATALOAD PUSH2 0x3ACD JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x18F8 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH2 0x1918 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x47BA JUMP JUMPDEST PUSH4 0xFFFFFFFF PUSH1 0x40 MLOAD SWAP2 AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x172C PUSH1 0x4 CALLDATALOAD PUSH2 0x1948 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP1 DUP3 AND DUP1 SWAP3 SUB PUSH2 0x73E JUMPI PUSH2 0x1990 PUSH2 0x3786 JUMP JUMPDEST PUSH32 0xC565B045403DC03C2EEA82B81A0465EDAD9E2E7FC4D97E11421C209DA93D7A93 PUSH1 0x40 PUSH1 0x10 SLOAD SWAP3 DUP2 MLOAD SWAP1 DUP5 AND DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH6 0xFFFFFFFFFFFF NOT AND OR PUSH1 0x10 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x19ED PUSH2 0x16C4 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH1 0x20 SWAP2 PUSH2 0x1A1C PUSH2 0x1A15 PUSH2 0x172C SWAP4 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1773 JUMP JUMPDEST CALLDATASIZE SWAP2 PUSH2 0xAFE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 PUSH2 0x171F DUP4 PUSH2 0x52B JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1A5A SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xBE4 JUMP JUMPDEST SWAP1 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1A73 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST SWAP2 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1A8C SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xCAA JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP3 DUP4 GT PUSH2 0x73E JUMPI PUSH2 0x6DB SWAP4 PUSH2 0x1AAB PUSH2 0x1564 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST SWAP3 PUSH2 0x3051 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1ACE DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1B1F SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xBE4 JUMP JUMPDEST SWAP1 PUSH1 0x24 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1B38 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST DUP2 MLOAD DUP2 MLOAD SUB PUSH2 0x1BE4 JUMPI PUSH2 0x1B4D DUP3 MLOAD ISZERO ISZERO PUSH2 0x4F7B JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x1BB2 JUMPI DUP1 PUSH2 0x1B77 PUSH2 0x1B70 PUSH2 0xDC4 PUSH2 0x125E PUSH2 0x1BAD SWAP6 DUP9 PUSH2 0x34AC JUMP JUMPDEST ISZERO ISZERO PUSH2 0x4FB6 JUMP JUMPDEST PUSH2 0x1B8C PUSH2 0x1B84 DUP3 DUP6 PUSH2 0x34AC JUMP JUMPDEST MLOAD ISZERO ISZERO PUSH2 0x4FF1 JUMP JUMPDEST PUSH2 0x1294 PUSH2 0x1B9C PUSH2 0x125E DUP4 DUP8 PUSH2 0x34AC JUMP JUMPDEST PUSH2 0x1BA6 DUP4 DUP7 PUSH2 0x34AC JUMP JUMPDEST MLOAD SWAP1 PUSH2 0x5050 JUMP JUMPDEST PUSH2 0x1B50 JUMP JUMPDEST POP PUSH32 0x3BE9B2A692D7F70F180696D23AB769875FEC1B9EC86909E5E62E96E3D709CD0 SWAP2 PUSH2 0x86B PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 DUP4 PUSH2 0x502B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x82E4E4C2F2E640D8CADCCEE8D040DAD2E6DAC2E8C6D PUSH1 0x53 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x1C42 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x1C34 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x1CF1 PUSH2 0x1C93 PUSH32 0x0 PUSH2 0x44C4 JUMP JUMPDEST PUSH2 0x6DB PUSH2 0x1CBF PUSH32 0x0 PUSH2 0x45BD JUMP JUMPDEST PUSH2 0x1CFF PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1CCF DUP4 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 MLOAD SWAP6 DUP7 SWAP6 PUSH1 0xF PUSH1 0xF8 SHL DUP8 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0xE0 DUP8 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x40 DUP8 ADD MSTORE PUSH2 0x5B9 JUMP JUMPDEST SWAP1 CHAINID PUSH1 0x60 DUP6 ADD MSTORE ADDRESS PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0x0 PUSH1 0xA0 DUP6 ADD MSTORE DUP4 DUP3 SUB PUSH1 0xC0 DUP6 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x1D3C PUSH1 0x4 CALLDATALOAD PUSH2 0x3BDD JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x0 DUP3 SWAP2 PUSH1 0x5 DUP5 GT PUSH2 0x1D94 JUMPI JUMPDEST PUSH2 0x1D57 SWAP4 POP PUSH2 0x4D95 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x1D6C JUMPI POP POP PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0xA PUSH2 0x1D79 PUSH1 0x20 SWAP4 PUSH2 0x3AA6 JUMP JUMPDEST SWAP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C5D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR PUSH2 0x13BD JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x1D9F DUP2 PUSH2 0x480A JUMP JUMPDEST DUP2 SUB SWAP1 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x1D57 SWAP4 PUSH1 0xA DUP4 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C5D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x1DDD JUMPI POP SWAP2 PUSH2 0x1D4D JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x1DE9 SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP1 PUSH2 0x1D4D JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1E0B PUSH2 0x16C4 JUMP JUMPDEST SWAP1 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH2 0x1E19 DUP4 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1230 PUSH2 0x1E3E PUSH2 0x1ECB SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE PUSH2 0x1EC5 SWAP1 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 ADD SWAP2 PUSH32 0xF2AAD550CF55F045CB27E9C559F9889FDFB6E6CDAA032301D6EA397784AE51D7 DUP4 MSTORE DUP9 PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0xFF DUP9 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP11 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH2 0x1EBD DUP2 PUSH2 0x546 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 PUSH2 0x438A JUMP JUMPDEST DUP7 PUSH2 0x4677 JUMP JUMPDEST PUSH2 0x1EE6 JUMPI SWAP1 PUSH2 0x1564 SWAP2 PUSH2 0x6DB SWAP4 PUSH2 0x1EE0 PUSH2 0x2F00 JUMP JUMPDEST SWAP3 PUSH2 0x35BB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x94AB6C07 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x981 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0x4 SLOAD PUSH2 0x1F4D DUP2 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x957 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1F76 JUMPI PUSH2 0x6DB DUP6 PUSH2 0x8F0 DUP2 DUP8 SUB DUP3 PUSH2 0x598 JUMP JUMPDEST SWAP3 POP PUSH1 0x4 DUP4 MSTORE PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B JUMPDEST DUP3 DUP5 LT PUSH2 0x1FB9 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0x8F0 DUP3 PUSH2 0x6DB PUSH2 0x8E0 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1F9E JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x64 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x200A DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x2061 SWAP2 PUSH2 0x202F PUSH1 0x20 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST SUB DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL DUP1 ISZERO PUSH2 0xF85 JUMPI PUSH2 0x6DB SWAP2 PUSH1 0x0 SWAP2 PUSH2 0x20B2 JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH2 0x20CA SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xFB0 JUMPI PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST CODESIZE PUSH2 0x20A1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x20ED DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 PUSH2 0x2119 SWAP1 PUSH2 0x49C9 JUMP JUMPDEST AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH2 0x2119 PUSH2 0x4935 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2162 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH2 0x216A PUSH2 0x3786 JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH32 0x8F74EA46EF7894F65EABFB5E6E695DE773A000B47C529AB559178069B226401 PUSH1 0x40 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP5 AND SWAP4 DUP2 MLOAD SWAP1 DUP5 AND DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x13 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x21E3 PUSH1 0x4 CALLDATALOAD PUSH2 0x21D9 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x3E7E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2232 DUP2 PUSH1 0x0 MSTORE PUSH1 0x1F PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x6 DUP2 ADD SWAP1 PUSH2 0x224D PUSH2 0x2248 PUSH2 0x1230 DUP5 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x551F JUMP JUMPDEST PUSH2 0x225C PUSH1 0x2 DUP3 ADD SLOAD TIMESTAMP LT PUSH2 0x556B JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x2277 SWAP1 SLOAD ISZERO ISZERO PUSH2 0x55AA JUMP JUMPDEST PUSH1 0x40 MLOAD CALLER PUSH1 0x60 SHL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x22B6 SWAP1 PUSH2 0x22AD DUP2 PUSH1 0x34 DUP2 ADD JUMPDEST SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x5 DUP4 ADD PUSH2 0x55EA JUMP JUMPDEST PUSH1 0x7 PUSH1 0x8 DUP3 ADD SWAP2 PUSH2 0x22C7 DUP4 SLOAD PUSH2 0x3487 JUMP JUMPDEST SWAP3 DUP4 SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP7 DUP2 MSTORE CALLER PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0x9F1B808CCD95CFAD6377948752267D2AD18CBD81217EC7ABD183A497D47C81D1 SWAP1 PUSH1 0x60 SWAP1 LOG1 ADD SLOAD GT ISZERO PUSH2 0x230E JUMPI STOP JUMPDEST DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH32 0x712AE1383F79AC853F8D882153778E0260EF8F03B504E2866E0593E04D2B291F SWAP1 PUSH2 0x86B SWAP1 PUSH2 0x1564 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 ADD SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0xF SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x23B5 PUSH1 0x4 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH2 0x23C0 PUSH1 0x24 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x44 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x23E0 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x23F9 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x2412 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST POP PUSH2 0x6DB PUSH2 0x241E PUSH2 0x37FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x172C PUSH1 0x4 CALLDATALOAD PUSH2 0x301F JUMP JUMPDEST PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x246F DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 SWAP2 PUSH2 0x2496 PUSH2 0x21 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1773 JUMP JUMPDEST SWAP1 PUSH2 0x249F PUSH2 0x3786 JUMP JUMPDEST DUP2 PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 DUP4 CALLDATACOPY DUP2 ADD DUP5 DUP2 MSTORE SUB SWAP2 PUSH1 0x24 CALLDATALOAD SWAP1 GAS CALL PUSH2 0x24BD PUSH2 0x3756 JUMP JUMPDEST SWAP1 PUSH2 0x3FE3 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x24E0 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD PUSH2 0x24EF PUSH2 0x16D4 JUMP JUMPDEST DUP4 TIMESTAMP GT PUSH2 0x2577 JUMPI PUSH2 0x256B PUSH2 0x21 SWAP5 PUSH2 0x2572 SWAP3 PUSH1 0x40 MLOAD SWAP1 PUSH1 0x20 DUP3 ADD SWAP3 PUSH32 0xE48329057BFD03D55E49B547132E39CFFD9C1820AD7B9D4C5307691425D15ADF DUP5 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x40 DUP5 ADD MSTORE DUP7 PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x80 DUP3 MSTORE PUSH2 0x2553 DUP3 PUSH2 0x561 JUMP JUMPDEST PUSH2 0x2566 PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH1 0x84 CALLDATALOAD SWAP4 MLOAD SWAP1 KECCAK256 PUSH2 0x438A JUMP JUMPDEST PUSH2 0x4257 JUMP JUMPDEST SWAP2 DUP3 PUSH2 0x400C JUMP JUMPDEST PUSH2 0x3C16 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2341D787 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x172C PUSH2 0x25A3 CALLDATASIZE PUSH2 0xD2A JUMP JUMPDEST SWAP3 SWAP2 SWAP1 SWAP2 PUSH2 0x2FA5 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x25DD SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x73E JUMPI PUSH32 0x2DE0B4AD2878FFF8E0328D13D59576E6595E750E974AEC7069BD4E182D2D5AAF PUSH2 0x11F2 PUSH2 0x261C PUSH2 0x6DB SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST SWAP3 PUSH2 0x26D6 PUSH1 0x44 CALLDATALOAD SWAP5 PUSH2 0x2630 DUP4 MLOAD ISZERO ISZERO PUSH2 0x50FC JUMP JUMPDEST PUSH2 0x263C DUP2 MLOAD ISZERO ISZERO PUSH2 0x513A JUMP JUMPDEST PUSH2 0x2647 TIMESTAMP DUP8 GT PUSH2 0x517C JUMP JUMPDEST PUSH1 0x20 SLOAD SWAP6 PUSH2 0x265C PUSH2 0x2657 DUP9 PUSH2 0x3487 JUMP JUMPDEST PUSH1 0x20 SSTORE JUMP JUMPDEST PUSH2 0x2664 PUSH2 0x51BB JUMP JUMPDEST PUSH2 0x267D PUSH2 0x2676 PUSH1 0x2 SLOAD PUSH1 0x21 SLOAD SWAP1 PUSH2 0x408F JUMP JUMPDEST PUSH1 0x64 SWAP1 DIV SWAP1 JUMP JUMPDEST SWAP2 PUSH2 0x2686 PUSH2 0xAB4 JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x64 CALLDATALOAD PUSH1 0x60 DUP5 ADD MSTORE CALLER PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0x0 PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x100 DUP3 ADD MSTORE PUSH2 0x26D1 DUP7 PUSH1 0x0 MSTORE PUSH1 0x1F PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x5453 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 CALLER DUP7 DUP5 PUSH2 0x54F7 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x13 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x6DB PUSH1 0x40 MLOAD PUSH2 0x272D DUP2 PUSH2 0x510 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH32 0x737570706F72743D627261766F2671756F72756D3D666F722C6162737461696E PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x27C5 PUSH1 0x4 CALLDATALOAD PUSH2 0x278D DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH2 0x279A DUP3 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x1 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0xF2AAD550CF55F045CB27E9C559F9889FDFB6E6CDAA032301D6EA397784AE51D7 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH2 0x73E JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x2835 PUSH2 0x2809 JUMP JUMPDEST PUSH2 0x283D PUSH2 0x3786 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP1 DUP3 AND SWAP2 DUP3 ISZERO PUSH2 0x28AA JUMPI PUSH32 0x7E3F7F0708A84DE9203036ABAA450DCCC85AD5FF52F78C170F3EDB55CF5E8828 PUSH1 0x40 PUSH10 0xFFFFFFFF000000000000 SWAP4 PUSH1 0x10 SLOAD SWAP6 DUP3 MLOAD SWAP2 DUP8 PUSH1 0x30 SHR AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x30 SHL AND SWAP1 PUSH10 0xFFFFFFFF000000000000 NOT AND OR PUSH1 0x10 SSTORE PUSH1 0x0 DUP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF1CFBF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x2061 PUSH1 0x20 PUSH1 0x4 CALLDATALOAD PUSH2 0x28E5 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x28F3 DUP2 PUSH2 0x52B JUMP JUMPDEST MSTORE PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2941 PUSH2 0x3786 JUMP JUMPDEST PUSH1 0xF SLOAD PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0xCCB45DA8D5717E6C4544694297C4BA5CF151D455C9BB0ED4FC7A38411BC05461 SWAP2 LOG1 PUSH1 0xF SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2997 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH2 0x73E JUMPI PUSH2 0x6DB SWAP2 PUSH2 0x29E7 SWAP2 PUSH2 0x29B8 PUSH2 0x3FCA JUMP JUMPDEST POP PUSH2 0x29C1 PUSH2 0x3FCA JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x29E1 PUSH2 0x3FCA JUMP JUMPDEST POP PUSH2 0x3AB5 JUMP JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 PUSH2 0x29F5 DUP3 PUSH2 0x510 JUMP JUMPDEST SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP1 DUP4 MSTORE PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHR PUSH1 0x20 SWAP3 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP2 DUP3 SWAP2 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x2A4D PUSH1 0x4 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH2 0x2A58 PUSH1 0x24 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x2A77 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0xBBB JUMPI PUSH1 0x40 MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0x16 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x2AAC DUP3 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x2B23 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2ACA JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x16 PUSH1 0x0 MSTORE PUSH32 0xD833147D7DC355BA459FC788F669E58CFAF9DC25DDCD0702E87D69C7B5124289 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x2B0B JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2AF9 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF SWAP3 SWAP2 SWAP3 NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x2B50 DUP3 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x2B23 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2B6E JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x17 PUSH1 0x0 MSTORE PUSH32 0xC624B66CC0138B8FABC209247F72D758E1CF3343756D543BADBF24212BED8C15 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x2BAF JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2B9D JUMP JUMPDEST PUSH1 0x18 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x2BD7 DUP3 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x2B23 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2BF5 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x18 PUSH1 0x0 MSTORE PUSH32 0xB13D2D76D1F4B7BE834882E410B3E3A8AFAF69F83600AE24DB354391D2378D2E SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x2C36 JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2C24 JUMP JUMPDEST SWAP8 SWAP5 SWAP10 SWAP9 SWAP6 SWAP3 PUSH2 0x2C93 SWAP1 PUSH2 0x2C85 PUSH2 0x2CA1 SWAP5 PUSH2 0x2C77 PUSH2 0x100 SWAP12 SWAP9 SWAP6 DUP14 PUSH2 0x120 SWAP1 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST DUP13 DUP2 SUB PUSH1 0x20 DUP15 ADD MSTORE SWAP1 PUSH2 0x5B9 JUMP JUMPDEST SWAP1 DUP11 DUP3 SUB PUSH1 0x40 DUP13 ADD MSTORE PUSH2 0x5B9 JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x60 DUP11 ADD MSTORE PUSH2 0x5B9 JUMP JUMPDEST SWAP8 PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE ISZERO ISZERO SWAP2 ADD MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x981 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP2 DUP2 PUSH1 0x15 SLOAD PUSH2 0x2CE1 DUP2 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP5 MSTORE SWAP4 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x2DC9 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2D6C JUMPI JUMPDEST POP POP PUSH2 0x2D09 SWAP3 POP SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x2D21 DUP3 PUSH2 0x2D1A DUP2 PUSH2 0x2A9C JUMP JUMPDEST SUB DUP4 PUSH2 0x598 JUMP JUMPDEST PUSH2 0x6DB PUSH1 0x40 MLOAD PUSH2 0x2D3B DUP2 PUSH2 0x2D34 DUP2 PUSH2 0x2B40 JUMP JUMPDEST SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D4B DUP2 PUSH2 0x2D34 DUP2 PUSH2 0x2BC7 JUMP JUMPDEST PUSH1 0x19 SLOAD PUSH1 0x1A SLOAD PUSH1 0x1C SLOAD SWAP2 PUSH1 0x1D SLOAD SWAP4 PUSH1 0xFF PUSH1 0x1E SLOAD AND SWAP6 PUSH1 0x40 MLOAD SWAP10 DUP11 SWAP10 DUP11 PUSH2 0x2C4E JUMP JUMPDEST SWAP2 POP PUSH1 0x15 DUP3 MSTORE PUSH32 0x55F448FDEA98C4D29EB340757EF0A66CD03DBB9538908A6A81D96026B71EC475 JUMPDEST DUP5 DUP4 LT PUSH2 0x2DAE JUMPI POP PUSH2 0x2D09 SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE DUP1 PUSH2 0x2CFB JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x2D94 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP3 POP PUSH2 0x2D09 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE DUP1 PUSH2 0x2CFB JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x40 MLOAD PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP1 CALLDATALOAD SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xF85 JUMPI PUSH2 0x6DB SWAP3 PUSH1 0x64 SWAP3 PUSH2 0x2E71 SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x2E83 JUMPI JUMPDEST POP PUSH2 0x2E6B SWAP1 PUSH2 0x3ACD JUMP JUMPDEST SWAP1 PUSH2 0x408F JUMP JUMPDEST DIV PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 SWAP2 SWAP1 PUSH1 0x20 DUP4 ADD SWAP3 MSTORE JUMP JUMPDEST PUSH2 0x2E6B SWAP2 SWAP3 POP PUSH2 0x2EA0 SWAP1 PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xFB0 JUMPI PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x2E61 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x40 MLOAD PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0xBBB JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x2F0D DUP3 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP3 MSTORE JUMP JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x2F33 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x2F25 JUMP JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 SWAP3 ADD SWAP2 DUP3 DUP2 DUP4 PUSH1 0x5 SHL DUP6 ADD SWAP6 ADD SWAP4 PUSH1 0x0 SWAP2 JUMPDEST DUP5 DUP4 LT PUSH2 0x2F7B JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 DUP5 DUP1 PUSH2 0x2F95 DUP4 DUP6 PUSH1 0x1 SWAP6 SUB DUP8 MSTORE DUP11 MLOAD PUSH2 0x5B9 JUMP JUMPDEST SWAP9 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP5 SWAP4 SWAP3 SWAP1 PUSH2 0x2F6B JUMP JUMPDEST SWAP3 SWAP1 PUSH2 0x2FF1 SWAP3 PUSH2 0x3003 SWAP3 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP3 PUSH2 0x2FE1 PUSH2 0x2FCE PUSH1 0x20 DUP7 ADD SWAP10 PUSH1 0x80 DUP12 MSTORE PUSH1 0xA0 DUP8 ADD SWAP1 PUSH2 0x2F13 JUMP JUMPDEST PUSH1 0x1F NOT SWAP7 DUP8 DUP8 DUP4 SUB ADD PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST SWAP1 DUP6 DUP6 DUP4 SUB ADD PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x2F50 JUMP JUMPDEST SWAP1 PUSH1 0x80 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x598 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 PUSH4 0xFFFFFFFF DUP3 PUSH1 0xD0 SHR AND SWAP2 PUSH1 0xA0 SHR AND ADD DUP2 DUP2 GT PUSH2 0x143E JUMPI AND SWAP1 JUMP JUMPDEST SWAP2 SWAP4 SWAP3 SWAP1 SWAP4 PUSH2 0x3060 DUP3 CALLER PUSH2 0x38BB JUMP JUMPDEST ISZERO PUSH2 0x315D JUMPI PUSH1 0xF SLOAD SWAP5 DUP6 PUSH2 0x307C JUMPI JUMPDEST PUSH2 0x8A0 SWAP5 SWAP6 POP CALLER SWAP4 PUSH2 0x32C8 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER DUP2 AND PUSH1 0x0 NOT ADD DUP2 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x30CD SWAP2 PUSH1 0x20 SWAP2 PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x30A6 DUP2 PUSH2 0x52B JUMP JUMPDEST MSTORE PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST SUB DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x313F JUMPI JUMPDEST POP DUP7 DUP2 LT PUSH2 0x3118 JUMPI POP PUSH2 0x306F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6121770B PUSH1 0xE1 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH2 0x3157 SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xFB0 JUMPI PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST CODESIZE PUSH2 0x310A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD9B39557 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 SWAP1 PUSH2 0x3191 PUSH1 0x0 SWAP4 SWAP6 SWAP5 PUSH1 0x60 DUP4 ADD SWAP7 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST ADD MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x143E JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x143E JUMPI JUMP JUMPDEST SWAP1 PUSH2 0x31BA DUP3 PUSH2 0xBCD JUMP JUMPDEST PUSH2 0x31C7 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x598 JUMP JUMPDEST DUP3 DUP2 MSTORE DUP1 SWAP3 PUSH2 0x31D8 PUSH1 0x1F NOT SWAP2 PUSH2 0xBCD JUMP JUMPDEST ADD SWAP1 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x31E9 JUMPI POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x60 PUSH1 0x20 DUP1 SWAP4 DUP6 ADD ADD MSTORE ADD PUSH2 0x31DD JUMP JUMPDEST SWAP6 SWAP3 PUSH2 0x322D SWAP1 PUSH2 0x323B SWAP4 SWAP12 SWAP11 SWAP9 SWAP10 SWAP7 SWAP6 SWAP3 DUP9 MSTORE PUSH1 0x20 SWAP12 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP13 DUP10 ADD MSTORE PUSH2 0x120 DUP1 PUSH1 0x40 DUP11 ADD MSTORE DUP9 ADD SWAP1 PUSH2 0x2F13 JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x60 DUP9 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST SWAP8 DUP5 DUP10 SUB PUSH1 0x80 DUP7 ADD MSTORE DUP3 MLOAD DUP1 DUP11 MSTORE DUP2 DUP11 ADD SWAP2 DUP1 DUP1 DUP4 PUSH1 0x5 SHL DUP14 ADD ADD SWAP6 ADD SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP4 DUP3 LT PUSH2 0x329A JUMPI POP POP POP POP POP PUSH2 0x8A0 SWAP7 SWAP8 POP SWAP1 PUSH2 0x3281 SWAP2 DUP5 DUP3 SUB PUSH1 0xA0 DUP7 ADD MSTORE PUSH2 0x2F50 JUMP JUMPDEST SWAP4 PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x100 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x5B9 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP6 DUP4 DUP1 PUSH2 0x32B9 DUP16 SWAP4 PUSH1 0x1 SWAP5 PUSH1 0x1F NOT SWAP1 DUP3 SUB ADD DUP7 MSTORE DUP11 MLOAD PUSH2 0x5B9 JUMP JUMPDEST SWAP9 ADD SWAP3 ADD SWAP3 ADD SWAP1 SWAP4 SWAP3 SWAP2 PUSH2 0x325D JUMP JUMPDEST SWAP2 SWAP5 SWAP4 SWAP1 SWAP3 SWAP5 PUSH2 0x32E0 DUP7 MLOAD PUSH1 0x20 DUP9 ADD KECCAK256 DUP3 DUP7 DUP7 PUSH2 0x2FA5 JUMP JUMPDEST SWAP6 DUP4 MLOAD DUP6 MLOAD SWAP1 DUP2 DUP2 EQ DUP1 ISZERO SWAP1 PUSH2 0x347C JUMPI JUMPDEST DUP1 ISZERO PUSH2 0x3474 JUMPI JUMPDEST PUSH2 0x344B JUMPI POP POP PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 PUSH2 0x332D PUSH2 0x331E DUP11 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xA0 SHR PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST AND PUSH2 0x3424 JUMPI PUSH32 0x7D84A6263AE0D98D3329BD7B46BB4E8D6F98CD35A7ADB45C274C8B7FD5EBD5E0 SWAP6 PUSH2 0x341F SWAP4 PUSH4 0xFFFFFFFF PUSH2 0x336F PUSH1 0x10 SLOAD SWAP4 DUP1 DUP6 AND SWAP1 NUMBER AND PUSH2 0x31A3 JUMP JUMPDEST SWAP3 PUSH1 0x30 SHR AND PUSH2 0x33FD PUSH2 0x338B DUP13 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND OR DUP2 SSTORE PUSH2 0x33D4 PUSH2 0x33B0 DUP7 PUSH2 0x4788 JUMP JUMPDEST DUP3 SLOAD PUSH6 0xFFFFFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0xA0 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFFFFFF PUSH1 0xA0 SHL AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x33DD DUP4 PUSH2 0x47BA JUMP JUMPDEST DUP2 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xD0 SHL NOT AND PUSH1 0xD0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xD0 SHL AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x3411 PUSH2 0x340A DUP10 MLOAD PUSH2 0x31B0 JUMP JUMPDEST SWAP2 DUP5 PUSH2 0x31A3 JUMP JUMPDEST SWAP4 PUSH1 0x40 MLOAD SWAP9 DUP10 SWAP9 DUP14 DUP11 PUSH2 0x31FA JUMP JUMPDEST SUB SWAP1 LOG1 JUMP JUMPDEST DUP8 PUSH2 0x342E DUP2 PUSH2 0x5718 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE SWAP2 DUP3 SWAP2 PUSH2 0x1132 SWAP2 PUSH1 0x4 DUP5 ADD PUSH2 0x3175 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x40 MLOAD PUSH4 0x447B05D PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST POP DUP1 ISZERO PUSH2 0x32F8 JUMP JUMPDEST POP DUP4 MLOAD DUP2 EQ ISZERO PUSH2 0x32F1 JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x143E JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH2 0x34C0 JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH2 0x3496 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 SWAP2 SWAP7 SWAP6 PUSH2 0x1230 PUSH2 0x357F SWAP2 PUSH2 0x3579 DUP11 PUSH2 0x34FB DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 PUSH1 0x1 DUP3 ADD SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH2 0x3506 CALLDATASIZE DUP9 DUP11 PUSH2 0xAFE JUMP JUMPDEST PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 DUP12 MLOAD PUSH1 0x20 DUP14 ADD KECCAK256 SWAP1 PUSH1 0x40 MLOAD SWAP3 PUSH1 0x20 DUP5 ADD SWAP5 PUSH32 0x3E83946653575F9A39005E1545185629E92736B7528AB20CA3816F315424A811 DUP7 MSTORE DUP14 PUSH1 0x40 DUP7 ADD MSTORE PUSH1 0xFF DUP14 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0xE0 DUP2 MSTORE PUSH2 0x1EBD DUP2 PUSH2 0x57C JUMP JUMPDEST DUP11 PUSH2 0x4677 JUMP JUMPDEST PUSH2 0x359A JUMPI PUSH2 0x8A0 SWAP6 SWAP7 SWAP2 PUSH2 0x3594 SWAP2 CALLDATASIZE SWAP2 PUSH2 0xAFE JUMP JUMPDEST SWAP3 PUSH2 0x3637 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x94AB6C07 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP2 PUSH2 0x8A0 SWAP4 SWAP2 PUSH1 0x40 MLOAD SWAP4 PUSH2 0x35CE DUP6 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP6 MSTORE PUSH2 0x3637 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 PUSH1 0xFF PUSH2 0x3603 SWAP4 PUSH2 0x8A0 SWAP8 SWAP6 DUP8 MSTORE AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xA0 PUSH1 0x60 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x5B9 JUMP JUMPDEST SWAP1 SWAP3 PUSH1 0xFF PUSH1 0x80 SWAP4 PUSH2 0x8A0 SWAP7 SWAP6 DUP5 MSTORE AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD MSTORE DUP2 PUSH1 0x60 DUP3 ADD MSTORE ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST SWAP3 SWAP2 SWAP1 PUSH2 0x3643 DUP5 PUSH2 0x5718 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x2 PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x3728 JUMPI POP DUP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH2 0x369F PUSH2 0x3697 PUSH2 0x3691 PUSH2 0x3686 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH6 0xFFFFFFFFFFFF SWAP1 SLOAD PUSH1 0xA0 SHR AND SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST DUP4 PUSH2 0x3A29 JUMP JUMPDEST DUP4 DUP4 DUP8 PUSH2 0x3923 JUMP JUMPDEST SWAP5 DUP1 MLOAD ISZERO PUSH1 0x0 EQ PUSH2 0x36EC JUMPI POP PUSH2 0x36E6 PUSH32 0xB8E138887D0AA13BAB447E82DE9D5C1777041ECD21CA36BA824FF1E6C07DDDA4 SWAP4 DUP7 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP8 DUP6 PUSH2 0x3611 JUMP JUMPDEST SUB SWAP1 LOG2 SWAP1 JUMP JUMPDEST PUSH2 0x36E6 SWAP1 PUSH32 0xE2BABFBAC5889A709B63BB7F598B324E08BC5A4FB9EC647FB3CBC9EC07EB8712 SWAP5 DUP8 PUSH1 0x40 MLOAD SWAP6 DUP7 SWAP6 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP9 DUP7 PUSH2 0x35D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 SWAP2 PUSH2 0x374D SWAP1 PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x3781 JUMPI RETURNDATASIZE SWAP1 PUSH2 0x3767 DUP3 PUSH2 0xAE3 JUMP JUMPDEST SWAP2 PUSH2 0x3775 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x598 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY JUMP JUMPDEST PUSH1 0x60 SWAP1 JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 SUB PUSH2 0x37E2 JUMPI ADDRESS SUB PUSH2 0x37A1 JUMPI JUMP JUMPDEST PUSH2 0x37AA CALLDATASIZE PUSH2 0xAE3 JUMP JUMPDEST PUSH2 0x37B7 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x598 JUMP JUMPDEST CALLDATASIZE DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 CALLDATASIZE PUSH1 0x0 DUP4 CALLDATACOPY PUSH1 0x0 PUSH1 0x20 CALLDATASIZE DUP4 ADD ADD MSTORE MLOAD SWAP1 KECCAK256 JUMPDEST DUP1 PUSH2 0x37DA PUSH2 0x4F23 JUMP JUMPDEST SUB PUSH2 0x37D1 JUMPI POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x47096E47 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0xBBB JUMPI PUSH4 0xBC197C81 PUSH1 0xE0 SHL SWAP1 JUMP JUMPDEST PUSH2 0x3820 DUP2 PUSH2 0x5718 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x10 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x383D JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x3860 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x3872 DUP2 PUSH2 0x5718 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x30 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x388F JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x38B2 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x30 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 DUP1 MLOAD PUSH1 0x34 DUP2 LT PUSH2 0x391B JUMPI PUSH1 0x13 NOT DUP2 DUP4 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xB0 SHL SUB NOT AND PUSH10 0xDC8F8D908F908C9A8DC3 PUSH1 0xB0 SHL ADD PUSH2 0x391B JUMPI PUSH2 0x38FA SWAP2 PUSH1 0x29 NOT DUP3 ADD SWAP1 PUSH2 0x40A2 JUMP JUMPDEST SWAP1 ISZERO SWAP2 DUP3 ISZERO PUSH2 0x3908 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 AND EQ SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x393A SWAP1 SWAP3 SWAP2 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP2 PUSH1 0x3 DUP4 ADD PUSH2 0x3965 PUSH2 0x395E DUP4 DUP4 SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x39ED JUMPI PUSH2 0x398B PUSH1 0xFF SWAP4 SWAP3 PUSH2 0x3998 SWAP3 SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST AND DUP1 PUSH2 0x39AF JUMPI POP PUSH2 0x39AA DUP3 DUP3 SLOAD PUSH2 0x31A3 JUMP JUMPDEST SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x39C6 JUMPI POP PUSH1 0x1 ADD PUSH2 0x39AA DUP3 DUP3 SLOAD PUSH2 0x31A3 JUMP JUMPDEST PUSH1 0x2 SUB PUSH2 0x39DB JUMPI PUSH1 0x2 ADD PUSH2 0x39AA DUP3 DUP3 SLOAD PUSH2 0x31A3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3599BE1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x71C6AF49 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x73E JUMPI MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x20 SWAP1 DUP3 SWAP1 PUSH1 0x44 SWAP1 DUP3 SWAP1 PUSH32 0x0 AND GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x3A8E JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x8A0 SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xFB0 JUMPI PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP3 GT PUSH2 0x143E JUMPI JUMP JUMPDEST DUP1 SLOAD DUP3 LT ISZERO PUSH2 0x34C0 JUMPI PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP1 PUSH1 0x0 NOT DUP3 ADD DUP3 DUP2 GT PUSH2 0x143E JUMPI DUP3 GT ISZERO PUSH2 0x34C0 JUMPI PUSH1 0x0 SWAP2 PUSH1 0x12 DUP4 MSTORE PUSH32 0xBB8A6A4669BA250D26CD7A459ECA9D215F8307E33AEBE50379BC5A3617EC3443 DUP2 ADD SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP3 DUP2 DUP5 DUP3 AND GT ISZERO PUSH2 0x3BD2 JUMPI POP PUSH2 0x3B2C SWAP1 PUSH2 0x4788 JUMP JUMPDEST DUP4 SWAP1 DUP3 PUSH1 0x5 DUP2 GT PUSH2 0x3B7C JUMPI JUMPDEST POP PUSH2 0x3B43 SWAP4 POP PUSH2 0x4DFE JUMP JUMPDEST DUP1 PUSH2 0x3B56 JUMPI POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x3B61 PUSH1 0x12 SWAP2 PUSH2 0x3AA6 JUMP JUMPDEST SWAP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C3D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR PUSH2 0x3B4A JUMP JUMPDEST SWAP1 SWAP3 PUSH2 0x3B87 DUP3 PUSH2 0x480A JUMP JUMPDEST DUP3 SUB SWAP2 DUP3 GT PUSH2 0x143E JUMPI PUSH2 0x3B43 SWAP5 PUSH1 0x12 DUP8 MSTORE DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C3D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x3BC0 JUMPI POP SWAP2 JUMPDEST CODESIZE PUSH2 0x3B38 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x3BCC SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP1 PUSH2 0x3BBA JUMP JUMPDEST SWAP4 POP POP POP POP PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP1 DUP3 LT ISZERO PUSH2 0x3BF8 JUMPI POP PUSH2 0x8A0 SWAP1 PUSH2 0x4788 JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0x7669FC0F PUSH1 0xE1 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP7 DUP6 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH2 0xAE1 SWAP7 SWAP5 AND SWAP5 PUSH2 0x3C93 SWAP4 SWAP1 SWAP3 DUP7 SWAP2 SWAP1 PUSH32 0x3134E8A2E6D97E929A7E54011EA5485D7D196DD5F0BA4D4EF95803E8E3FC257F SWAP1 DUP1 LOG4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST SWAP2 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND SWAP4 SWAP3 SWAP2 SWAP1 DUP2 AND SWAP1 DUP2 DUP6 EQ ISZERO DUP1 PUSH2 0x3DDD JUMPI JUMPDEST PUSH2 0x3CBD JUMPI JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH2 0x3D42 JUMPI JUMPDEST POP POP DUP3 PUSH2 0x3CD2 JUMPI JUMPDEST DUP1 DUP1 PUSH2 0x3CB6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 SWAP2 PUSH2 0x3D1F SWAP2 PUSH2 0x3D19 SWAP1 SWAP2 PUSH2 0x4755 JUMP JUMPDEST SWAP1 PUSH2 0x3DE6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE LOG2 CODESIZE DUP1 DUP1 PUSH2 0x3CCB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x3D62 DUP5 PUSH2 0x4755 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x3D76 DUP6 PUSH2 0x49C9 JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB DUP2 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x3DBA PUSH2 0x3DD3 SWAP2 PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 SWAP5 PUSH6 0xFFFFFFFFFFFF NUMBER AND SWAP1 PUSH2 0x4CD9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP6 AND DUP4 MSTORE SWAP4 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 DUP3 SWAP2 SWAP1 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG2 CODESIZE DUP1 PUSH2 0x3CC3 JUMP JUMPDEST POP DUP4 ISZERO ISZERO PUSH2 0x3CB1 JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x3DFB DUP6 PUSH2 0x49C9 JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x3E19 SWAP2 PUSH6 0xFFFFFFFFFFFF NUMBER AND SWAP1 PUSH2 0x4CD9 JUMP JUMPDEST SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x3E30 PUSH2 0x497F JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x3E19 SWAP1 PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x4C22 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x3E60 PUSH2 0x497F JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB SWAP1 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x3E19 SWAP1 PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x4C22 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 DUP6 ISZERO PUSH2 0x3F77 JUMPI DUP3 AND DUP1 ISZERO PUSH2 0x3F5E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP6 DUP5 DUP8 LT PUSH2 0x3F2F JUMPI DUP5 PUSH2 0xAE1 SWAP7 SWAP8 SUB PUSH2 0x3EE0 DUP5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD DUP9 ADD SWAP1 SSTORE SWAP1 MLOAD DUP7 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 SWAP1 LOG3 PUSH2 0x5695 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND ISZERO PUSH2 0xA4A JUMPI DUP2 AND ISZERO PUSH2 0xA31 JUMPI PUSH2 0x9E2 PUSH2 0x3FC7 SWAP3 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x3FD7 DUP3 PUSH2 0x510 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP4 DUP3 DUP2 MSTORE ADD MSTORE JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0xAE1 JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x3FFA JUMPI DUP1 MLOAD SWAP1 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE DUP1 SWAP3 SUB PUSH2 0x4038 JUMPI POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1D4B623 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST SWAP1 DUP2 PUSH1 0x1 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x2 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x143E JUMPI JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x4 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x10 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x143E JUMPI JUMP JUMPDEST DUP2 DUP2 MUL SWAP3 SWAP2 DUP2 ISZERO SWAP2 DUP5 DIV EQ OR ISZERO PUSH2 0x143E JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD DUP3 GT DUP1 ISZERO PUSH2 0x412B JUMPI JUMPDEST PUSH2 0x4102 JUMPI PUSH2 0x40BC DUP2 PUSH2 0x3195 JUMP JUMPDEST DUP3 GT DUP1 PUSH2 0x410D JUMPI JUMPDEST PUSH2 0x40CF SWAP1 ISZERO ISZERO PUSH2 0x4063 JUMP JUMPDEST PUSH1 0x28 ADD DUP1 PUSH1 0x28 GT PUSH2 0x143E JUMPI DUP2 DUP4 SUB DUP4 DUP2 GT PUSH2 0x143E JUMPI SUB PUSH2 0x4102 JUMPI PUSH2 0x40F2 SWAP3 PUSH2 0x4134 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 JUMP JUMPDEST POP POP POP PUSH1 0x0 SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST POP DUP3 DUP2 ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x60F PUSH1 0xF3 SHL EQ PUSH2 0x40C4 JUMP JUMPDEST POP DUP2 DUP2 GT PUSH2 0x40AF JUMP JUMPDEST SWAP3 SWAP1 SWAP3 PUSH2 0x4140 DUP5 PUSH2 0x3195 JUMP JUMPDEST DUP4 GT DUP1 PUSH2 0x41C7 JUMPI JUMPDEST PUSH2 0x4153 SWAP1 ISZERO ISZERO PUSH2 0x4063 JUMP JUMPDEST SWAP4 PUSH1 0x0 SWAP5 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x143E JUMPI SWAP2 SWAP3 SWAP1 JUMPDEST DUP2 DUP4 LT PUSH2 0x4174 JUMPI POP POP POP PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP4 PUSH1 0xFF PUSH2 0x4195 PUSH2 0x4190 PUSH1 0x20 DUP9 DUP7 ADD ADD MLOAD PUSH1 0xFF PUSH1 0xF8 SHL AND SWAP1 JUMP JUMPDEST PUSH2 0x41E5 JUMP JUMPDEST AND SWAP1 PUSH1 0xF DUP3 GT PUSH2 0x41BB JUMPI SWAP1 PUSH2 0x41AC PUSH2 0x41B3 SWAP3 PUSH2 0x4079 JUMP JUMPDEST ADD SWAP5 PUSH2 0x3487 JUMP JUMPDEST SWAP2 SWAP3 SWAP1 PUSH2 0x4164 JUMP JUMPDEST POP PUSH1 0x0 SWAP5 POP DUP5 SWAP4 POP POP POP JUMP JUMPDEST POP DUP1 DUP5 ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x60F PUSH1 0xF3 SHL EQ PUSH2 0x4148 JUMP JUMPDEST PUSH1 0xF8 SHR PUSH1 0x2F DUP2 GT DUP1 PUSH2 0x424D JUMPI JUMPDEST ISZERO PUSH2 0x4201 JUMPI PUSH1 0x2F NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 GT DUP1 PUSH2 0x4243 JUMPI JUMPDEST ISZERO PUSH2 0x421A JUMPI PUSH1 0x56 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 GT DUP1 PUSH2 0x4239 JUMPI JUMPDEST ISZERO PUSH2 0x4233 JUMPI PUSH1 0x36 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST POP PUSH1 0xFF SWAP1 JUMP JUMPDEST POP PUSH1 0x47 DUP2 LT PUSH2 0x4224 JUMP JUMPDEST POP PUSH1 0x67 DUP2 LT PUSH2 0x420B JUMP JUMPDEST POP PUSH1 0x3A DUP2 LT PUSH2 0x41F2 JUMP JUMPDEST SWAP2 PUSH2 0x8A0 SWAP4 SWAP2 PUSH2 0x4266 SWAP4 PUSH2 0x426F JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP3 PUSH2 0x42FD JUMP JUMPDEST SWAP2 SWAP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT PUSH2 0x42E7 JUMPI SWAP3 PUSH1 0x20 SWAP3 SWAP2 PUSH1 0xFF PUSH1 0x80 SWAP6 PUSH1 0x40 MLOAD SWAP5 DUP6 MSTORE AND DUP5 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x0 SWAP3 DUP4 SWAP2 DUP3 DUP1 MSTORE PUSH1 0x1 GAS STATICCALL ISZERO PUSH2 0xF85 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x42DE JUMPI SWAP2 DUP2 SWAP1 JUMP JUMPDEST POP DUP1 SWAP2 PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST POP POP POP PUSH1 0x0 SWAP2 PUSH1 0x3 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0x4 GT ISZERO PUSH2 0x1463 JUMPI JUMP JUMPDEST PUSH2 0x4306 DUP2 PUSH2 0x42F3 JUMP JUMPDEST DUP1 PUSH2 0x430F JUMPI POP POP JUMP JUMPDEST PUSH2 0x4318 DUP2 PUSH2 0x42F3 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x4332 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH2 0x433B DUP2 PUSH2 0x42F3 JUMP JUMPDEST PUSH1 0x2 DUP2 SUB PUSH2 0x435C JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST DUP1 PUSH2 0x4368 PUSH1 0x3 SWAP3 PUSH2 0x42F3 JUMP JUMPDEST EQ PUSH2 0x4370 JUMPI POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x42 SWAP1 PUSH2 0x4395 PUSH2 0x43B0 JUMP JUMPDEST SWAP1 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1901 PUSH1 0xF0 SHL DUP4 MSTORE PUSH1 0x2 DUP4 ADD MSTORE PUSH1 0x22 DUP3 ADD MSTORE KECCAK256 SWAP1 JUMP JUMPDEST ADDRESS PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x449B JUMPI JUMPDEST ISZERO PUSH2 0x440B JUMPI PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP3 MSTORE PUSH32 0x0 PUSH1 0x40 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH2 0x3003 DUP2 PUSH2 0x546 JUMP JUMPDEST POP PUSH32 0x0 CHAINID EQ PUSH2 0x43E2 JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x4502 JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x44F0 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x44E6 DUP4 PUSH2 0x510 JUMP JUMPDEST DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x5 SLOAD DUP2 PUSH1 0x0 PUSH2 0x4515 DUP4 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x459B JUMPI POP PUSH1 0x1 EQ PUSH2 0x453C JUMPI JUMPDEST POP PUSH2 0x8A0 SWAP3 POP SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0x36B6384B5ECA791C62761152D0C79BB0604C104A5FB6F4EB0703F3154BB3DB0 JUMPDEST DUP5 DUP4 LT PUSH2 0x4580 JUMPI POP PUSH2 0x8A0 SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x452F JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x4567 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 SWAP3 POP PUSH2 0x8A0 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE PUSH2 0x452F JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x45DF JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x44F0 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x44E6 DUP4 PUSH2 0x510 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x6 SLOAD DUP2 PUSH1 0x0 PUSH2 0x45F2 DUP4 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x459B JUMPI POP PUSH1 0x1 EQ PUSH2 0x4618 JUMPI POP PUSH2 0x8A0 SWAP3 POP SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F JUMPDEST DUP5 DUP4 LT PUSH2 0x465C JUMPI POP PUSH2 0x8A0 SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x452F JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x4643 JUMP JUMPDEST SWAP1 SWAP2 DUP2 EXTCODESIZE PUSH2 0x469F JUMPI PUSH2 0x4689 SWAP2 SWAP3 PUSH2 0x4719 JUMP JUMPDEST POP PUSH2 0x4693 DUP2 PUSH2 0x42F3 JUMP JUMPDEST ISZERO SWAP2 DUP3 PUSH2 0x3908 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 SWAP2 PUSH1 0x40 MLOAD PUSH2 0x46D5 DUP2 PUSH2 0x229F PUSH1 0x20 DUP3 ADD SWAP5 PUSH4 0xB135D3F PUSH1 0xE1 SHL SWAP10 DUP11 DUP8 MSTORE PUSH1 0x24 DUP5 ADD MSTORE PUSH1 0x40 PUSH1 0x44 DUP5 ADD MSTORE PUSH1 0x64 DUP4 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST MLOAD SWAP2 GAS STATICCALL SWAP1 PUSH2 0x46E2 PUSH2 0x3756 JUMP JUMPDEST DUP3 PUSH2 0x470B JUMPI JUMPDEST DUP3 PUSH2 0x46F2 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH2 0x4707 SWAP2 SWAP3 POP PUSH1 0x20 DUP1 DUP3 MLOAD DUP4 ADD ADD SWAP2 ADD PUSH2 0x3A0E JUMP JUMPDEST EQ SWAP1 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP3 MLOAD LT ISZERO SWAP2 PUSH2 0x46E8 JUMP JUMPDEST DUP2 MLOAD SWAP2 SWAP1 PUSH1 0x41 DUP4 SUB PUSH2 0x474A JUMPI PUSH2 0x4743 SWAP3 POP PUSH1 0x20 DUP3 ADD MLOAD SWAP1 PUSH1 0x60 PUSH1 0x40 DUP5 ADD MLOAD SWAP4 ADD MLOAD PUSH1 0x0 BYTE SWAP1 PUSH2 0x426F JUMP JUMPDEST SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 PUSH1 0x2 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP2 GT PUSH2 0x4769 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0xD0 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x479B JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x30 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH4 0xFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x47CB JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x20 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST DUP2 ISZERO PUSH2 0x47F4 JUMPI DIV SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x8A0 JUMPI PUSH1 0x1 DUP2 PUSH1 0x1 PUSH1 0x80 SHL DUP2 LT ISZERO PUSH2 0x4923 JUMPI JUMPDEST PUSH2 0x48CB PUSH2 0x48C1 PUSH2 0x48B7 PUSH2 0x48AD PUSH2 0x48A3 PUSH2 0x4899 PUSH2 0x48D7 SWAP8 PUSH1 0x4 DUP9 PUSH1 0x1 PUSH1 0x40 SHL PUSH2 0x48D2 SWAP11 LT ISZERO PUSH2 0x4916 JUMPI JUMPDEST PUSH5 0x100000000 DUP2 LT ISZERO PUSH2 0x4909 JUMPI JUMPDEST PUSH3 0x10000 DUP2 LT ISZERO PUSH2 0x48FC JUMPI JUMPDEST PUSH2 0x100 DUP2 LT ISZERO PUSH2 0x48F0 JUMPI JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x48E4 JUMPI JUMPDEST LT ISZERO PUSH2 0x48DC JUMPI JUMPDEST PUSH1 0x3 MUL PUSH1 0x1 SHR PUSH2 0x4892 DUP2 DUP12 PUSH2 0x47EA JUMP JUMPDEST ADD PUSH1 0x1 SHR SWAP1 JUMP JUMPDEST PUSH2 0x4892 DUP2 DUP11 PUSH2 0x47EA JUMP JUMPDEST PUSH2 0x4892 DUP2 DUP10 PUSH2 0x47EA JUMP JUMPDEST PUSH2 0x4892 DUP2 DUP9 PUSH2 0x47EA JUMP JUMPDEST PUSH2 0x4892 DUP2 DUP8 PUSH2 0x47EA JUMP JUMPDEST PUSH2 0x4892 DUP2 DUP7 PUSH2 0x47EA JUMP JUMPDEST DUP1 SWAP4 PUSH2 0x47EA JUMP JUMPDEST DUP3 GT SWAP1 JUMP JUMPDEST SWAP1 SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 SHL PUSH2 0x4882 JUMP JUMPDEST DUP2 SHR SWAP2 PUSH1 0x2 SHL SWAP2 PUSH2 0x487B JUMP JUMPDEST PUSH1 0x8 SHR SWAP2 DUP2 SHL SWAP2 PUSH2 0x4871 JUMP JUMPDEST PUSH1 0x10 SHR SWAP2 PUSH1 0x8 SHL SWAP2 PUSH2 0x4866 JUMP JUMPDEST PUSH1 0x20 SHR SWAP2 PUSH1 0x10 SHL SWAP2 PUSH2 0x485A JUMP JUMPDEST PUSH1 0x40 SHR SWAP2 PUSH1 0x20 SHL SWAP2 PUSH2 0x484C JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 POP PUSH1 0x80 DUP3 SWAP1 SHR PUSH2 0x4823 JUMP JUMPDEST PUSH1 0x12 SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x4947 JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x143E JUMPI PUSH1 0x12 PUSH32 0xBB8A6A4669BA250D26CD7A459ECA9D215F8307E33AEBE50379BC5A3617EC3443 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x4991 JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x143E JUMPI PUSH1 0xA PUSH32 0xC65A7BB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2A7 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x0 SWAP2 DUP2 PUSH2 0x49DB JUMPI POP POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT SWAP3 DUP3 DUP5 DUP2 ADD GT PUSH2 0x143E JUMPI PUSH1 0x20 SWAP2 DUP2 MSTORE KECCAK256 ADD ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x12 SLOAD SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0x50B JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0x12 SSTORE DUP3 LT ISZERO PUSH2 0x34C0 JUMPI PUSH2 0xAE1 SWAP2 PUSH1 0x12 PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C3D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 PUSH2 0x4A6D PUSH6 0xFFFFFFFFFFFF DUP3 MLOAD AND DUP4 SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x20 ADD MLOAD DUP2 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFFFFFF NOT AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0x50B JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0xA SSTORE DUP3 LT ISZERO PUSH2 0x34C0 JUMPI PUSH2 0xAE1 SWAP2 PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C5D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 PUSH2 0x4A6D PUSH6 0xFFFFFFFFFFFF DUP3 MLOAD AND DUP4 SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 LT ISZERO PUSH2 0x50B JUMPI PUSH2 0x4B0C SWAP2 PUSH1 0x1 DUP3 ADD DUP2 SSTORE PUSH2 0x3AB5 JUMP JUMPDEST PUSH2 0x4B34 JUMPI DUP2 MLOAD DUP2 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP2 SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0xAE1 SWAP2 PUSH2 0x4A6D JUMP JUMPDEST PUSH2 0x49F7 JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x4BF8 JUMPI PUSH2 0x4B51 PUSH2 0x4B69 SWAP2 PUSH2 0x3AA6 JUMP JUMPDEST PUSH1 0x12 PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C3D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 JUMP JUMPDEST SWAP1 DUP2 SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP5 AND SWAP2 DUP4 AND DUP1 DUP4 GT PUSH2 0x4BE6 JUMPI DUP7 SWAP3 SUB PUSH2 0x4BAE JUMPI PUSH2 0x4BA7 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x30 SHR SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH2 0x4BE1 SWAP1 PUSH2 0x4BCD PUSH2 0x4BBF PUSH2 0xAD4 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP3 AND DUP3 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x4A0D JUMP JUMPDEST PUSH2 0x4BA7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH2 0x4C1C SWAP1 PUSH2 0x4C08 PUSH2 0x4BBF PUSH2 0xAD4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x4A0D JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x4CB5 JUMPI PUSH2 0x4C3A PUSH2 0x4C52 SWAP2 PUSH2 0x3AA6 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C5D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 JUMP JUMPDEST SWAP1 DUP2 SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP5 AND SWAP2 DUP4 AND DUP1 DUP4 GT PUSH2 0x4BE6 JUMPI DUP7 SWAP3 SUB PUSH2 0x4C90 JUMPI PUSH2 0x4BA7 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST POP POP PUSH2 0x4BE1 SWAP1 PUSH2 0x4CA1 PUSH2 0x4BBF PUSH2 0xAD4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x4A8F JUMP JUMPDEST POP PUSH2 0x4C1C SWAP1 PUSH2 0x4CC5 PUSH2 0x4BBF PUSH2 0xAD4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x4A8F JUMP JUMPDEST DUP1 SLOAD SWAP3 SWAP4 SWAP3 DUP1 ISZERO PUSH2 0x4D70 JUMPI PUSH2 0x4CF0 PUSH2 0x4CFD SWAP2 PUSH2 0x3AA6 JUMP JUMPDEST DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 JUMP JUMPDEST SWAP2 DUP3 SLOAD SWAP3 PUSH6 0xFFFFFFFFFFFF SWAP2 DUP3 DUP6 AND SWAP3 DUP2 AND DUP1 DUP5 GT PUSH2 0x4BE6 JUMPI DUP8 SWAP4 SUB PUSH2 0x4D3C JUMPI POP PUSH2 0x4BA7 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x4BE1 SWAP2 PUSH2 0x4D5C PUSH2 0x4D4E PUSH2 0xAD4 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP4 AND DUP4 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP7 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x4AEF JUMP JUMPDEST POP SWAP1 PUSH2 0x4C1C SWAP2 PUSH2 0x4D81 PUSH2 0x4D4E PUSH2 0xAD4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x4AEF JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x4DA3 JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x143E JUMPI PUSH1 0xA PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C5D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x4DEC JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x4D97 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x4DF8 SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP1 PUSH2 0x4DE6 JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x4E0C JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x143E JUMPI PUSH1 0x12 PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C3D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x4E55 JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x4E00 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x4E61 SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP1 PUSH2 0x4E4F JUMP JUMPDEST SWAP2 SWAP1 JUMPDEST DUP4 DUP3 LT PUSH2 0x4E77 JUMPI POP POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 DUP1 DUP4 AND SWAP1 DUP1 DUP5 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x143E JUMPI PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 DUP3 ADD SLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP5 AND LT ISZERO PUSH2 0x4EB6 JUMPI POP SWAP3 JUMPDEST SWAP2 SWAP1 PUSH2 0x4E6A JUMP JUMPDEST SWAP4 SWAP3 POP PUSH2 0x4EC2 SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP2 PUSH2 0x4EAF JUMP JUMPDEST PUSH1 0xD SLOAD DUP1 PUSH1 0x80 SHR SWAP2 PUSH1 0x1 DUP4 ADD SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 SWAP4 AND DUP4 DUP6 AND EQ PUSH2 0x4F10 JUMPI PUSH1 0x0 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE PUSH1 0xD SLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT SWAP1 PUSH1 0x80 SHL AND SWAP2 AND OR PUSH1 0xD SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0xD SLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x80 SHR DUP4 EQ PUSH2 0x4F68 JUMPI DUP3 PUSH1 0x0 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP4 PUSH1 0x0 DUP6 SLOAD SWAP6 SSTORE ADD AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT PUSH1 0xD SLOAD AND OR PUSH1 0xD SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST ISZERO PUSH2 0x4F82 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x456D70747920617272617973 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x4FBD JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x5A65726F2061646472657373 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x4FF8 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x16995C9BC8185B5BDD5B9D PUSH1 0xAA SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 SWAP2 PUSH2 0x5042 PUSH2 0x8A0 SWAP4 PUSH1 0x40 DUP5 MSTORE PUSH1 0x40 DUP5 ADD SWAP1 PUSH2 0x2F13 JUMP JUMPDEST SWAP2 PUSH1 0x20 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP1 ISZERO PUSH2 0x3F5E JUMPI PUSH1 0x2 SLOAD DUP3 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x143E JUMPI PUSH1 0x2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 SWAP1 LOG3 PUSH1 0x2 SLOAD SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 GT PUSH2 0x50D6 JUMPI PUSH2 0xAE1 SWAP3 SWAP4 POP PUSH2 0x5617 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE58AE93 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5103 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x22B6B83A3C9037B832B930BA34B7B7 PUSH1 0x89 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5141 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x456D7074792074617267657420636861696E73 PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5183 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x496E76616C69642074696D656C6F636B PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x51C7 DUP2 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST DUP2 DUP2 LT PUSH2 0x51D9 JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x51CE JUMP JUMPDEST SWAP2 SWAP1 PUSH1 0x1F DUP2 GT PUSH2 0x51F4 JUMPI POP POP POP JUMP JUMPDEST PUSH2 0xAE1 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH2 0x5220 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH2 0x51CE JUMP JUMPDEST SWAP1 SWAP2 POP DUP2 SWAP1 PUSH2 0x5213 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x50B JUMPI PUSH2 0x5251 DUP2 PUSH2 0x524B DUP5 SLOAD PUSH2 0x4A8 JUMP JUMPDEST DUP5 PUSH2 0x51E5 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH2 0x528D JUMPI POP DUP2 SWAP3 SWAP4 SWAP5 PUSH1 0x0 SWAP3 PUSH2 0x5282 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH2 0x526C JUMP JUMPDEST SWAP1 PUSH1 0x1F NOT DUP4 AND SWAP6 PUSH2 0x52A3 DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP9 DUP3 LT PUSH2 0x52E0 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 SWAP8 LT PUSH2 0x52C7 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH2 0x52BD JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH2 0x52A8 JUMP JUMPDEST DUP2 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x50B JUMPI PUSH1 0x1 PUSH1 0x40 SHL DUP4 GT PUSH2 0x50B JUMPI DUP2 SLOAD DUP4 DUP4 SSTORE DUP1 DUP5 LT PUSH2 0x5353 JUMPI JUMPDEST POP PUSH1 0x20 DUP1 SWAP2 ADD SWAP2 PUSH1 0x0 MSTORE DUP1 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x5341 JUMPI POP POP POP POP POP JUMP JUMPDEST DUP4 MLOAD DUP4 DUP3 ADD SSTORE SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x5333 JUMP JUMPDEST PUSH2 0x536B SWAP1 DUP4 PUSH1 0x0 MSTORE DUP5 PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x51CE JUMP JUMPDEST CODESIZE PUSH2 0x5321 JUMP JUMPDEST DUP2 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x40 SHL DUP4 GT PUSH2 0x50B JUMPI DUP2 SLOAD DUP4 DUP4 SSTORE DUP1 DUP5 LT PUSH2 0x53CF JUMPI JUMPDEST POP PUSH2 0x53A1 PUSH1 0x20 DUP1 SWAP3 ADD SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x53B3 JUMPI POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP4 DUP3 PUSH2 0x53C3 DUP4 SWAP5 MLOAD DUP7 PUSH2 0x522A JUMP JUMPDEST ADD SWAP3 ADD SWAP4 ADD SWAP3 SWAP1 PUSH2 0x53A5 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 KECCAK256 SWAP3 DUP4 ADD SWAP3 ADD JUMPDEST DUP3 DUP2 LT PUSH2 0x53ED JUMPI POP POP PUSH2 0x538C JUMP JUMPDEST DUP1 PUSH2 0x53FA PUSH1 0x1 SWAP3 SLOAD PUSH2 0x4A8 JUMP JUMPDEST DUP1 PUSH2 0x5407 JUMPI JUMPDEST POP ADD PUSH2 0x53DF JUMP JUMPDEST PUSH1 0x1F SWAP1 DUP2 DUP2 GT DUP5 EQ PUSH2 0x541F JUMPI POP POP DUP3 DUP2 SSTORE JUMPDEST CODESIZE PUSH2 0x5400 JUMP JUMPDEST DUP4 PUSH2 0x5441 SWAP3 PUSH2 0x5433 DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 ADD PUSH2 0x51CE JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP2 DUP4 SSTORE SSTORE PUSH2 0x5419 JUMP JUMPDEST SWAP1 PUSH2 0x100 PUSH1 0x8 SWAP2 PUSH2 0x5465 DUP2 MLOAD DUP6 PUSH2 0x522A JUMP JUMPDEST PUSH2 0x5476 PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x1 DUP7 ADD PUSH2 0x52F8 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x3 DUP6 ADD SSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x4 DUP6 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x54C1 PUSH1 0xA0 DUP3 ADD MLOAD PUSH1 0x5 DUP7 ADD PUSH2 0x5371 JUMP JUMPDEST PUSH2 0x54E6 PUSH2 0x54D1 PUSH1 0xC0 DUP4 ADD MLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x6 DUP7 ADD SWAP1 PUSH1 0xFF DUP1 NOT DUP4 SLOAD AND SWAP2 ISZERO ISZERO AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x7 DUP6 ADD SSTORE ADD MLOAD SWAP2 ADD SSTORE JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x8A0 SWAP3 SWAP2 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST ISZERO PUSH2 0x5526 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20616C726561647920657865637574656400000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5572 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x141C9BDC1BDCD85B08195E1C1A5C9959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x55B1 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2737903A37B5B2B739903A379039B4B3B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 LT ISZERO PUSH2 0x50B JUMPI PUSH2 0x5607 SWAP2 PUSH1 0x1 DUP3 ADD DUP2 SSTORE PUSH2 0x3AB5 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 PUSH2 0x4B34 JUMPI PUSH2 0xAE1 SWAP2 PUSH2 0x522A JUMP JUMPDEST SWAP1 PUSH2 0xAE1 SWAP2 PUSH2 0x562D PUSH2 0x5628 DUP4 PUSH2 0x4755 JUMP JUMPDEST PUSH2 0x3E1D JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x567D JUMPI JUMPDEST PUSH1 0x8 PUSH1 0x20 MSTORE PUSH32 0x5EFF886EA0CE6CA488A3D6E336D6C0F75F46D19B42C06CE5EE98E42C96D256C7 SLOAD PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 SWAP1 SWAP3 KECCAK256 SLOAD DUP2 AND SWAP2 AND PUSH2 0x3C95 JUMP JUMPDEST PUSH2 0x568E PUSH2 0x5689 DUP5 PUSH2 0x4755 JUMP JUMPDEST PUSH2 0x3E4D JUMP JUMPDEST POP POP PUSH2 0x5642 JUMP JUMPDEST PUSH2 0xAE1 SWAP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 SWAP1 DUP2 SWAP1 DUP4 ISZERO PUSH2 0x56ED JUMPI JUMPDEST AND SWAP2 DUP3 ISZERO PUSH2 0x56DA JUMPI JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE DUP1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 PUSH2 0x3C95 JUMP JUMPDEST PUSH2 0x56E6 PUSH2 0x5689 DUP6 PUSH2 0x4755 JUMP JUMPDEST POP POP PUSH2 0x56B9 JUMP JUMPDEST PUSH2 0x56F9 PUSH2 0x5628 DUP7 PUSH2 0x4755 JUMP JUMPDEST POP POP PUSH2 0x56B0 JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x73E JUMPI MLOAD DUP1 ISZERO ISZERO DUP2 SUB PUSH2 0x73E JUMPI SWAP1 JUMP JUMPDEST PUSH2 0x5721 DUP2 PUSH2 0x582A JUMP JUMPDEST SWAP1 PUSH2 0x572B DUP3 PUSH2 0x1459 JUMP JUMPDEST PUSH1 0x5 DUP3 SUB PUSH2 0x5826 JUMPI PUSH2 0x5748 SWAP2 POP PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x13 SLOAD PUSH2 0x575E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xDC4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2C258A9F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP4 DUP2 PUSH1 0x24 DUP2 DUP6 GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x5809 JUMPI JUMPDEST POP ISZERO PUSH2 0x579C JUMPI POP POP POP PUSH1 0x5 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2AB0F529 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP3 SWAP1 DUP3 SWAP1 PUSH1 0x24 SWAP1 DUP3 SWAP1 GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x57DC JUMPI JUMPDEST POP POP ISZERO PUSH2 0x57D7 JUMPI PUSH1 0x7 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST PUSH2 0x57FB SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0x5802 JUMPI JUMPDEST PUSH2 0x57F3 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x5700 JUMP JUMPDEST CODESIZE DUP1 PUSH2 0x57CB JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0x57E9 JUMP JUMPDEST PUSH2 0x5820 SWAP2 POP DUP5 RETURNDATASIZE DUP7 GT PUSH2 0x5802 JUMPI PUSH2 0x57F3 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST CODESIZE PUSH2 0x578E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x583E DUP2 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xFF DUP2 PUSH1 0xF0 SHR AND PUSH2 0x5936 JUMPI PUSH1 0xF8 SHR PUSH2 0x5930 JUMPI PUSH2 0x586B PUSH2 0x3686 PUSH2 0x331E DUP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5917 JUMPI PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP1 SWAP2 LT ISZERO PUSH2 0x5910 JUMPI PUSH2 0x588B DUP3 PUSH2 0x301F JUMP JUMPDEST LT PUSH2 0x5896 JUMPI POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x58A2 PUSH2 0x1230 DUP3 PUSH2 0x593D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x58EB JUMPI JUMPDEST ISZERO PUSH2 0x58B4 JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST PUSH2 0x3686 PUSH1 0x1 PUSH2 0x58D0 PUSH2 0x58DD SWAP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST ADD SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH2 0x58E6 JUMPI PUSH1 0x4 SWAP1 JUMP JUMPDEST PUSH1 0x5 SWAP1 JUMP JUMPDEST POP PUSH2 0x590B PUSH2 0x1230 DUP3 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD SWAP1 SLOAD LT SWAP1 JUMP JUMPDEST PUSH2 0x58A9 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6AD06075 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST POP PUSH1 0x2 SWAP1 JUMP JUMPDEST POP POP PUSH1 0x7 SWAP1 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0xC PUSH1 0x20 MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0xA0 SHR AND PUSH1 0x40 MLOAD SWAP1 PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP3 MSTORE DUP1 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xF85 JUMPI PUSH2 0x59DA SWAP3 PUSH1 0x64 SWAP3 PUSH2 0x59C8 SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x2E83 JUMPI POP PUSH2 0x2E6B SWAP1 PUSH2 0x3ACD JUMP JUMPDEST DIV SWAP2 PUSH1 0x2 PUSH1 0x1 DUP3 ADD SLOAD SWAP2 ADD SLOAD SWAP1 PUSH2 0x31A3 JUMP JUMPDEST LT ISZERO SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x59EB SWAP4 SWAP3 SWAP2 PUSH2 0x2FA5 JUMP JUMPDEST PUSH2 0x59F4 DUP2 PUSH2 0x5718 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x3B PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x5AF3 JUMPI POP PUSH2 0x5A39 PUSH2 0x5A24 DUP3 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB AND PUSH1 0x1 PUSH1 0xF8 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x789CF55BE980739DAD1D0699B93B58E806B51C9D96619BFA8FE0A28ABAA7B30C SWAP1 PUSH1 0x20 SWAP1 LOG1 PUSH2 0x5A79 DUP2 PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD DUP1 PUSH2 0x5A83 JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH2 0x5A98 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xDC4 JUMP JUMPDEST DUP1 EXTCODESIZE ISZERO PUSH2 0x73E JUMPI PUSH1 0x40 MLOAD PUSH4 0xC4D252F5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP1 DUP3 SWAP1 PUSH1 0x24 SWAP1 DUP3 SWAP1 DUP5 SWAP1 GAS CALL DUP1 ISZERO PUSH2 0xF85 JUMPI PUSH2 0x5AE0 JUMPI JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE SWAP1 JUMP JUMPDEST DUP1 PUSH2 0xF79 PUSH2 0x5AED SWAP3 PUSH2 0x4F8 JUMP JUMPDEST CODESIZE PUSH2 0x5ACD JUMP JUMPDEST SWAP1 PUSH2 0x5B17 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x3B PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP5 SWAP4 SWAP3 PUSH2 0x5B4C PUSH1 0x80 SWAP4 PUSH2 0x5B3E PUSH2 0x5B5A SWAP5 PUSH1 0xA0 DUP11 MSTORE PUSH1 0xA0 DUP11 ADD SWAP1 PUSH2 0x2F13 JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x20 DUP11 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x2F50 JUMP JUMPDEST SWAP4 PUSH1 0x0 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x5B95 PUSH1 0xA0 SWAP5 PUSH2 0x5B87 PUSH2 0x5BA3 SWAP5 SWAP10 SWAP9 SWAP8 SWAP10 PUSH1 0xC0 DUP8 MSTORE PUSH1 0xC0 DUP8 ADD SWAP1 PUSH2 0x2F13 JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST SWAP1 DUP4 DUP3 SUB PUSH1 0x40 DUP6 ADD MSTORE PUSH2 0x2F50 JUMP JUMPDEST SWAP5 PUSH1 0x0 PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SWAP3 SWAP1 SWAP4 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x13 SLOAD AND SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x73E JUMPI PUSH1 0x0 SWAP4 PUSH2 0x5C03 PUSH1 0x40 MLOAD SWAP8 DUP9 SWAP6 DUP7 SWAP5 DUP6 SWAP5 PUSH4 0xE38335E5 PUSH1 0xE0 SHL DUP7 MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT ADDRESS PUSH1 0x60 SHL AND XOR SWAP3 PUSH1 0x4 DUP7 ADD PUSH2 0x5B20 JUMP JUMPDEST SUB SWAP2 CALLVALUE SWAP1 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x3FC7 SWAP3 PUSH2 0x5C2D JUMPI JUMPDEST POP PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x5C36 SWAP1 PUSH2 0x4F8 JUMP JUMPDEST CODESIZE PUSH2 0x5C1C JUMP INVALID 0xBB DUP11 PUSH11 0x4669BA250D26CD7A459ECA SWAP14 0x21 PUSH0 DUP4 SMOD 0xE3 GASPRICE 0xEB 0xE5 SUB PUSH26 0xBC5A3617EC3444C65A7BB8D6351C1CF70C95A316CC6A92839C98 PUSH7 0x82D98BC35F958F BASEFEE DUP4 0xF9 0xD2 0xA8 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x26 0x27 0xBE 0xFB NUMBER DUP9 SWAP11 0xC8 DUP3 CODECOPY 0x2B 0xE1 PUSH7 0xD232B6CF88EF98 PUSH23 0x54F0F10B333640CB78EBE464736F6C63430008140033BB DUP11 PUSH11 0x4669BA250D26CD7A459ECA SWAP14 0x21 PUSH0 DUP4 SMOD 0xE3 GASPRICE 0xEB 0xE5 SUB PUSH26 0xBC5A3617EC34443AD8AA4F87544323A9D1E5DD902F40C356527A PUSH26 0x55687113DB5F9A85AD579DC10553476BF02EF2726E8CE5CED78D PUSH4 0xE26E602E 0x4A 0x22 JUMPI 0xB1 CREATE2 MSIZE COINBASE DUP15 0x24 0xB4 PUSH4 0x39970000 ","sourceMap":"782:8552:46:-:0;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;:::o;:::-;;:::i;:::-;;;;;-1:-1:-1;;782:8552:46;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;:::o;:::-;;;;2893:24;782:8552;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;:::o;:::-;;;;;;;;-1:-1:-1;;782:8552:46;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;782:8552:46;;;;;;:::o;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;:::o;:::-;;;1667:13:20;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;:::o;:::-;;;1690:17:20;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;3615:13:2;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;3432:13:35;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;3432:13:35;782:8552:46;;;;;;;;;3432:13:35;782:8552:46;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;3501:16:35;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;3117:407;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;1690:17:20;782:8552:46;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690:17:20;782:8552:46;:::o;:::-;;;;-1:-1:-1;782:8552:46;;;;;1690:17:20;782:8552:46;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690:17:20;782:8552:46;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;3615:13:2;782:8552:46;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3615:13:2;782:8552:46;:::o;:::-;;;;-1:-1:-1;782:8552:46;;;;;3615:13:2;782:8552:46;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3615:13:2;782:8552:46;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:8552:46;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:8552:46;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:8552:46;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;;;-1:-1:-1;;;;;;;;;;;782:8552:46;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;-1:-1:-1;;;;;;;;;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;3117:407;782:8552;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3117:407;782:8552;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;;3117:407;782:8552;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3117:407;782:8552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;782:8552:46;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46:o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;2671:1261;;2955:23;;;782:8552;;;2852:18;;;;;;782:8552;;;;;;;;2872:19;;;;;;782:8552;;;;;;;;2893:24;;;;782:8552;2814:11;;2782:13;;;;;;;;3095:4;;782:8552;;;;;;;;2671:1261;;;;:::i;:::-;3155:11;;3188:13;;;3225:15;;;;;;;3267:18;;;;;;;3313:19;;;;782:8552;;;3353:12;782:8552;3353:12;;782:8552;;;3391:17;;;;;;3427:10;;;;782:8552;;;;;;:::i;:::-;;;;2782:13;3127:397;;782:8552;3225:15;3127:397;;782:8552;3267:18;3127:397;;782:8552;3313:19;3127:397;;782:8552;;3127:397;;782:8552;3391:17;3127:397;;782:8552;3427:10;3127:397;;782:8552;3470:15;3127:397;;;782:8552;3509:4;3127:397;;;782:8552;;;;:::i;:::-;;3534:42;782:8552;3619:11;3644:13;;3671:15;;3700:18;;782:8552;;;;3791:17;;782:8552;;;3225:15;782:8552;3095:4;;;;;;3591:334;;;;;:::i;:::-;;;;;2671:1261::o;1888:97:7:-;;;;;;;;;;;;782:8552:46;;;;;;:::i;:::-;;;;;-1:-1:-1;;;782:8552:46;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;1667:13:20;782:8552:46;;:::i;:::-;;:::i;:::-;;;;;;;;;;;1107:24:6;782:8552:46;;;1962:15:7;782:8552:46;;;;;1379:20:9;782:8552:46;;;;;;;1009:18:6;782:8552:46;1055:19:6;782:8552:46;-1:-1:-1;782:8552:46;;;;;;;;;;;1667:13:20;782:8552:46;;;;;1667:13:20;782:8552:46;;:::i;:::-;3401:45:35;;;:::i;:::-;3393:53;;3467:51;;;:::i;:::-;3456:62;;782:8552:46;;;;;3542:22:35;3528:36;;782:8552:46;;;;;3591:25:35;3574:42;;3644:13;3627:30;;3692:23;;:::i;:::-;3667:48;;3747:4;3725:27;;782:8552:46;:::i;:::-;1009:18:6;:::i;:::-;1055:19;:::i;:::-;1107:24;:::i;:::-;-1:-1:-1;;;;;782:8552:46;668:40:8;;1379:20:9;:::i;:::-;1962:15:7;:::i;782:8552:46:-;;;;-1:-1:-1;782:8552:46;;;;;1667:13:20;782:8552:46;;;;;;;;;-1:-1:-1;782:8552:46;-1:-1:-1;;782:8552:46;;;;;;;;;1962:15:7;782:8552:46;;1009:18:6;782:8552:46;;1379:20:9;782:8552:46;;;;;;1055:19:6;782:8552:46;;1107:24:6;782:8552:46;;;;;;;;;;;;;;;;;;1667:13:20;782:8552:46;;:::i;:::-;;;;;;;1667:13:20;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2721:170:6;2816:12;782:8552:46;2801:44:6;782:8552:46;;;;;;;;;;;;;;;;;;2801:44:6;-1:-1:-1;;782:8552:46;;2816:12:6;782:8552:46;2721:170:6:o;3011:274::-;782:8552:46;;;;3092:20:6;;;3088:88;;3190:47;782:8552:46;;;3206:13:6;782:8552:46;;;;;;;;;;;;;;;3190:47:6;782:8552:46;;;;;;;;3206:13:6;782:8552:46;3011:274:6:o;3088:88::-;782:8552:46;;-1:-1:-1;;;3135:30:6;;3111:1;3135:30;;;782:8552:46;;;3135:30:6;3415:213;3529:18;782:8552:46;;;;;;;;;;;;;3508:62:6;;;3529:18;782:8552:46;3415:213:6:o;6165:176:7:-;6268:9;782:8552:46;6245:56:7;782:8552:46;;;;;;;;;;;;;;;;;;;;;;6245:56:7;-1:-1:-1;;;;;;782:8552:46;;6268:9:7;782:8552:46;6165:176:7:o;3532:498:9:-;;2544:3;3674:32;;3670:132;;1586:23;782:8552:46;-1:-1:-1;;10446:63:43;:8;;;:63;-1:-1:-1;;;;;;;;;;;10446:63:43;;;-1:-1:-1;10446:63:43;8310:38;3906::9;;;:::i;:::-;782:8552:46;6633:12;782:8552;8310:38:43;:::i;:::-;-1:-1:-1;;782:8552:46;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;3961:62:9;3532:498::o;10446:63:43:-;782:8552:46;;;;;;;;;;14439:109:43;;1586:23:9;-1:-1:-1;;;;;;;;;;;14439:109:43;;;;;;782:8552:46;;;10446:63:43;;782:8552:46;-1:-1:-1;;;782:8552:46;;;;;;;;3670:132:9;782:8552:46;;-1:-1:-1;;;3729:62:9;;;;;782:8552:46;;;2544:3:9;782:8552:46;;;;;;3729:62:9;;;;;2887:340:31;;782:8552:46;;3032:2:31;3010:24;;;3006:215;3032:2;;;3057:20;;;;;;:::i;3006:215::-;-1:-1:-1;;;;;782:8552:46;;;;;;;3432:13:35;782:8552:46;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3432:13:35;782:8552:46;1390:66:31;3168:42;:::o;782:8552:46:-;;;;-1:-1:-1;782:8552:46;;;;;3432:13:35;782:8552:46;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3432:13:35;782:8552:46;1390:66:31;3168:42;:::o;782:8552:46:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2887:340:31;;782:8552:46;;3032:2:31;3010:24;;;3006:215;3032:2;;;3057:20;;;;;;:::i;3006:215::-;-1:-1:-1;;;;;782:8552:46;;;;;;;3501:16:35;782:8552:46;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3501:16:35;782:8552:46;1390:66:31;3168:42;:::o;782:8552:46:-;;;;-1:-1:-1;782:8552:46;;;;;3501:16:35;782:8552:46;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3501:16:35;782:8552:46;1390:66:31;3168:42;:::o;782:8552:46:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1708:286:31;1854:2;782:8552:46;;1840:16:31;1836:72;;782:8552:46;;;;;;;;;;;1949:36:31;1708:286;:::o;782:8552:46:-;;;;;;;;;;1949:36:31;1708:286;:::o;1836:72::-;782:8552:46;;-1:-1:-1;;;1879:18:31;;782:8552:46;1879:18:31;;;782:8552:46;;;;;;;;;;;:::i;4113:179:35:-;4226:11;782:8552:46;4239:14:35;782:8552:46;;;4204:80:35;;;;782:8552:46;2079:95:35;782:8552:46;;;2079:95:35;;782:8552:46;2079:95:35;;;782:8552:46;4255:13:35;2079:95;;;782:8552:46;4278:4:35;2079:95;;;782:8552:46;2079:95:35;4204:80;;2079:95;782:8552:46;;;;;;;;;;;;;;;;;;4194:91:35;;4113:179;:::o;4174:218:41:-;-1:-1:-1;;;;;782:8552:46;4254:25:41;;;4250:105;;782:8552:46;4174:218:41;:::o;4250:105::-;782:8552:46;;;;4302:42:41;;;;;;782:8552:46;4302:42:41;;;782:8552:46;;;;;4302:42:41;782:8552:46;-1:-1:-1;;782:8552:46;;;;;;;;:::o;:::-;;;;;;;;;;;;;1586:23:9;782:8552:46;;;;;;;;;;;;1586:23:9;782:8552:46;;;;;;1586:23:9;-1:-1:-1;782:8552:46;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;-1:-1:-1;;;;;;;;;;;782:8552:46;;;;:::o;:::-;;;;-1:-1:-1;782:8552:46;;;;;-1:-1:-1;782:8552:46;11657:922:43;1586:23:9;782:8552:46;11657:922:43;;;11864:7;;;;11936;11916:28;11936:7;;:::i;:::-;1586:23:9;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;;14289:265;11916:28;782:8552:46;;;;;;;;;;;;12103:13:43;;;12099:89;;12251:14;;;;;12285:19;;;782:8552:46;;;;;;;;;;;;;;;;;12285:19:43;782:8552:46;;12423:25:43;;:::o;12247:163::-;782:8552:46;;12343:52:43;782:8552:46;12353:41:43;782:8552:46;;:::i;:::-;;;;;;;;12353:41:43;-1:-1:-1;;;;;782:8552:46;;12353:41:43;;;782:8552:46;12343:52:43;:::i;:::-;12247:163;;12099:89;782:8552:46;;-1:-1:-1;;;12143:30:43;;;;;11860:713;782:8552:46;12479:52:43;782:8552:46;12489:41:43;782:8552:46;;:::i;12489:41:43:-;-1:-1:-1;;;;;782:8552:46;;12489:41:43;;;782:8552:46;12343:52:43;:::i;12479:::-;11870:1;12545:17;;:::o"},"deployedBytecode":{"functionDebugData":{"abi_decode":{"entryPoint":1969,"id":null,"parameterSlots":2,"returnSlots":0},"abi_decode_array_address_dyn":{"entryPoint":3044,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_array_address_dynt_array_uint256_dynt_array_bytes_dynt_bytes32":{"entryPoint":3370,"id":null,"parameterSlots":1,"returnSlots":4},"abi_decode_array_bytes_dyn":{"entryPoint":3242,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_array_uint256_dyn":{"entryPoint":3148,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_available_length_bytes":{"entryPoint":2814,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_bool_fromMemory":{"entryPoint":22272,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_bytes":{"entryPoint":2869,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_string_calldata":{"entryPoint":6003,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint256_fromMemory":{"entryPoint":14862,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint32":{"entryPoint":10249,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_uint8":{"entryPoint":5844,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_uint8_27008":{"entryPoint":5828,"id":null,"parameterSlots":0,"returnSlots":1},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_address_uint256":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_address_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_array_address_dyn":{"entryPoint":12051,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_array_address_dyn_array_uint256_dyn":{"entryPoint":20523,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_array_address_dyn_array_uint256_dyn_array_bytes_dyn_rational_by_bytes32":{"entryPoint":23328,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_array_address_dyn_array_uint256_dyn_array_bytes_dyn_rational_by_bytes32_uint256":{"entryPoint":23398,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_array_bytes_dyn":{"entryPoint":12112,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_array_uint256_dyn":{"entryPoint":7202,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes":{"entryPoint":1465,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes4":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes4_26977":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes4_27061":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes_uint256_uint256_address_bool_uint256_uint256":{"entryPoint":1529,"id":null,"parameterSlots":8,"returnSlots":1},"abi_encode_enum_ProposalState":{"entryPoint":5224,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_packed_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":2191,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_storage":{"entryPoint":10908,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_storage_27068":{"entryPoint":11072,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_storage_27069":{"entryPoint":11207,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_string_string_string_uint256_uint256_uint256_uint256_bool":{"entryPoint":11342,"id":null,"parameterSlots":10,"returnSlots":1},"abi_encode_struct_Checkpoint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_uint256_address_array_address_dyn_array_uint256_dyn_array_string_dyn_array_bytes_dyn_uint256_uint256_string":{"entryPoint":12794,"id":null,"parameterSlots":10,"returnSlots":1},"abi_encode_uint256_address_bytes":{"entryPoint":21751,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_uint256_address_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_uint256_enum_ProposalState_bytes32":{"entryPoint":12661,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256_45333":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_uint256_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_uint256_uint48":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint8_uint256_string":{"entryPoint":13841,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_uint256_uint8_uint256_string_bytes":{"entryPoint":13783,"id":null,"parameterSlots":6,"returnSlots":1},"allocate_and_zero_memory_array_array_bytes_dyn":{"entryPoint":20923,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_and_zero_memory_array_array_string_dyn":{"entryPoint":12720,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_and_zero_memory_struct_struct_Checkpoint208":{"entryPoint":16330,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory":{"entryPoint":2740,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_27194":{"entryPoint":2772,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_array_string":{"entryPoint":12032,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_array_address_dyn":{"entryPoint":3021,"id":null,"parameterSlots":1,"returnSlots":1},"array_allocation_size_bytes":{"entryPoint":2787,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_bytes_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"array_push_from_bytes_to_array_bytes_storage_dyn_ptr":{"entryPoint":21994,"id":null,"parameterSlots":2,"returnSlots":0},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr":{"entryPoint":19183,"id":null,"parameterSlots":2,"returnSlots":0},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr_45330":{"entryPoint":18957,"id":null,"parameterSlots":1,"returnSlots":0},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr_55398":{"entryPoint":19087,"id":null,"parameterSlots":1,"returnSlots":0},"checked_add_uint256":{"entryPoint":12707,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_uint256_27149":{"entryPoint":12693,"id":null,"parameterSlots":1,"returnSlots":1},"checked_mul_uint256":{"entryPoint":16527,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_uint256_27150":{"entryPoint":16483,"id":null,"parameterSlots":1,"returnSlots":1},"checked_mul_uint256_27154":{"entryPoint":16505,"id":null,"parameterSlots":1,"returnSlots":1},"checked_sub_uint256":{"entryPoint":15014,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_bytes_storage":{"entryPoint":20965,"id":null,"parameterSlots":3,"returnSlots":0},"cleanup_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_from_storage_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_uint48":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"clear_storage_range_bytes1":{"entryPoint":20942,"id":null,"parameterSlots":2,"returnSlots":0},"convert_bytes32_to_bytes1":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"copy_array_to_storage_from_array_bytes_dyn_to_array_bytes_dyn":{"entryPoint":21361,"id":null,"parameterSlots":2,"returnSlots":0},"copy_array_to_storage_from_array_uint256_dyn_to_array_uint256_dyn":{"entryPoint":21240,"id":null,"parameterSlots":2,"returnSlots":0},"copy_byte_array_to_storage_from_bytes_to_bytes":{"entryPoint":21034,"id":null,"parameterSlots":2,"returnSlots":0},"copy_struct_to_storage_from_struct_Proposal_to_struct_Proposal":{"entryPoint":21587,"id":null,"parameterSlots":2,"returnSlots":0},"external_fun_BALLOT_TYPEHASH":{"entryPoint":10190,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_CLOCK_MODE":{"entryPoint":5561,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_COUNTING_MODE":{"entryPoint":9997,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_EXTENDED_BALLOT_TYPEHASH":{"entryPoint":4826,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_allowance":{"entryPoint":10091,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_approve":{"entryPoint":2453,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_balanceOf":{"entryPoint":6438,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_cancel":{"entryPoint":5371,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVote":{"entryPoint":5860,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteBySig":{"entryPoint":7663,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteWithReason":{"entryPoint":6612,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteWithReasonAndParams":{"entryPoint":6222,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteWithReasonAndParamsBySig":{"entryPoint":6048,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_checkpoints":{"entryPoint":10618,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_clock":{"entryPoint":7943,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_createProposal":{"entryPoint":9644,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_decimals":{"entryPoint":4885,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_delegate":{"entryPoint":6184,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_delegateBySig":{"entryPoint":9411,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_delegates":{"entryPoint":5940,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_distributeInitialTokens":{"entryPoint":6894,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_dleInfo":{"entryPoint":11453,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_eip712Domain":{"entryPoint":7254,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_execute":{"entryPoint":4406,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getPastTotalSupply":{"entryPoint":7456,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getPastVotes":{"entryPoint":4951,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getVotes":{"entryPoint":10435,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getVotesWithParams":{"entryPoint":8173,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getVotes_4892":{"entryPoint":8400,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_hasVoted":{"entryPoint":5282,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_hashProposal":{"entryPoint":9616,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_installModule":{"entryPoint":4084,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_name":{"entryPoint":2211,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_nonces":{"entryPoint":6833,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_numCheckpoints":{"entryPoint":6363,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_onERC1155BatchReceived":{"entryPoint":9113,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_onERC1155Received":{"entryPoint":10801,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_onERC721Received":{"entryPoint":2896,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalCounter":{"entryPoint":2659,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalDeadline":{"entryPoint":9273,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalEta":{"entryPoint":9028,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalNeedsQueuing":{"entryPoint":8686,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalProposer":{"entryPoint":2688,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalSnapshot":{"entryPoint":4771,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalThreshold":{"entryPoint":9083,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalVotes":{"entryPoint":5685,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposals":{"entryPoint":1600,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_propose":{"entryPoint":6697,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_queue":{"entryPoint":3468,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorum":{"entryPoint":11757,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumDenominator":{"entryPoint":8145,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumNumerator":{"entryPoint":6333,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumNumerator_4535":{"entryPoint":8482,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumPercentage":{"entryPoint":5655,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_relay":{"entryPoint":9303,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_setProposalThreshold":{"entryPoint":10533,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_setVotingDelay":{"entryPoint":6499,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_setVotingPeriod":{"entryPoint":10268,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_signProposal":{"entryPoint":8714,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_state":{"entryPoint":5237,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_supportsInterface":{"entryPoint":1859,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_symbol":{"entryPoint":7978,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_timelock":{"entryPoint":9956,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_token":{"entryPoint":11943,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_totalSupply":{"entryPoint":4054,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_transfer":{"entryPoint":8633,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_transferFrom":{"entryPoint":4221,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_updateQuorumNumerator":{"entryPoint":2019,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_updateTimelock":{"entryPoint":8517,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_version":{"entryPoint":5762,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_votingDelay":{"entryPoint":4913,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_votingPeriod":{"entryPoint":1980,"id":null,"parameterSlots":0,"returnSlots":0},"extract_byte_array_length":{"entryPoint":1192,"id":null,"parameterSlots":1,"returnSlots":1},"extract_from_storage_value_offsett_address":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"extract_returndata":{"entryPoint":14166,"id":null,"parameterSlots":0,"returnSlots":1},"finalize_allocation":{"entryPoint":1432,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_26983":{"entryPoint":1272,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_27058":{"entryPoint":1296,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_45307":{"entryPoint":1323,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_45310":{"entryPoint":1350,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_45311":{"entryPoint":1377,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_45316":{"entryPoint":1404,"id":null,"parameterSlots":1,"returnSlots":0},"fun":{"entryPoint":12012,"id":519,"parameterSlots":0,"returnSlots":0},"fun__castVote":{"entryPoint":13879,"id":1817,"parameterSlots":5,"returnSlots":1},"fun_approve":{"entryPoint":16272,"id":6098,"parameterSlots":3,"returnSlots":0},"fun_balanceOf":{"entryPoint":null,"id":5733,"parameterSlots":1,"returnSlots":1},"fun_cancel":{"entryPoint":23007,"id":4297,"parameterSlots":4,"returnSlots":1},"fun_castVote":{"entryPoint":13755,"id":1742,"parameterSlots":4,"returnSlots":1},"fun_castVoteWithReasonAndParamsBySig":{"entryPoint":13509,"id":1718,"parameterSlots":7,"returnSlots":1},"fun_checkGovernance":{"entryPoint":14214,"id":829,"parameterSlots":0,"returnSlots":0},"fun_clear":{"entryPoint":null,"id":14608,"parameterSlots":0,"returnSlots":0},"fun_countVote":{"entryPoint":14627,"id":3839,"parameterSlots":4,"returnSlots":1},"fun_delegate":{"entryPoint":15382,"id":5061,"parameterSlots":2,"returnSlots":0},"fun_domainSeparatorV4":{"entryPoint":17328,"id":8872,"parameterSlots":0,"returnSlots":1},"fun_empty":{"entryPoint":null,"id":14644,"parameterSlots":0,"returnSlots":1},"fun_executeOperations":{"entryPoint":23476,"id":4244,"parameterSlots":5,"returnSlots":0},"fun_getVotes":{"entryPoint":14889,"id":4481,"parameterSlots":2,"returnSlots":1},"fun_hashProposal":{"entryPoint":12197,"id":599,"parameterSlots":4,"returnSlots":1},"fun_hashTypedDataV4":{"entryPoint":17290,"id":8909,"parameterSlots":1,"returnSlots":1},"fun_insert":{"entryPoint":19673,"id":13646,"parameterSlots":3,"returnSlots":2},"fun_insert_26971":{"entryPoint":19257,"id":13646,"parameterSlots":2,"returnSlots":2},"fun_insert_45320":{"entryPoint":19490,"id":13646,"parameterSlots":2,"returnSlots":2},"fun_isValidDescriptionForProposer":{"entryPoint":14523,"id":2089,"parameterSlots":2,"returnSlots":1},"fun_isValidSignatureNow":{"entryPoint":18039,"id":9105,"parameterSlots":3,"returnSlots":1},"fun_latest":{"entryPoint":18889,"id":13471,"parameterSlots":1,"returnSlots":1},"fun_latest_26970":{"entryPoint":18741,"id":13471,"parameterSlots":0,"returnSlots":1},"fun_latest_45319":{"entryPoint":18815,"id":13471,"parameterSlots":0,"returnSlots":1},"fun_mint":{"entryPoint":20560,"id":5987,"parameterSlots":2,"returnSlots":0},"fun_moveDelegateVotes":{"entryPoint":15509,"id":5194,"parameterSlots":3,"returnSlots":0},"fun_onERC1155BatchReceived":{"entryPoint":14330,"id":1959,"parameterSlots":0,"returnSlots":1},"fun_popFront":{"entryPoint":20259,"id":14494,"parameterSlots":0,"returnSlots":1},"fun_proposalDeadline":{"entryPoint":12319,"id":750,"parameterSlots":1,"returnSlots":1},"fun_propose":{"entryPoint":13000,"id":1105,"parameterSlots":5,"returnSlots":1},"fun_propose_962":{"entryPoint":12369,"id":962,"parameterSlots":4,"returnSlots":1},"fun_push":{"entryPoint":15846,"id":5266,"parameterSlots":2,"returnSlots":2},"fun_pushBack":{"entryPoint":20168,"id":14351,"parameterSlots":1,"returnSlots":0},"fun_push_27263":{"entryPoint":15901,"id":5266,"parameterSlots":1,"returnSlots":2},"fun_push_27264":{"entryPoint":15949,"id":5266,"parameterSlots":1,"returnSlots":2},"fun_quorumNumerator":{"entryPoint":15053,"id":4587,"parameterSlots":1,"returnSlots":1},"fun_quorumReached":{"entryPoint":22845,"id":3722,"parameterSlots":1,"returnSlots":1},"fun_recover":{"entryPoint":16983,"id":8699,"parameterSlots":4,"returnSlots":1},"fun_sqrt":{"entryPoint":18442,"id":10179,"parameterSlots":1,"returnSlots":1},"fun_state":{"entryPoint":22296,"id":4116,"parameterSlots":1,"returnSlots":1},"fun_state_708":{"entryPoint":22570,"id":708,"parameterSlots":1,"returnSlots":1},"fun_throwError":{"entryPoint":17149,"id":8748,"parameterSlots":2,"returnSlots":0},"fun_toStringWithFallback":{"entryPoint":17853,"id":7045,"parameterSlots":1,"returnSlots":1},"fun_toStringWithFallback_27017":{"entryPoint":17604,"id":7045,"parameterSlots":1,"returnSlots":1},"fun_toUint208":{"entryPoint":18261,"id":10995,"parameterSlots":1,"returnSlots":1},"fun_toUint32":{"entryPoint":18362,"id":11611,"parameterSlots":1,"returnSlots":1},"fun_toUint48":{"entryPoint":18312,"id":11555,"parameterSlots":1,"returnSlots":1},"fun_transfer":{"entryPoint":15998,"id":5877,"parameterSlots":3,"returnSlots":0},"fun_transferVotingUnits":{"entryPoint":22165,"id":5116,"parameterSlots":3,"returnSlots":0},"fun_transferVotingUnits_27209":{"entryPoint":22039,"id":5116,"parameterSlots":2,"returnSlots":0},"fun_tryParseAddress":{"entryPoint":16546,"id":8328,"parameterSlots":3,"returnSlots":2},"fun_tryParseChr":{"entryPoint":16869,"id":8388,"parameterSlots":1,"returnSlots":1},"fun_tryParseHexUintUncheckedBounds":{"entryPoint":16692,"id":8153,"parameterSlots":3,"returnSlots":2},"fun_tryRecover":{"entryPoint":18201,"id":8475,"parameterSlots":2,"returnSlots":3},"fun_tryRecover_8663":{"entryPoint":17007,"id":8663,"parameterSlots":4,"returnSlots":3},"fun_unsafeAccess":{"entryPoint":null,"id":13765,"parameterSlots":2,"returnSlots":1},"fun_unsafeAccess_45331":{"entryPoint":null,"id":13765,"parameterSlots":1,"returnSlots":1},"fun_unsafeAccess_55399":{"entryPoint":null,"id":13765,"parameterSlots":1,"returnSlots":1},"fun_upperBinaryLookup":{"entryPoint":20071,"id":13698,"parameterSlots":4,"returnSlots":1},"fun_upperBinaryLookup_45309":{"entryPoint":19861,"id":13698,"parameterSlots":3,"returnSlots":1},"fun_upperBinaryLookup_45318":{"entryPoint":19966,"id":13698,"parameterSlots":3,"returnSlots":1},"fun_useCheckedNonce":{"entryPoint":16396,"id":6807,"parameterSlots":2,"returnSlots":0},"fun_useNonce":{"entryPoint":null,"id":6782,"parameterSlots":1,"returnSlots":1},"fun_validateStateBitmap":{"entryPoint":14359,"id":2018,"parameterSlots":1,"returnSlots":1},"fun_validateStateBitmap_45304":{"entryPoint":14441,"id":2018,"parameterSlots":1,"returnSlots":1},"fun_validateTimepoint":{"entryPoint":15325,"id":4877,"parameterSlots":1,"returnSlots":1},"fun_verifyCallResult":{"entryPoint":16355,"id":6667,"parameterSlots":2,"returnSlots":1},"fun_voteSucceeded":{"entryPoint":null,"id":3745,"parameterSlots":1,"returnSlots":1},"increment_uint256":{"entryPoint":13447,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_bool_of_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"mapping_index_access_mapping_address_bool_of_address_27033":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_bool_of_address_27130":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_bool_of_address_27144":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_Proposal_storage_of_uint256":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_Proposal_storage_of_uint256_26984":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_Proposal_storage_of_uint256_27032":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_Proposal_storage_of_uint256_27104":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"memory_array_index_access_address_dyn":{"entryPoint":13484,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x00":{"entryPoint":18935,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x11":{"entryPoint":12297,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":5187,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":13462,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":1250,"id":null,"parameterSlots":0,"returnSlots":0},"read_from_memoryt_address":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"read_from_storage_split_offset_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"read_from_storage_split_offset_t_uint48":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"read_from_storage_split_offset_uint48":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"require_helper_stringliteral":{"entryPoint":20860,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_01a7":{"entryPoint":21867,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_0fa5":{"entryPoint":20794,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_2707":{"entryPoint":21791,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_37e2":{"entryPoint":21930,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_499f":{"entryPoint":20465,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_535d":{"entryPoint":20406,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_920f":{"entryPoint":20347,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_cd09":{"entryPoint":20732,"id":null,"parameterSlots":1,"returnSlots":0},"revert_forward":{"entryPoint":14877,"id":null,"parameterSlots":0,"returnSlots":0},"shift_right_uint256_uint8":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"storage_array_index_access_struct_Checkpoint208_dyn":{"entryPoint":15029,"id":null,"parameterSlots":2,"returnSlots":2},"transit_byte_array_long_to_short_bytes_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offset_0t_bool_to_bool":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_address_to_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_bool_to_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_bool_to_bool_27283":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_bool_to_t_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_uint208_to_uint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_uint256_to_uint256":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_uint256_to_uint256_27046":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_uint32_to_uint32":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_uint48_to_t_uint48":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_uint48_to_uint48":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"validator_assert_enum_ProposalState":{"entryPoint":5209,"id":null,"parameterSlots":1,"returnSlots":0},"validator_assert_enum_RecoverError":{"entryPoint":17139,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_address":{"entryPoint":2436,"id":null,"parameterSlots":1,"returnSlots":0},"wrapping_div_uint256":{"entryPoint":18410,"id":null,"parameterSlots":2,"returnSlots":1},"wrapping_div_uint256_27048":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"write_to_memory_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"write_to_memory_uint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"write_to_memory_uint48":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0}},"generatedSources":[],"immutableReferences":{"4384":[{"length":32,"start":8293},{"length":32,"start":11805},{"length":32,"start":11965},{"length":32,"start":12497},{"length":32,"start":14938},{"length":32,"start":22915}],"8770":[{"length":32,"start":17385}],"8772":[{"length":32,"start":17566}],"8774":[{"length":32,"start":17331}],"8776":[{"length":32,"start":17464}],"8778":[{"length":32,"start":17502}],"8781":[{"length":32,"start":7279}],"8784":[{"length":32,"start":7323}]},"linkReferences":{},"object":"60806040526004361015610023575b361561001957600080fd5b610021612eec565b005b60003560e01c8063013cf08b146104a357806301ffc9a71461049e57806302a251a31461049957806306f3f9e61461049457806306fdde031461048f578063095ea7b31461048a5780630c0512e914610485578063143489d014610480578063150b7a021461047b578063160cbed71461047657806318160ddd14610471578063194a94fc1461046c57806323b872dd146104675780632656227d146104625780632d63f6931461045d5780632fe3e26114610458578063313ce567146104535780633932abb11461044e5780633a46b1a8146104495780633e4f49e614610444578063438596321461043f578063452115d61461043a5780634bf5d7e9146104355780634fa76ec914610430578063544ffc9c1461042b57806354fd4d50146104265780635678138814610421578063587cde1e1461041c5780635b8d0e0d146104175780635c19a95c146104125780635f398a141461040d57806360c4247f146104085780636fcfff451461040357806370a08231146103fe57806379051887146103f95780637b3c71d3146103f45780637d5e81e2146103ef5780637ecebe00146103ea578063824e83e1146103e557806384b0196e146103e05780638e539e8c146103db5780638ff262e3146103d657806391ddadf4146103d157806395d89b41146103cc57806397c3d334146103c75780639a802a6d146103c25780639ab24eb0146103bd578063a7713a70146103b8578063a890c910146103b3578063a9059cbb146103ae578063a9a95294146103a9578063ab273016146103a4578063ab58fb8e1461039f578063b58131b01461039a578063bc197c8114610395578063c01f9e3714610390578063c28bc2fa1461038b578063c3cda52014610386578063c59057e414610381578063d1fad4cd1461037c578063d33219b414610377578063dd4e2ba514610372578063dd62ed3e1461036d578063deaaa7cc14610368578063e540d01d14610363578063eb9019d41461035e578063ece40cc114610359578063f1127ed814610354578063f23a6e611461034f578063f2c26a471461034a578063f8ce560a146103455763fc0c546a0361000e57612ea7565b612ded565b612cbd565b612a31565b61297a565b612925565b6128c3565b61281c565b6127ce565b61276b565b61270d565b6126e4565b6125ac565b612590565b6124c3565b612457565b612439565b612399565b61237b565b612344565b61220a565b6121ee565b6121b9565b612145565b612122565b6120d0565b611fed565b611fd1565b611f2a565b611f07565b611def565b611d20565b611c56565b611aee565b611ab1565b611a29565b6119d4565b611963565b611926565b6118db565b6118bd565b61184e565b611828565b6117a0565b611734565b6116e4565b611682565b611635565b611617565b6115b9565b6114fb565b6114a2565b611475565b611357565b611331565b611315565b6112da565b6112a3565b611136565b61107d565b610ff4565b610fd6565b610d8c565b610b50565b610a80565b610a63565b610995565b6108a3565b6107e3565b6107bc565b610743565b610640565b90600182811c921680156104d8575b60208310146104c257565b634e487b7160e01b600052602260045260246000fd5b91607f16916104b7565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161050b57604052565b6104e2565b604081019081106001600160401b0382111761050b57604052565b602081019081106001600160401b0382111761050b57604052565b60c081019081106001600160401b0382111761050b57604052565b60a081019081106001600160401b0382111761050b57604052565b61010081019081106001600160401b0382111761050b57604052565b90601f801991011681019081106001600160401b0382111761050b57604052565b919082519283825260005b8481106105e5575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016105c4565b93909261061560c096939998979460e0875260e08701906105b9565b602086019990995260408501526001600160a01b031660608401521515608083015260a08201520152565b3461073e5760208060031936011261073e5760006004358152601f82526040812091604051828193908554610674816104a8565b8085529160019180831690811561071c57506001146106df575b50505061069d92500382610598565b60028201546003830154600484015491936106db926001600160a01b0316600682015460ff16906008600784015493015493604051978897886105f9565b0390f35b87815285812095935091905b81831061070457505061069d935082010138808061068e565b855487840185015294850194869450918301916106eb565b9250505061069d94925060ff191682840152151560051b82010138808061068e565b600080fd5b3461073e57602036600319011261073e5760043563ffffffff60e01b811680910361073e576020906332a2ad4360e11b81149081156107a0575b811561078f575b506040519015158152f35b6301ffc9a760e01b14905038610784565b630271189760e51b8114915061077d565b600091031261073e57565b3461073e57600036600319011261073e57602063ffffffff60105460301c16604051908152f35b3461073e57602036600319011261073e576004356107ff613786565b60648111610870577f0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997906001600160d01b03610839614935565b1661085461084683614755565b65ffffffffffff4316614b39565b505060408051918252602082019290925290819081015b0390a1005b6044906040519063243e544560e01b8252600482015260646024820152fd5b9060206108a09281815201906105b9565b90565b3461073e57600080600319360112610981576040519080600b546108c6816104a8565b8085529160019180831690811561095757506001146108fc575b6106db856108f081870382610598565b6040519182918261088f565b9250600b83527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b82841061093f5750505081016020016108f0826106db6108e0565b80546020858701810191909152909301928101610924565b8695506106db969350602092506108f094915060ff191682840152151560051b82010192936108e0565b80fd5b6001600160a01b0381160361073e57565b3461073e57604036600319011261073e576004356109b281610984565b6024353315610a4a576001600160a01b038216918215610a315733600090815260016020526040902082916109f9915b9060018060a01b0316600052602052604060002090565b556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b604051634a1406b160e11b815260006004820152602490fd5b60405163e602df0560e01b815260006004820152602490fd5b3461073e57600036600319011261073e5760208054604051908152f35b3461073e57602036600319011261073e57600435600052600c602052602060018060a01b0360406000205416604051908152f35b6040519061012082018281106001600160401b0382111761050b57604052565b60405190610ae182610510565b565b6001600160401b03811161050b57601f01601f191660200190565b929192610b0a82610ae3565b91610b186040519384610598565b82948184528183011161073e578281602093846000960137010152565b9080601f8301121561073e578160206108a093359101610afe565b3461073e57608036600319011261073e57610b6c600435610984565b610b77602435610984565b6064356001600160401b03811161073e57610b96903690600401610b35565b506013546001600160a01b03163003610bbb57604051630a85bd0160e11b8152602090f35b604051637485328f60e11b8152600490fd5b6001600160401b03811161050b5760051b60200190565b81601f8201121561073e57803591610bfb83610bcd565b92610c096040519485610598565b808452602092838086019260051b82010192831161073e578301905b828210610c33575050505090565b8380918335610c4181610984565b815201910190610c25565b81601f8201121561073e57803591610c6383610bcd565b92610c716040519485610598565b808452602092838086019260051b82010192831161073e578301905b828210610c9b575050505090565b81358152908301908301610c8d565b9080601f8301121561073e57813590610cc282610bcd565b92610cd06040519485610598565b828452602092838086019160051b8301019280841161073e57848301915b848310610cfe5750505050505090565b82356001600160401b03811161073e578691610d1f84848094890101610b35565b815201920191610cee565b608060031982011261073e576001600160401b039160043583811161073e5782610d5691600401610be4565b9260243581811161073e5783610d6e91600401610c4c565b9260443591821161073e57610d8591600401610caa565b9060643590565b3461073e57610d9a36610d2a565b610da8818385879697612fa5565b92610db284613817565b50601354610dd0906001600160a01b03165b6001600160a01b031690565b9260409586519363793d064960e11b855260209081866004818a5afa958615610f8557600096610fb7575b506bffffffffffffffffffffffff193060601b161895818951809263b1c5f42760e01b82528180610e328c8a8a8d60048601615b20565b03915afa918215610f8557600092610f8a575b5050610e5b876000526014602052604060002090565b55601354610e71906001600160a01b0316610dc4565b90813b1561073e5760008094610e9d878b51998a97889687956308f2a0bb60e41b875260048701615b66565b03925af1908115610f8557610ec192610ebc92610f6c575b50426131a3565b614788565b65ffffffffffff811615610f5b57917f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda2892610f4a84610f2c6106db966001610f1288600052600c602052604060002090565b019065ffffffffffff1665ffffffffffff19825416179055565b835185815265ffffffffffff90911660208201529081906040820190565b0390a1519081529081906020820190565b8251634844252360e11b8152600490fd5b80610f79610f7f926104f8565b806107b1565b38610eb5565b613a1d565b610fa99250803d10610fb0575b610fa18183610598565b810190613a0e565b3880610e45565b503d610f97565b610fcf919650823d8411610fb057610fa18183610598565b9438610dfb565b3461073e57600036600319011261073e576020600254604051908152f35b3461073e57604036600319011261073e576004356001600160401b03811161073e576110686110487f5c84c0144a4e16e610c6c44c3571a58af67ce17b61280f57e6feeb2c363eaa60923690600401610b35565b60243561105481610984565b6040519283926040845260408401906105b9565b6001600160a01b0390911660208301520390a1005b3461073e57606036600319011261073e5760043561109a81610984565b6024356110a681610984565b6001600160a01b038216600090815260016020908152604080832033845290915290206044359190549260001984106110f0575b6110e49350613e7e565b60405160018152602090f35b82841061110c57611107836110e495033383613f90565b6110da565b604051637dc7a0d960e11b81523360048201526024810185905260448101849052606490fd5b0390fd5b61113f36610d2a565b61114d818385879597612fa5565b9261115784613869565b5061118261116f85600052600c602052604060002090565b805460ff60f01b1916600160f01b179055565b6013546001600160a01b03939084163003611239575b946111a892916106db9686615bb4565b6013543091166001600160a01b0316141580611214575b611205575b6040518181527f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f9080602081015b0390a16040519081529081906020820190565b61120f6000600d55565b6111c4565b50611234611230600d546001600160801b0381169060801c1490565b1590565b6111bf565b9290939160005b845181101561129957611275903061126b610dc461125e848a6134ac565b516001600160a01b031690565b1461127a57613487565b611240565b611294611287828a6134ac565b5160208151910120614ec8565b613487565b5091939092611198565b3461073e57602036600319011261073e57600435600052600c602052602065ffffffffffff60406000205460a01c16604051908152f35b3461073e57600036600319011261073e5760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b3461073e57600036600319011261073e57602060405160128152f35b3461073e57600036600319011261073e57602065ffffffffffff60105416604051908152f35b3461073e57604036600319011261073e5760043561137481610984565b6001600160a01b0316600090815260096020526040812090611397602435613bdd565b918054829381600581116113e9575b50906020946113b59284614e67565b806113cf5750505b6040516001600160d01b039091168152f35b916113db849293613aa6565b92815220015460301c6113bd565b946113f38661480a565b860395861161143e576020956113b59385875265ffffffffffff80838a8a200154169085161060001461142c5750915b919250946113a6565b92915061143890613195565b90611423565b613009565b634e487b7160e01b600052602160045260246000fd5b6008111561146357565b611443565b9060088210156114635752565b3461073e57602036600319011261073e576020611493600435615718565b6114a06040518092611468565bf35b3461073e57604036600319011261073e57602060ff6114ef6024356114c681610984565b6004356000526011845260036040600020019060018060a01b0316600052602052604060002090565b54166040519015158152f35b3461073e5761150936610d2a565b90611518828285879697612fa5565b61152181615718565b60088110156114635760018060ff83161b161561158c57506000908152600c60205260409020546001600160a01b03163303611574576106db93611564936159df565b6040519081529081906020820190565b60405163233d98e360e01b8152336004820152602490fd5b906115b0606492604051926331b75e4d60e01b845260048401526024830190611468565b60016044820152fd5b3461073e57600036600319011261073e576106db6040516115d981610510565b601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c7400000060208201526040519182916020835260208301906105b9565b3461073e57600036600319011261073e576020602154604051908152f35b3461073e57602036600319011261073e576004356000526011602052604060002080546106db60026001840154930154604051938493846040919493926060820195825260208201520152565b3461073e57600036600319011261073e576106db6040516116a281610510565b60018152603160f81b60208201526040519182916020835260208301906105b9565b6024359060ff8216820361073e57565b6064359060ff8216820361073e57565b3461073e57604036600319011261073e57602061172c6117026116c4565b60405161170e8161052b565b600081526040519161171f8361052b565b6000835233600435613637565b604051908152f35b3461073e57602036600319011261073e57602060043561175381610984565b60018060a01b038091166000526008825260406000205416604051908152f35b9181601f8401121561073e578235916001600160401b03831161073e576020838186019501011161073e57565b3461073e5760c036600319011261073e576117b96116c4565b604435906117c682610984565b6001600160401b039060643582811161073e576117e7903690600401611773565b60843584811161073e576117ff903690600401610b35565b9160a43594851161073e576106db9561181f611564963690600401610b35565b946004356134c5565b3461073e57602036600319011261073e5761002160043561184881610984565b33613c16565b3461073e57608036600319011261073e576118676116c4565b6001600160401b039060443582811161073e57611888903690600401611773565b909160643593841161073e576118b361172c936118ab6020963690600401610b35565b933691610afe565b9033600435613637565b3461073e57602036600319011261073e57602061172c600435613acd565b3461073e57602036600319011261073e576004356118f881610984565b60018060a01b0316600052600960205260206119186040600020546147ba565b63ffffffff60405191168152f35b3461073e57602036600319011261073e57602061172c60043561194881610984565b6001600160a01b031660009081526020819052604090205490565b3461073e57602036600319011261073e5760043565ffffffffffff80821680920361073e57611990613786565b7fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a9360406010549281519084168152846020820152a165ffffffffffff191617601055005b3461073e57606036600319011261073e576119ed6116c4565b6044356001600160401b03811161073e57602091611a1c611a1561172c933690600401611773565b3691610afe565b6040519161171f8361052b565b3461073e57608036600319011261073e576001600160401b0360043581811161073e57611a5a903690600401610be4565b9060243581811161073e57611a73903690600401610c4c565b9160443582811161073e57611a8c903690600401610caa565b60643592831161073e576106db93611aab611564943690600401610b35565b92613051565b3461073e57602036600319011261073e57600435611ace81610984565b60018060a01b031660005260076020526020604060002054604051908152f35b3461073e57604036600319011261073e576001600160401b0360043581811161073e57611b1f903690600401610be4565b9060243590811161073e57611b38903690600401610c4c565b8151815103611be457611b4d82511515614f7b565b60005b8251811015611bb25780611b77611b70610dc461125e611bad95886134ac565b1515614fb6565b611b8c611b8482856134ac565b511515614ff1565b611294611b9c61125e83876134ac565b611ba683866134ac565b5190615050565b611b50565b507f03be9b2a692d7f70f180696d23ab769875fec1b9ec86909e5e62e96e3d709cd09161086b6040519283928361502b565b60405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606490fd5b90815180825260208080930193019160005b828110611c42575050505090565b835185529381019392810192600101611c34565b3461073e57600036600319011261073e57611cf1611c937f00000000000000000000000000000000000000000000000000000000000000006144c4565b6106db611cbf7f00000000000000000000000000000000000000000000000000000000000000006145bd565b611cff60405191611ccf8361052b565b60008352604051958695600f60f81b875260e0602088015260e08701906105b9565b9085820360408701526105b9565b90466060850152306080850152600060a085015283820360c0850152611c22565b3461073e57602036600319011261073e57611d3c600435613bdd565b600a54906000829160058411611d94575b611d579350614d95565b600081611d6c57505060405160008152602090f35b600a611d79602093613aa6565b9152600080516020615c5d833981519152015460301c6113bd565b9192611d9f8161480a565b810390811161143e57611d5793600a835265ffffffffffff8083600080516020615c5d83398151915201541690851610600014611ddd575091611d4d565b929150611de990613195565b90611d4d565b3461073e57608036600319011261073e57600435611e0b6116c4565b9060443591611e1983610984565b6064356001600160401b03811161073e57611230611e3e611ecb923690600401610b35565b6001600160a01b0386166000908152600760205260409020805460018101909155611ec59060405160208101917ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7835288604083015260ff8816606083015260018060a01b038a16608083015260a082015260a08152611ebd81610546565b51902061438a565b86614677565b611ee65790611564916106db93611ee0612f00565b926135bb565b6040516394ab6c0760e01b81526001600160a01b0384166004820152602490fd5b3461073e57600036600319011261073e57602060405165ffffffffffff43168152f35b3461073e57600080600319360112610981576040519080600454611f4d816104a8565b808552916001918083169081156109575750600114611f76576106db856108f081870382610598565b9250600483527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410611fb95750505081016020016108f0826106db6108e0565b80546020858701810191909152909301928101611f9e565b3461073e57600036600319011261073e57602060405160648152f35b3461073e57606036600319011261073e5760043561200a81610984565b6044356001600160401b03811161073e576120619161202f6020923690600401610b35565b50604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610f85576106db916000916120b2575b506040519081529081906020820190565b6120ca915060203d8111610fb057610fa18183610598565b386120a1565b3461073e57602036600319011261073e576004356120ed81610984565b6001600160a01b031660009081526009602090815260409091206001600160d01b0390612119906149c9565b16604051908152f35b3461073e57600036600319011261073e5760206001600160d01b03612119614935565b3461073e57602036600319011261073e5760043561216281610984565b61216a613786565b6013547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617601355005b3461073e57604036600319011261073e576121e36004356121d981610984565b6024359033613e7e565b602060405160018152f35b3461073e57602036600319011261073e57602060405160018152f35b3461073e57602036600319011261073e5760043561223281600052601f602052604060002090565b600681019061224d612248611230845460ff1690565b61551f565b61225c6002820154421061556b565b336000908152602081905260409020612277905415156155aa565b6040513360601b6bffffffffffffffffffffffff191660208201526122b6906122ad81603481015b03601f198101835282610598565b600583016155ea565b600760088201916122c78354613487565b92839055604080518681523360208201529081018490527f9f1b808ccd95cfad6377948752267d2ad18cbd81217ec7abd183a497d47c81d190606090a10154111561230e57005b805460ff191660011790557f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f9061086b90611564565b3461073e57602036600319011261073e57600435600052600c602052602065ffffffffffff60016040600020015416604051908152f35b3461073e57600036600319011261073e576020600f54604051908152f35b3461073e5760a036600319011261073e576123b5600435610984565b6123c0602435610984565b6001600160401b0360443581811161073e576123e0903690600401610c4c565b5060643581811161073e576123f9903690600401610c4c565b5060843590811161073e57612412903690600401610b35565b506106db61241e6137fa565b6040516001600160e01b031990911681529081906020820190565b3461073e57602036600319011261073e57602061172c60043561301f565b606036600319011261073e5760043561246f81610984565b604435906001600160401b03821161073e5760008091612496610021943690600401611773565b9061249f613786565b81604051928392833781018481520391602435905af16124bd613756565b90613fe3565b3461073e5760c036600319011261073e576004356124e081610984565b604435906024356124ef6116d4565b8342116125775761256b61002194612572926040519060208201927fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845260018060a01b038816604084015286606084015260808301526080825261255382610561565b61256660a435936084359351902061438a565b614257565b918261400c565b613c16565b604051632341d78760e11b815260048101859052602490fd5b3461073e57602061172c6125a336610d2a565b92919091612fa5565b3461073e57608036600319011261073e576001600160401b0360043581811161073e576125dd903690600401610b35565b60243591821161073e577f2de0b4ad2878fff8e0328d13d59576e6595e750e974aec7069bd4e182d2d5aaf6111f261261c6106db943690600401610c4c565b926126d660443594612630835115156150fc565b61263c8151151561513a565b61264742871161517c565b6020549561265c61265788613487565b602055565b6126646151bb565b61267d6126766002546021549061408f565b6064900490565b91612686610ab4565b86815260208101949094526040840152606435606084015233608084015260a0830152600060c083015260e082015260006101008201526126d186600052601f602052604060002090565b615453565b6040519182913386846154f7565b3461073e57600036600319011261073e576013546040516001600160a01b039091168152602090f35b3461073e57600036600319011261073e576106db60405161272d81610510565b602081527f737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e60208201526040519182916020835260208301906105b9565b3461073e57604036600319011261073e5760206127c560043561278d81610984565b6024359061279a82610984565b60018060a01b03166000526001835260406000209060018060a01b0316600052602052604060002090565b54604051908152f35b3461073e57600036600319011261073e5760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b6004359063ffffffff8216820361073e57565b3461073e57602036600319011261073e57612835612809565b61283d613786565b63ffffffff8082169182156128aa577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093601054958251918760301c1682526020820152a160301b169069ffffffff000000000000191617601055600080f35b60405163f1cfbf0560e01b815260006004820152602490fd5b3461073e57604036600319011261073e5761206160206004356128e581610984565b60006040516128f38161052b565b52604051630748d63560e31b81526001600160a01b039091166004820152602480359082015291829081906044820190565b3461073e57602036600319011261073e57600435612941613786565b600f5460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600f55005b3461073e57604036600319011261073e5760043561299781610984565b6024359063ffffffff8216820361073e576106db916129e7916129b8613fca565b506129c1613fca565b506001600160a01b031660009081526009602052604090206129e1613fca565b50613ab5565b50604051906129f582610510565b5465ffffffffffff811680835260309190911c60209283019081526040805192835290516001600160d01b031692820192909252918291820190565b3461073e5760a036600319011261073e57612a4d600435610984565b612a58602435610984565b6084356001600160401b03811161073e57612a77903690600401610b35565b506013546001600160a01b03163003610bbb5760405163f23a6e6160e01b8152602090f35b60165460009291612aac826104a8565b80825291600190818116908115612b235750600114612aca57505050565b9192935060166000527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289916000925b848410612b0b57505060209250010190565b80546020858501810191909152909301928101612af9565b915050602093945060ff929192191683830152151560051b010190565b60175460009291612b50826104a8565b80825291600190818116908115612b235750600114612b6e57505050565b9192935060176000527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15916000925b848410612baf57505060209250010190565b80546020858501810191909152909301928101612b9d565b60185460009291612bd7826104a8565b80825291600190818116908115612b235750600114612bf557505050565b9192935060186000527fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e916000925b848410612c3657505060209250010190565b80546020858501810191909152909301928101612c24565b979499989592612c9390612c85612ca194612c776101009b98958d6101209081815201906105b9565b8c810360208e0152906105b9565b908a820360408c01526105b9565b9088820360608a01526105b9565b97608087015260a086015260c085015260e08401521515910152565b3461073e5760008060031936011261098157604051908181601554612ce1816104a8565b80845293600191808316908115612dc95750600114612d6c575b5050612d0992500382610598565b60405190612d2182612d1a81612a9c565b0383610598565b6106db604051612d3b81612d3481612b40565b0382610598565b604051612d4b81612d3481612bc7565b601954601a54601c5491601d549360ff601e541695604051998a998a612c4e565b9150601582527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4755b848310612dae5750612d0993505081016020013880612cfb565b81935090816020925483858901015201910190918492612d94565b91505060209250612d0994915060ff191682840152151560051b8201013880612cfb565b3461073e57602036600319011261073e57604051632394e7a360e21b8152600480359082018190526020826024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa918215610f85576106db92606492612e7192600092612e83575b50612e6b90613acd565b9061408f565b04604051918291829190602083019252565b612e6b919250612ea09060203d8111610fb057610fa18183610598565b9190612e61565b3461073e57600036600319011261073e576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b6013546001600160a01b03163003610bbb57565b60405190612f0d8261052b565b60008252565b90815180825260208080930193019160005b828110612f33575050505090565b83516001600160a01b031685529381019392810192600101612f25565b90815180825260208092019182818360051b85019501936000915b848310612f7b5750505050505090565b9091929394958480612f9583856001950387528a516105b9565b9801930193019194939290612f6b565b9290612ff19261300392604051948592612fe1612fce602086019960808b5260a0870190612f13565b601f199687878303016040880152611c22565b9085858303016060860152612f50565b90608083015203908101835282610598565b51902090565b634e487b7160e01b600052601160045260246000fd5b600052600c60205260406000205465ffffffffffff908163ffffffff8260d01c169160a01c160181811161143e571690565b919392909361306082336138bb565b1561315d57600f54948561307c575b6108a094955033936132c8565b65ffffffffffff4381166000190181811161143e576130cd9160209160006040516130a68161052b565b52604051630748d63560e31b81523360048201529116602482015291829081906044820190565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115610f855760009161313f575b50868110613118575061306f565b604051636121770b60e11b8152336004820152602481019190915260448101879052606490fd5b613157915060203d8111610fb057610fa18183610598565b3861310a565b60405163d9b3955760e01b8152336004820152602490fd5b6040906131916000939594606083019683526020830190611468565b0152565b906001820180921161143e57565b9190820180921161143e57565b906131ba82610bcd565b6131c76040519182610598565b82815280926131d8601f1991610bcd565b019060005b8281106131e957505050565b8060606020809385010152016131dd565b959261322d9061323b939b9a9899969592885260209b60018060a01b03168c8901526101208060408a0152880190612f13565b908682036060880152611c22565b9784890360808601528251808a52818a019180808360051b8d01019501926000905b83821061329a5750505050506108a0969750906132819184820360a0860152612f50565b9360c083015260e08201526101008184039101526105b9565b909192939583806132b98f93600194601f199082030186528a516105b9565b9801920192019093929161325d565b9194939092946132e086516020880120828686612fa5565b95835185519081811480159061347c575b8015613474575b61344b57505065ffffffffffff948561332d61331e8a600052600c602052604060002090565b5460a01c65ffffffffffff1690565b16613424577f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e09561341f9363ffffffff61336f601054938085169043166131a3565b9260301c166133fd61338b8c600052600c602052604060002090565b80546001600160a01b0319166001600160a01b038a161781556133d46133b086614788565b825465ffffffffffff60a01b191660a09190911b65ffffffffffff60a01b16178255565b6133dd836147ba565b815463ffffffff60d01b191660d09190911b63ffffffff60d01b16179055565b61341161340a89516131b0565b91846131a3565b936040519889988d8a6131fa565b0390a1565b8761342e81615718565b6040516331b75e4d60e01b81529182916111329160048401613175565b8351604051630447b05d60e41b8152600481019290925260248201526044810191909152606490fd5b5080156132f8565b5083518114156132f1565b600019811461143e5760010190565b634e487b7160e01b600052603260045260246000fd5b80518210156134c05760209160051b010190565b613496565b93909291969561123061357f916135798a6134fb8160018060a01b03166000526007602052604060002080549060018201905590565b61350636888a610afe565b602081519101208b5160208d0120906040519260208401947f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81186528d604086015260ff8d16606086015260018060a01b0316608085015260a084015260c083015260e082015260e08152611ebd8161057c565b8a614677565b61359a576108a0959691613594913691610afe565b92613637565b6040516394ab6c0760e01b81526001600160a01b0388166004820152602490fd5b916108a09391604051936135ce8561052b565b60008552613637565b93909260ff613603936108a097958752166020860152604085015260a0606085015260a08401906105b9565b9160808184039101526105b9565b909260ff6080936108a096958452166020830152604082015281606082015201906105b9565b92919061364384615718565b6008811015611463576002600160ff83161b1615613728575083600052600c60205261369f613697613691613686604060002065ffffffffffff905460a01c1690565b65ffffffffffff1690565b83613a29565b838387613923565b948051156000146136ec57506136e67fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4938660405194859460018060a01b03169785613611565b0390a290565b6136e6907fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712948760405195869560018060a01b031698866135d7565b6040516331b75e4d60e01b81526004810186905260649161374d906024830190611468565b60026044820152fd5b3d15613781573d9061376782610ae3565b916137756040519384610598565b82523d6000602084013e565b606090565b6013546001600160a01b03163381036137e25730036137a157565b6137aa36610ae3565b6137b76040519182610598565b368152602081019036600083376000602036830101525190205b806137da614f23565b036137d15750565b6040516347096e4760e01b8152336004820152602490fd5b6013546001600160a01b03163003610bbb5763bc197c8160e01b90565b61382081615718565b906008821015611463576010600160ff84161b161561383d575090565b613860606492604051926331b75e4d60e01b845260048401526024830190611468565b60106044820152fd5b61387281615718565b906008821015611463576030600160ff84161b161561388f575090565b6138b2606492604051926331b75e4d60e01b845260048401526024830190611468565b60306044820152fd5b9080516034811061391b5760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b0161391b576138fa916029198201906140a2565b901591821561390857505090565b6001600160a01b03918216911614919050565b505050600190565b61393a909291926000526011602052604060002090565b916003830161396561395e83839060018060a01b0316600052602052604060002090565b5460ff1690565b6139ed5761398b60ff9392613998929060018060a01b0316600052602052604060002090565b805460ff19166001179055565b16806139af57506139aa8282546131a3565b905590565b600181036139c657506001016139aa8282546131a3565b6002036139db576002016139aa8282546131a3565b6040516303599be160e11b8152600490fd5b6040516371c6af4960e01b81526001600160a01b0383166004820152602490fd5b9081602091031261073e575190565b6040513d6000823e3d90fd5b604051630748d63560e31b81526001600160a01b0391821660048201526024810192909252602090829060449082907f0000000000000000000000000000000000000000000000000000000000000000165afa908115610f8557600091613a8e575090565b6108a0915060203d8111610fb057610fa18183610598565b60001981019190821161143e57565b80548210156134c05760005260206000200190600090565b60125490600019820182811161143e578211156134c057600091601283527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34438101549165ffffffffffff92818482161115613bd25750613b2c90614788565b83908260058111613b7c575b50613b439350614dfe565b80613b5657505b6001600160d01b031690565b613b61601291613aa6565b9152600080516020615c3d833981519152015460301c613b4a565b9092613b878261480a565b820391821161143e57613b4394601287528083600080516020615c3d83398151915201541690851610600014613bc05750915b38613b38565b929150613bcc90613195565b90613bba565b935050505060301c90565b65ffffffffffff431680821015613bf857506108a090614788565b6044925060405191637669fc0f60e11b835260048301526024820152fd5b6001600160a01b03818116600081815260086020526040812080548685166001600160a01b031982168117909255610ae196941694613c939390928691907f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9080a46001600160a01b031660009081526020819052604090205490565b915b6001600160a01b03808316939291908116908185141580613ddd575b613cbd575b5050505050565b81613d42575b505082613cd2575b8080613cb6565b6001600160a01b031660009081526009602052604090207fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72491613d1f91613d199091614755565b90613de6565b604080516001600160d01b039384168152919092166020820152a2388080613ccb565b6001600160a01b03166000908152600960205260409020613d6284614755565b6001600160d01b03908180613d76856149c9565b169116900381811161143e57613dba613dd3917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7249465ffffffffffff431690614cd9565b6040805192851683529316602082015291829190820190565b0390a23880613cc3565b50831515613cb1565b906001600160d01b03908180613dfb856149c9565b1691160190811161143e57613e199165ffffffffffff431690614cd9565b9091565b6001600160d01b03908180613e3061497f565b1691160190811161143e57613e199065ffffffffffff4316614c22565b6001600160d01b03908180613e6061497f565b169116900390811161143e57613e199065ffffffffffff4316614c22565b6001600160a01b0380821694939291908515613f775782168015613f5e576001600160a01b03821660009081526020819052604090205495848710613f2f5784610ae1969703613ee08460018060a01b03166000526000602052604060002090565b556001600160a01b0384166000908152602081815260409182902080548801905590518681527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3615695565b60405163391434e360e21b81526001600160a01b03841660048201526024810188905260448101869052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b906001600160a01b0380831615610a4a57811615610a31576109e2613fc79260018060a01b03166000526001602052604060002090565b55565b60405190613fd782610510565b60006020838281520152565b909190610ae15750805115613ffa57805190602001fd5b60405163d6bda27560e01b8152600490fd5b6001600160a01b0381166000908152600760205260409020805460018101909155809203614038575050565b6040516301d4b62360e61b81526001600160a01b039190911660048201526024810191909152604490fd5b908160011b918083046002149015171561143e57565b908160041b918083046010149015171561143e57565b8181029291811591840414171561143e57565b919082518211801561412b575b614102576140bc81613195565b82118061410d575b6140cf901515614063565b6028018060281161143e5781830383811161143e5703614102576140f292614134565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b146140c4565b508181116140af565b92909261414084613195565b8311806141c7575b614153901515614063565b93600094810180911161143e579192905b8183106141745750505060019190565b9092919360ff6141956141906020888601015160ff60f81b1690565b6141e5565b1690600f82116141bb57906141ac6141b392614079565b0194613487565b919290614164565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14614148565b60f81c602f81118061424d575b1561420157602f190160ff1690565b6060811180614243575b1561421a576056190160ff1690565b6040811180614239575b15614233576036190160ff1690565b5060ff90565b5060478110614224565b506067811061420b565b50603a81106141f2565b916108a093916142669361426f565b909291926142fd565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116142e757926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa15610f855780516001600160a01b038116156142de57918190565b50809160019190565b50505060009160039190565b6004111561146357565b614306816142f3565b8061430f575050565b614318816142f3565b600181036143325760405163f645eedf60e01b8152600490fd5b61433b816142f3565b6002810361435c5760405163fce698f760e01b815260048101839052602490fd5b806143686003926142f3565b146143705750565b6040516335e2f38360e21b81526004810191909152602490fd5b6042906143956143b0565b906040519161190160f01b8352600283015260228201522090565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316148061449b575b1561440b577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261300381610546565b507f000000000000000000000000000000000000000000000000000000000000000046146143e2565b60ff81146145025760ff811690601f82116144f057604051916144e683610510565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b50604051600554816000614515836104a8565b8083529260019081811690811561459b575060011461453c575b506108a092500382610598565b6005600090815291507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b84831061458057506108a093505081016020013861452f565b81935090816020925483858901015201910190918492614567565b9050602092506108a094915060ff191682840152151560051b8201013861452f565b60ff81146145df5760ff811690601f82116144f057604051916144e683610510565b506040516006548160006145f2836104a8565b8083529260019081811690811561459b575060011461461857506108a092500382610598565b6006600090815291507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b84831061465c57506108a093505081016020013861452f565b81935090816020925483858901015201910190918492614643565b9091813b61469f576146899192614719565b50614693816142f3565b15918261390857505090565b60009182916040516146d58161229f6020820194630b135d3f60e11b998a875260248401526040604484015260648301906105b9565b51915afa906146e2613756565b8261470b575b826146f257505090565b61470791925060208082518301019101613a0e565b1490565b9150602082511015916146e8565b815191906041830361474a5761474392506020820151906060604084015193015160001a9061426f565b9192909190565b505060009160029190565b6001600160d01b0390818111614769571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b65ffffffffffff9081811161479b571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b63ffffffff908181116147cb571690565b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b81156147f4570490565b634e487b7160e01b600052601260045260246000fd5b60018111156108a057600181600160801b811015614923575b6148cb6148c16148b76148ad6148a36148996148d797600488600160401b6148d29a1015614916575b640100000000811015614909575b620100008110156148fc575b6101008110156148f0575b60108110156148e4575b10156148dc575b60030260011c614892818b6147ea565b0160011c90565b614892818a6147ea565b61489281896147ea565b61489281886147ea565b61489281876147ea565b61489281866147ea565b80936147ea565b821190565b900390565b60011b614882565b811c9160021b9161487b565b60081c91811b91614871565b60101c9160081b91614866565b60201c9160101b9161485a565b60401c9160201b9161484c565b50600160401b9050608082901c614823565b60125460009080614947575050600090565b8060001981011161143e5760127fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34439252015460301c90565b600a5460009080614991575050600090565b8060001981011161143e57600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b8054600091816149db57505050600090565b60001992828481011161143e5760209181522001015460301c90565b634e487b7160e01b600052600060045260246000fd5b60125490600160401b82101561050b5760018201806012558210156134c057610ae1916012600052600080516020615c3d8339815191520190614a6d65ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b60200151815465ffffffffffff1660309190911b65ffffffffffff1916179055565b600a5490600160401b82101561050b576001820180600a558210156134c057610ae191600a600052600080516020615c5d8339815191520190614a6d65ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b8054600160401b81101561050b57614b0c91600182018155613ab5565b614b34578151815465ffffffffffff191665ffffffffffff91909116178155610ae191614a6d565b6149f7565b6012549192918015614bf857614b51614b6991613aa6565b6012600052600080516020615c3d8339815191520190565b9081549165ffffffffffff90818416918316808311614be657869203614bae57614ba792509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050614be190614bcd614bbf610ad4565b65ffffffffffff9092168252565b6001600160d01b0385166020820152614a0d565b614ba7565b604051632520601d60e01b8152600490fd5b50614c1c90614c08614bbf610ad4565b6001600160d01b0384166020820152614a0d565b60009190565b600a549192918015614cb557614c3a614c5291613aa6565b600a600052600080516020615c5d8339815191520190565b9081549165ffffffffffff90818416918316808311614be657869203614c9057614ba792509065ffffffffffff82549181199060301b169116179055565b5050614be190614ca1614bbf610ad4565b6001600160d01b0385166020820152614a8f565b50614c1c90614cc5614bbf610ad4565b6001600160d01b0384166020820152614a8f565b80549293928015614d7057614cf0614cfd91613aa6565b8260005260206000200190565b9182549265ffffffffffff91828516928116808411614be657879303614d3c5750614ba792509065ffffffffffff82549181199060301b169116179055565b915050614be191614d5c614d4e610ad4565b65ffffffffffff9093168352565b6001600160d01b0386166020830152614aef565b5090614c1c91614d81614d4e610ad4565b6001600160d01b0385166020830152614aef565b905b828110614da357505090565b90918082169080831860011c820180921161143e57600a60005265ffffffffffff8083600080516020615c5d83398151915201541690851610600014614dec5750915b90614d97565b929150614df890613195565b90614de6565b905b828110614e0c57505090565b90918082169080831860011c820180921161143e57601260005265ffffffffffff8083600080516020615c3d83398151915201541690851610600014614e555750915b90614e00565b929150614e6190613195565b90614e4f565b91905b838210614e775750505090565b9091928083169080841860011c820180921161143e5760008581526020902082015465ffffffffffff9081169084161015614eb65750925b9190614e6a565b939250614ec290613195565b91614eaf565b600d548060801c9160018301926001600160801b0380931683851614614f1057600052600e602052604060002055600d54916001600160801b03199060801b16911617600d55565b634e487b7160005260416020526024601cfd5b600d54906001600160801b038083169260801c8314614f685782600052600e602052600160406000209360008554955501166001600160801b0319600d541617600d55565b634e487b7160005260316020526024601cfd5b15614f8257565b60405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606490fd5b15614fbd57565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b15614ff857565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b90916150426108a093604084526040840190612f13565b916020818403910152611c22565b91906001600160a01b0383168015613f5e5760025482810180911161143e576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b0384116150d657610ae1929350615617565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b1561510357565b60405162461bcd60e51b815260206004820152600f60248201526e22b6b83a3c9037b832b930ba34b7b760891b6044820152606490fd5b1561514157565b60405162461bcd60e51b8152602060048201526013602482015272456d7074792074617267657420636861696e7360681b6044820152606490fd5b1561518357565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c69642074696d656c6f636b60801b6044820152606490fd5b6040516151c78161052b565b6000815290565b8181106151d9575050565b600081556001016151ce565b9190601f81116151f457505050565b610ae1926000526020600020906020601f840160051c83019310615220575b601f0160051c01906151ce565b9091508190615213565b91909182516001600160401b03811161050b576152518161524b84546104a8565b846151e5565b602080601f831160011461528d575081929394600092615282575b50508160011b916000199060031b1c1916179055565b01519050388061526c565b90601f198316956152a385600052602060002090565b926000905b8882106152e0575050836001959697106152c7575b505050811b019055565b015160001960f88460031b161c191690553880806152bd565b806001859682949686015181550195019301906152a8565b8151916001600160401b03831161050b57600160401b831161050b578154838355808410615353575b50602080910191600052806000209060005b848110615341575050505050565b83518382015592810192600101615333565b61536b908360005284602060002091820191016151ce565b38615321565b815191600160401b831161050b5781548383558084106153cf575b506153a1602080920192600052602060002090565b6000925b8484106153b3575050505050565b600183826153c38394518661522a565b019201930192906153a5565b6000838152846020822092830192015b8281106153ed57505061538c565b806153fa600192546104a8565b80615407575b50016153df565b601f90818111841461541f5750508281555b38615400565b836154419261543385600052602060002090565b920160051c820191016151ce565b60008181526020812081835555615419565b9061010060089161546581518561522a565b6154766020820151600186016152f8565b604081015160028501556060810151600385015560808101516004850180546001600160a01b0319166001600160a01b039092169190911790556154c160a082015160058601615371565b6154e66154d160c0830151151590565b600686019060ff801983541691151516179055565b60e081015160078501550151910155565b9081526001600160a01b0390911660208201526060604082018190526108a0929101906105b9565b1561552657565b60405162461bcd60e51b815260206004820152601960248201527f50726f706f73616c20616c7265616479206578656375746564000000000000006044820152606490fd5b1561557257565b60405162461bcd60e51b815260206004820152601060248201526f141c9bdc1bdcd85b08195e1c1a5c995960821b6044820152606490fd5b156155b157565b60405162461bcd60e51b81526020600482015260116024820152702737903a37b5b2b739903a379039b4b3b760791b6044820152606490fd5b8054600160401b81101561050b5761560791600182018155613ab5565b919091614b3457610ae19161522a565b90610ae19161562d61562883614755565b613e1d565b50506001600160a01b0390811690811561567d575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c754600092835260409092205481169116613c95565b61568e61568984614755565b613e4d565b5050615642565b610ae192916001600160a01b039182169190819083156156ed575b169182156156da575b60005260086020528060406000205416916000526040600020541690613c95565b6156e661568985614755565b50506156b9565b6156f961562886614755565b50506156b0565b9081602091031261073e5751801515810361073e5790565b6157218161582a565b9061572b82611459565b600582036158265761574891506000526014602052604060002090565b5460135461575e906001600160a01b0316610dc4565b604051632c258a9f60e11b81526004810183905260209291908381602481855afa908115610f8557600091615809575b501561579c57505050600590565b604051632ab0f52960e01b815260048101929092528290829060249082905afa918215610f85576000926157dc575b5050156157d757600790565b600290565b6157fb9250803d10615802575b6157f38183610598565b810190615700565b38806157cb565b503d6157e9565b6158209150843d8611615802576157f38183610598565b3861578e565b5090565b61583e81600052600c602052604060002090565b5460ff8160f01c166159365760f81c6159305761586b61368661331e83600052600c602052604060002090565b80156159175765ffffffffffff4316809110156159105761588b8261301f565b106158965750600190565b6158a26112308261593d565b80156158eb575b156158b45750600390565b61368660016158d06158dd93600052600c602052604060002090565b015465ffffffffffff1690565b6158e657600490565b600590565b5061590b6112308260005260116020526040600020600181015490541090565b6158a9565b5050600090565b604051636ad0607560e01b815260048101839052602490fd5b50600290565b5050600790565b60005260116020526040600020600c60205265ffffffffffff60406000205460a01c1660405190632394e7a360e21b825280600483015260208260248160018060a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa918215610f85576159da926064926159c892600092612e835750612e6b90613acd565b049160026001820154910154906131a3565b101590565b906159eb939291612fa5565b6159f481615718565b600881101561146357603b600160ff83161b1615615af35750615a39615a2482600052600c602052604060002090565b80546001600160f81b0316600160f81b179055565b6040518181527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c90602090a1615a79816000526014602052604060002090565b5480615a83575090565b601354615a98906001600160a01b0316610dc4565b803b1561073e5760405163c4d252f560e01b815260048101929092526000908290602490829084905af18015610f8557615ae0575b5060008181526014602052604081205590565b80610f79615aed926104f8565b38615acd565b90615b17606492604051926331b75e4d60e01b845260048401526024830190611468565b603b6044820152fd5b949392615b4c608093615b3e615b5a9460a08a5260a08a0190612f13565b9088820360208a0152611c22565b908682036040880152612f50565b93600060608201520152565b9192615b9560a094615b87615ba3949998979960c0875260c0870190612f13565b908582036020870152611c22565b908382036040850152612f50565b946000606083015260808201520152565b9290939160018060a01b036013541690813b1561073e57600093615c036040519788958694859463e38335e560e01b86526bffffffffffffffffffffffff193060601b16189260048601615b20565b039134905af1908115610f8557600092613fc792615c2d575b506000526014602052604060002090565b615c36906104f8565b38615c1c56febb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a26469706673582212202627befb43889ac882392be166d232b6cf88ef987654f0f10b333640cb78ebe464736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT ISZERO PUSH2 0x23 JUMPI JUMPDEST CALLDATASIZE ISZERO PUSH2 0x19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21 PUSH2 0x2EEC JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x13CF08B EQ PUSH2 0x4A3 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x49E JUMPI DUP1 PUSH4 0x2A251A3 EQ PUSH2 0x499 JUMPI DUP1 PUSH4 0x6F3F9E6 EQ PUSH2 0x494 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x48F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x48A JUMPI DUP1 PUSH4 0xC0512E9 EQ PUSH2 0x485 JUMPI DUP1 PUSH4 0x143489D0 EQ PUSH2 0x480 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x47B JUMPI DUP1 PUSH4 0x160CBED7 EQ PUSH2 0x476 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x471 JUMPI DUP1 PUSH4 0x194A94FC EQ PUSH2 0x46C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x467 JUMPI DUP1 PUSH4 0x2656227D EQ PUSH2 0x462 JUMPI DUP1 PUSH4 0x2D63F693 EQ PUSH2 0x45D JUMPI DUP1 PUSH4 0x2FE3E261 EQ PUSH2 0x458 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x453 JUMPI DUP1 PUSH4 0x3932ABB1 EQ PUSH2 0x44E JUMPI DUP1 PUSH4 0x3A46B1A8 EQ PUSH2 0x449 JUMPI DUP1 PUSH4 0x3E4F49E6 EQ PUSH2 0x444 JUMPI DUP1 PUSH4 0x43859632 EQ PUSH2 0x43F JUMPI DUP1 PUSH4 0x452115D6 EQ PUSH2 0x43A JUMPI DUP1 PUSH4 0x4BF5D7E9 EQ PUSH2 0x435 JUMPI DUP1 PUSH4 0x4FA76EC9 EQ PUSH2 0x430 JUMPI DUP1 PUSH4 0x544FFC9C EQ PUSH2 0x42B JUMPI DUP1 PUSH4 0x54FD4D50 EQ PUSH2 0x426 JUMPI DUP1 PUSH4 0x56781388 EQ PUSH2 0x421 JUMPI DUP1 PUSH4 0x587CDE1E EQ PUSH2 0x41C JUMPI DUP1 PUSH4 0x5B8D0E0D EQ PUSH2 0x417 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x412 JUMPI DUP1 PUSH4 0x5F398A14 EQ PUSH2 0x40D JUMPI DUP1 PUSH4 0x60C4247F EQ PUSH2 0x408 JUMPI DUP1 PUSH4 0x6FCFFF45 EQ PUSH2 0x403 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x3FE JUMPI DUP1 PUSH4 0x79051887 EQ PUSH2 0x3F9 JUMPI DUP1 PUSH4 0x7B3C71D3 EQ PUSH2 0x3F4 JUMPI DUP1 PUSH4 0x7D5E81E2 EQ PUSH2 0x3EF JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x3EA JUMPI DUP1 PUSH4 0x824E83E1 EQ PUSH2 0x3E5 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x3E0 JUMPI DUP1 PUSH4 0x8E539E8C EQ PUSH2 0x3DB JUMPI DUP1 PUSH4 0x8FF262E3 EQ PUSH2 0x3D6 JUMPI DUP1 PUSH4 0x91DDADF4 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3CC JUMPI DUP1 PUSH4 0x97C3D334 EQ PUSH2 0x3C7 JUMPI DUP1 PUSH4 0x9A802A6D EQ PUSH2 0x3C2 JUMPI DUP1 PUSH4 0x9AB24EB0 EQ PUSH2 0x3BD JUMPI DUP1 PUSH4 0xA7713A70 EQ PUSH2 0x3B8 JUMPI DUP1 PUSH4 0xA890C910 EQ PUSH2 0x3B3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3AE JUMPI DUP1 PUSH4 0xA9A95294 EQ PUSH2 0x3A9 JUMPI DUP1 PUSH4 0xAB273016 EQ PUSH2 0x3A4 JUMPI DUP1 PUSH4 0xAB58FB8E EQ PUSH2 0x39F JUMPI DUP1 PUSH4 0xB58131B0 EQ PUSH2 0x39A JUMPI DUP1 PUSH4 0xBC197C81 EQ PUSH2 0x395 JUMPI DUP1 PUSH4 0xC01F9E37 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0xC28BC2FA EQ PUSH2 0x38B JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0x386 JUMPI DUP1 PUSH4 0xC59057E4 EQ PUSH2 0x381 JUMPI DUP1 PUSH4 0xD1FAD4CD EQ PUSH2 0x37C JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x377 JUMPI DUP1 PUSH4 0xDD4E2BA5 EQ PUSH2 0x372 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x36D JUMPI DUP1 PUSH4 0xDEAAA7CC EQ PUSH2 0x368 JUMPI DUP1 PUSH4 0xE540D01D EQ PUSH2 0x363 JUMPI DUP1 PUSH4 0xEB9019D4 EQ PUSH2 0x35E JUMPI DUP1 PUSH4 0xECE40CC1 EQ PUSH2 0x359 JUMPI DUP1 PUSH4 0xF1127ED8 EQ PUSH2 0x354 JUMPI DUP1 PUSH4 0xF23A6E61 EQ PUSH2 0x34F JUMPI DUP1 PUSH4 0xF2C26A47 EQ PUSH2 0x34A JUMPI DUP1 PUSH4 0xF8CE560A EQ PUSH2 0x345 JUMPI PUSH4 0xFC0C546A SUB PUSH2 0xE JUMPI PUSH2 0x2EA7 JUMP JUMPDEST PUSH2 0x2DED JUMP JUMPDEST PUSH2 0x2CBD JUMP JUMPDEST PUSH2 0x2A31 JUMP JUMPDEST PUSH2 0x297A JUMP JUMPDEST PUSH2 0x2925 JUMP JUMPDEST PUSH2 0x28C3 JUMP JUMPDEST PUSH2 0x281C JUMP JUMPDEST PUSH2 0x27CE JUMP JUMPDEST PUSH2 0x276B JUMP JUMPDEST PUSH2 0x270D JUMP JUMPDEST PUSH2 0x26E4 JUMP JUMPDEST PUSH2 0x25AC JUMP JUMPDEST PUSH2 0x2590 JUMP JUMPDEST PUSH2 0x24C3 JUMP JUMPDEST PUSH2 0x2457 JUMP JUMPDEST PUSH2 0x2439 JUMP JUMPDEST PUSH2 0x2399 JUMP JUMPDEST PUSH2 0x237B JUMP JUMPDEST PUSH2 0x2344 JUMP JUMPDEST PUSH2 0x220A JUMP JUMPDEST PUSH2 0x21EE JUMP JUMPDEST PUSH2 0x21B9 JUMP JUMPDEST PUSH2 0x2145 JUMP JUMPDEST PUSH2 0x2122 JUMP JUMPDEST PUSH2 0x20D0 JUMP JUMPDEST PUSH2 0x1FED JUMP JUMPDEST PUSH2 0x1FD1 JUMP JUMPDEST PUSH2 0x1F2A JUMP JUMPDEST PUSH2 0x1F07 JUMP JUMPDEST PUSH2 0x1DEF JUMP JUMPDEST PUSH2 0x1D20 JUMP JUMPDEST PUSH2 0x1C56 JUMP JUMPDEST PUSH2 0x1AEE JUMP JUMPDEST PUSH2 0x1AB1 JUMP JUMPDEST PUSH2 0x1A29 JUMP JUMPDEST PUSH2 0x19D4 JUMP JUMPDEST PUSH2 0x1963 JUMP JUMPDEST PUSH2 0x1926 JUMP JUMPDEST PUSH2 0x18DB JUMP JUMPDEST PUSH2 0x18BD JUMP JUMPDEST PUSH2 0x184E JUMP JUMPDEST PUSH2 0x1828 JUMP JUMPDEST PUSH2 0x17A0 JUMP JUMPDEST PUSH2 0x1734 JUMP JUMPDEST PUSH2 0x16E4 JUMP JUMPDEST PUSH2 0x1682 JUMP JUMPDEST PUSH2 0x1635 JUMP JUMPDEST PUSH2 0x1617 JUMP JUMPDEST PUSH2 0x15B9 JUMP JUMPDEST PUSH2 0x14FB JUMP JUMPDEST PUSH2 0x14A2 JUMP JUMPDEST PUSH2 0x1475 JUMP JUMPDEST PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x1331 JUMP JUMPDEST PUSH2 0x1315 JUMP JUMPDEST PUSH2 0x12DA JUMP JUMPDEST PUSH2 0x12A3 JUMP JUMPDEST PUSH2 0x1136 JUMP JUMPDEST PUSH2 0x107D JUMP JUMPDEST PUSH2 0xFF4 JUMP JUMPDEST PUSH2 0xFD6 JUMP JUMPDEST PUSH2 0xD8C JUMP JUMPDEST PUSH2 0xB50 JUMP JUMPDEST PUSH2 0xA80 JUMP JUMPDEST PUSH2 0xA63 JUMP JUMPDEST PUSH2 0x995 JUMP JUMPDEST PUSH2 0x8A3 JUMP JUMPDEST PUSH2 0x7E3 JUMP JUMPDEST PUSH2 0x7BC JUMP JUMPDEST PUSH2 0x743 JUMP JUMPDEST PUSH2 0x640 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x4D8 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x4C2 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 PUSH1 0x7F AND SWAP2 PUSH2 0x4B7 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0x4E2 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0x100 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD SWAP3 DUP4 DUP3 MSTORE PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x5E5 JUMPI POP POP DUP3 PUSH1 0x0 PUSH1 0x20 DUP1 SWAP5 SWAP6 DUP5 ADD ADD MSTORE PUSH1 0x1F DUP1 NOT SWAP2 ADD AND ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 DUP4 ADD DUP2 ADD MLOAD DUP5 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0x5C4 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 PUSH2 0x615 PUSH1 0xC0 SWAP7 SWAP4 SWAP10 SWAP9 SWAP8 SWAP5 PUSH1 0xE0 DUP8 MSTORE PUSH1 0xE0 DUP8 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD SWAP10 SWAP1 SWAP10 MSTORE PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x60 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x73E JUMPI PUSH1 0x0 PUSH1 0x4 CALLDATALOAD DUP2 MSTORE PUSH1 0x1F DUP3 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP2 PUSH1 0x40 MLOAD DUP3 DUP2 SWAP4 SWAP1 DUP6 SLOAD PUSH2 0x674 DUP2 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x71C JUMPI POP PUSH1 0x1 EQ PUSH2 0x6DF JUMPI JUMPDEST POP POP POP PUSH2 0x69D SWAP3 POP SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SLOAD PUSH1 0x3 DUP4 ADD SLOAD PUSH1 0x4 DUP5 ADD SLOAD SWAP2 SWAP4 PUSH2 0x6DB SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x6 DUP3 ADD SLOAD PUSH1 0xFF AND SWAP1 PUSH1 0x8 PUSH1 0x7 DUP5 ADD SLOAD SWAP4 ADD SLOAD SWAP4 PUSH1 0x40 MLOAD SWAP8 DUP9 SWAP8 DUP9 PUSH2 0x5F9 JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST DUP8 DUP2 MSTORE DUP6 DUP2 KECCAK256 SWAP6 SWAP4 POP SWAP2 SWAP1 JUMPDEST DUP2 DUP4 LT PUSH2 0x704 JUMPI POP POP PUSH2 0x69D SWAP4 POP DUP3 ADD ADD CODESIZE DUP1 DUP1 PUSH2 0x68E JUMP JUMPDEST DUP6 SLOAD DUP8 DUP5 ADD DUP6 ADD MSTORE SWAP5 DUP6 ADD SWAP5 DUP7 SWAP5 POP SWAP2 DUP4 ADD SWAP2 PUSH2 0x6EB JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x69D SWAP5 SWAP3 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE DUP1 DUP1 PUSH2 0x68E JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP2 AND DUP1 SWAP2 SUB PUSH2 0x73E JUMPI PUSH1 0x20 SWAP1 PUSH4 0x32A2AD43 PUSH1 0xE1 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x7A0 JUMPI JUMPDEST DUP2 ISZERO PUSH2 0x78F JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0x784 JUMP JUMPDEST PUSH4 0x2711897 PUSH1 0xE5 SHL DUP2 EQ SWAP2 POP PUSH2 0x77D JUMP JUMPDEST PUSH1 0x0 SWAP2 SUB SLT PUSH2 0x73E JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH4 0xFFFFFFFF PUSH1 0x10 SLOAD PUSH1 0x30 SHR AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x7FF PUSH2 0x3786 JUMP JUMPDEST PUSH1 0x64 DUP2 GT PUSH2 0x870 JUMPI PUSH32 0x553476BF02EF2726E8CE5CED78D63E26E602E4A2257B1F559418E24B4633997 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH2 0x839 PUSH2 0x4935 JUMP JUMPDEST AND PUSH2 0x854 PUSH2 0x846 DUP4 PUSH2 0x4755 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x4B39 JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 DUP2 ADD JUMPDEST SUB SWAP1 LOG1 STOP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x243E5445 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x64 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 PUSH1 0x20 PUSH2 0x8A0 SWAP3 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x981 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0xB SLOAD PUSH2 0x8C6 DUP2 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x957 JUMPI POP PUSH1 0x1 EQ PUSH2 0x8FC JUMPI JUMPDEST PUSH2 0x6DB DUP6 PUSH2 0x8F0 DUP2 DUP8 SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 PUSH2 0x88F JUMP JUMPDEST SWAP3 POP PUSH1 0xB DUP4 MSTORE PUSH32 0x175B7A638427703F0DBE7BB9BBF987A2551717B34E79F33B5B1008D1FA01DB9 JUMPDEST DUP3 DUP5 LT PUSH2 0x93F JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0x8F0 DUP3 PUSH2 0x6DB PUSH2 0x8E0 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x924 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0x6DB SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0x8F0 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0x8E0 JUMP JUMPDEST DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND SUB PUSH2 0x73E JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x9B2 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD CALLER ISZERO PUSH2 0xA4A JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP2 DUP3 ISZERO PUSH2 0xA31 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP3 SWAP2 PUSH2 0x9F9 SWAP2 JUMPDEST SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x20 CALLER SWAP3 LOG3 PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 DUP1 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x120 DUP3 ADD DUP3 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x50B JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0xAE1 DUP3 PUSH2 0x510 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x50B JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 SWAP3 PUSH2 0xB0A DUP3 PUSH2 0xAE3 JUMP JUMPDEST SWAP2 PUSH2 0xB18 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x598 JUMP JUMPDEST DUP3 SWAP5 DUP2 DUP5 MSTORE DUP2 DUP4 ADD GT PUSH2 0x73E JUMPI DUP3 DUP2 PUSH1 0x20 SWAP4 DUP5 PUSH1 0x0 SWAP7 ADD CALLDATACOPY ADD ADD MSTORE JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0x73E JUMPI DUP2 PUSH1 0x20 PUSH2 0x8A0 SWAP4 CALLDATALOAD SWAP2 ADD PUSH2 0xAFE JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0xB6C PUSH1 0x4 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH2 0xB77 PUSH1 0x24 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH2 0xB96 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0xBBB JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7485328F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x50B JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x73E JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0xBFB DUP4 PUSH2 0xBCD JUMP JUMPDEST SWAP3 PUSH2 0xC09 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x598 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x73E JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xC33 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 DUP1 SWAP2 DUP4 CALLDATALOAD PUSH2 0xC41 DUP2 PUSH2 0x984 JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH2 0xC25 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x73E JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0xC63 DUP4 PUSH2 0xBCD JUMP JUMPDEST SWAP3 PUSH2 0xC71 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x598 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x73E JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xC9B JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xC8D JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0x73E JUMPI DUP2 CALLDATALOAD SWAP1 PUSH2 0xCC2 DUP3 PUSH2 0xBCD JUMP JUMPDEST SWAP3 PUSH2 0xCD0 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x598 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP2 PUSH1 0x5 SHL DUP4 ADD ADD SWAP3 DUP1 DUP5 GT PUSH2 0x73E JUMPI DUP5 DUP4 ADD SWAP2 JUMPDEST DUP5 DUP4 LT PUSH2 0xCFE JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI DUP7 SWAP2 PUSH2 0xD1F DUP5 DUP5 DUP1 SWAP5 DUP10 ADD ADD PUSH2 0xB35 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP2 PUSH2 0xCEE JUMP JUMPDEST PUSH1 0x80 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0x73E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 PUSH1 0x4 CALLDATALOAD DUP4 DUP2 GT PUSH2 0x73E JUMPI DUP3 PUSH2 0xD56 SWAP2 PUSH1 0x4 ADD PUSH2 0xBE4 JUMP JUMPDEST SWAP3 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI DUP4 PUSH2 0xD6E SWAP2 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x73E JUMPI PUSH2 0xD85 SWAP2 PUSH1 0x4 ADD PUSH2 0xCAA JUMP JUMPDEST SWAP1 PUSH1 0x64 CALLDATALOAD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH2 0xD9A CALLDATASIZE PUSH2 0xD2A JUMP JUMPDEST PUSH2 0xDA8 DUP2 DUP4 DUP6 DUP8 SWAP7 SWAP8 PUSH2 0x2FA5 JUMP JUMPDEST SWAP3 PUSH2 0xDB2 DUP5 PUSH2 0x3817 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH2 0xDD0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP3 PUSH1 0x40 SWAP6 DUP7 MLOAD SWAP4 PUSH4 0x793D0649 PUSH1 0xE1 SHL DUP6 MSTORE PUSH1 0x20 SWAP1 DUP2 DUP7 PUSH1 0x4 DUP2 DUP11 GAS STATICCALL SWAP6 DUP7 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP7 PUSH2 0xFB7 JUMPI JUMPDEST POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT ADDRESS PUSH1 0x60 SHL AND XOR SWAP6 DUP2 DUP10 MLOAD DUP1 SWAP3 PUSH4 0xB1C5F427 PUSH1 0xE0 SHL DUP3 MSTORE DUP2 DUP1 PUSH2 0xE32 DUP13 DUP11 DUP11 DUP14 PUSH1 0x4 DUP7 ADD PUSH2 0x5B20 JUMP JUMPDEST SUB SWAP2 GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP3 PUSH2 0xF8A JUMPI JUMPDEST POP POP PUSH2 0xE5B DUP8 PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x13 SLOAD PUSH2 0xE71 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xDC4 JUMP JUMPDEST SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 SWAP5 PUSH2 0xE9D DUP8 DUP12 MLOAD SWAP10 DUP11 SWAP8 DUP9 SWAP7 DUP8 SWAP6 PUSH4 0x8F2A0BB PUSH1 0xE4 SHL DUP8 MSTORE PUSH1 0x4 DUP8 ADD PUSH2 0x5B66 JUMP JUMPDEST SUB SWAP3 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0xF85 JUMPI PUSH2 0xEC1 SWAP3 PUSH2 0xEBC SWAP3 PUSH2 0xF6C JUMPI JUMPDEST POP TIMESTAMP PUSH2 0x31A3 JUMP JUMPDEST PUSH2 0x4788 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 AND ISZERO PUSH2 0xF5B JUMPI SWAP2 PUSH32 0x9A2E42FD6722813D69113E7D0079D3D940171428DF7373DF9C7F7617CFDA2892 PUSH2 0xF4A DUP5 PUSH2 0xF2C PUSH2 0x6DB SWAP7 PUSH1 0x1 PUSH2 0xF12 DUP9 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST ADD SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST DUP4 MLOAD DUP6 DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG1 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST DUP3 MLOAD PUSH4 0x48442523 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST DUP1 PUSH2 0xF79 PUSH2 0xF7F SWAP3 PUSH2 0x4F8 JUMP JUMPDEST DUP1 PUSH2 0x7B1 JUMP JUMPDEST CODESIZE PUSH2 0xEB5 JUMP JUMPDEST PUSH2 0x3A1D JUMP JUMPDEST PUSH2 0xFA9 SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0xFB0 JUMPI JUMPDEST PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x3A0E JUMP JUMPDEST CODESIZE DUP1 PUSH2 0xE45 JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0xF97 JUMP JUMPDEST PUSH2 0xFCF SWAP2 SWAP7 POP DUP3 RETURNDATASIZE DUP5 GT PUSH2 0xFB0 JUMPI PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST SWAP5 CODESIZE PUSH2 0xDFB JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1068 PUSH2 0x1048 PUSH32 0x5C84C0144A4E16E610C6C44C3571A58AF67CE17B61280F57E6FEEB2C363EAA60 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD PUSH2 0x1054 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 PUSH1 0x40 DUP5 MSTORE PUSH1 0x40 DUP5 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE SUB SWAP1 LOG1 STOP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x109A DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD PUSH2 0x10A6 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 PUSH1 0x44 CALLDATALOAD SWAP2 SWAP1 SLOAD SWAP3 PUSH1 0x0 NOT DUP5 LT PUSH2 0x10F0 JUMPI JUMPDEST PUSH2 0x10E4 SWAP4 POP PUSH2 0x3E7E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST DUP3 DUP5 LT PUSH2 0x110C JUMPI PUSH2 0x1107 DUP4 PUSH2 0x10E4 SWAP6 SUB CALLER DUP4 PUSH2 0x3F90 JUMP JUMPDEST PUSH2 0x10DA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SUB SWAP1 REVERT JUMPDEST PUSH2 0x113F CALLDATASIZE PUSH2 0xD2A JUMP JUMPDEST PUSH2 0x114D DUP2 DUP4 DUP6 DUP8 SWAP6 SWAP8 PUSH2 0x2FA5 JUMP JUMPDEST SWAP3 PUSH2 0x1157 DUP5 PUSH2 0x3869 JUMP JUMPDEST POP PUSH2 0x1182 PUSH2 0x116F DUP6 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0xFF PUSH1 0xF0 SHL NOT AND PUSH1 0x1 PUSH1 0xF0 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 DUP5 AND ADDRESS SUB PUSH2 0x1239 JUMPI JUMPDEST SWAP5 PUSH2 0x11A8 SWAP3 SWAP2 PUSH2 0x6DB SWAP7 DUP7 PUSH2 0x5BB4 JUMP JUMPDEST PUSH1 0x13 SLOAD ADDRESS SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO DUP1 PUSH2 0x1214 JUMPI JUMPDEST PUSH2 0x1205 JUMPI JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x712AE1383F79AC853F8D882153778E0260EF8F03B504E2866E0593E04D2B291F SWAP1 DUP1 PUSH1 0x20 DUP2 ADD JUMPDEST SUB SWAP1 LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH2 0x120F PUSH1 0x0 PUSH1 0xD SSTORE JUMP JUMPDEST PUSH2 0x11C4 JUMP JUMPDEST POP PUSH2 0x1234 PUSH2 0x1230 PUSH1 0xD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND SWAP1 PUSH1 0x80 SHR EQ SWAP1 JUMP JUMPDEST ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x11BF JUMP JUMPDEST SWAP3 SWAP1 SWAP4 SWAP2 PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x1299 JUMPI PUSH2 0x1275 SWAP1 ADDRESS PUSH2 0x126B PUSH2 0xDC4 PUSH2 0x125E DUP5 DUP11 PUSH2 0x34AC JUMP JUMPDEST MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST EQ PUSH2 0x127A JUMPI PUSH2 0x3487 JUMP JUMPDEST PUSH2 0x1240 JUMP JUMPDEST PUSH2 0x1294 PUSH2 0x1287 DUP3 DUP11 PUSH2 0x34AC JUMP JUMPDEST MLOAD PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 PUSH2 0x4EC8 JUMP JUMPDEST PUSH2 0x3487 JUMP JUMPDEST POP SWAP2 SWAP4 SWAP1 SWAP3 PUSH2 0x1198 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0xA0 SHR AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0x3E83946653575F9A39005E1545185629E92736B7528AB20CA3816F315424A811 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x10 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1374 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x1397 PUSH1 0x24 CALLDATALOAD PUSH2 0x3BDD JUMP JUMPDEST SWAP2 DUP1 SLOAD DUP3 SWAP4 DUP2 PUSH1 0x5 DUP2 GT PUSH2 0x13E9 JUMPI JUMPDEST POP SWAP1 PUSH1 0x20 SWAP5 PUSH2 0x13B5 SWAP3 DUP5 PUSH2 0x4E67 JUMP JUMPDEST DUP1 PUSH2 0x13CF JUMPI POP POP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE RETURN JUMPDEST SWAP2 PUSH2 0x13DB DUP5 SWAP3 SWAP4 PUSH2 0x3AA6 JUMP JUMPDEST SWAP3 DUP2 MSTORE KECCAK256 ADD SLOAD PUSH1 0x30 SHR PUSH2 0x13BD JUMP JUMPDEST SWAP5 PUSH2 0x13F3 DUP7 PUSH2 0x480A JUMP JUMPDEST DUP7 SUB SWAP6 DUP7 GT PUSH2 0x143E JUMPI PUSH1 0x20 SWAP6 PUSH2 0x13B5 SWAP4 DUP6 DUP8 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 DUP11 DUP11 KECCAK256 ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x142C JUMPI POP SWAP2 JUMPDEST SWAP2 SWAP3 POP SWAP5 PUSH2 0x13A6 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x1438 SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP1 PUSH2 0x1423 JUMP JUMPDEST PUSH2 0x3009 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x8 GT ISZERO PUSH2 0x1463 JUMPI JUMP JUMPDEST PUSH2 0x1443 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1463 JUMPI MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x1493 PUSH1 0x4 CALLDATALOAD PUSH2 0x5718 JUMP JUMPDEST PUSH2 0x14A0 PUSH1 0x40 MLOAD DUP1 SWAP3 PUSH2 0x1468 JUMP JUMPDEST RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0xFF PUSH2 0x14EF PUSH1 0x24 CALLDATALOAD PUSH2 0x14C6 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x11 DUP5 MSTORE PUSH1 0x3 PUSH1 0x40 PUSH1 0x0 KECCAK256 ADD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH2 0x1509 CALLDATASIZE PUSH2 0xD2A JUMP JUMPDEST SWAP1 PUSH2 0x1518 DUP3 DUP3 DUP6 DUP8 SWAP7 SWAP8 PUSH2 0x2FA5 JUMP JUMPDEST PUSH2 0x1521 DUP2 PUSH2 0x5718 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x1 DUP1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x158C JUMPI POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0x1574 JUMPI PUSH2 0x6DB SWAP4 PUSH2 0x1564 SWAP4 PUSH2 0x59DF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x233D98E3 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 PUSH2 0x15B0 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x6DB PUSH1 0x40 MLOAD PUSH2 0x15D9 DUP2 PUSH2 0x510 JUMP JUMPDEST PUSH1 0x1D DUP2 MSTORE PUSH32 0x6D6F64653D626C6F636B6E756D6265722666726F6D3D64656661756C74000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x21 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x6DB PUSH1 0x2 PUSH1 0x1 DUP5 ADD SLOAD SWAP4 ADD SLOAD PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP4 DUP5 PUSH1 0x40 SWAP2 SWAP5 SWAP4 SWAP3 PUSH1 0x60 DUP3 ADD SWAP6 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x6DB PUSH1 0x40 MLOAD PUSH2 0x16A2 DUP2 PUSH2 0x510 JUMP JUMPDEST PUSH1 0x1 DUP2 MSTORE PUSH1 0x31 PUSH1 0xF8 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x73E JUMPI JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x73E JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x172C PUSH2 0x1702 PUSH2 0x16C4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x170E DUP2 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP2 MSTORE PUSH1 0x40 MLOAD SWAP2 PUSH2 0x171F DUP4 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP4 MSTORE CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x3637 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x4 CALLDATALOAD PUSH2 0x1753 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP2 AND PUSH1 0x0 MSTORE PUSH1 0x8 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0x73E JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x73E JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0x73E JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x17B9 PUSH2 0x16C4 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH2 0x17C6 DUP3 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x17E7 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1773 JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x17FF SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST SWAP2 PUSH1 0xA4 CALLDATALOAD SWAP5 DUP6 GT PUSH2 0x73E JUMPI PUSH2 0x6DB SWAP6 PUSH2 0x181F PUSH2 0x1564 SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST SWAP5 PUSH1 0x4 CALLDATALOAD PUSH2 0x34C5 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x21 PUSH1 0x4 CALLDATALOAD PUSH2 0x1848 DUP2 PUSH2 0x984 JUMP JUMPDEST CALLER PUSH2 0x3C16 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x1867 PUSH2 0x16C4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1888 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1773 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP4 DUP5 GT PUSH2 0x73E JUMPI PUSH2 0x18B3 PUSH2 0x172C SWAP4 PUSH2 0x18AB PUSH1 0x20 SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST SWAP4 CALLDATASIZE SWAP2 PUSH2 0xAFE JUMP JUMPDEST SWAP1 CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x3637 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x172C PUSH1 0x4 CALLDATALOAD PUSH2 0x3ACD JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x18F8 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH2 0x1918 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x47BA JUMP JUMPDEST PUSH4 0xFFFFFFFF PUSH1 0x40 MLOAD SWAP2 AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x172C PUSH1 0x4 CALLDATALOAD PUSH2 0x1948 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP1 DUP3 AND DUP1 SWAP3 SUB PUSH2 0x73E JUMPI PUSH2 0x1990 PUSH2 0x3786 JUMP JUMPDEST PUSH32 0xC565B045403DC03C2EEA82B81A0465EDAD9E2E7FC4D97E11421C209DA93D7A93 PUSH1 0x40 PUSH1 0x10 SLOAD SWAP3 DUP2 MLOAD SWAP1 DUP5 AND DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH6 0xFFFFFFFFFFFF NOT AND OR PUSH1 0x10 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x19ED PUSH2 0x16C4 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH1 0x20 SWAP2 PUSH2 0x1A1C PUSH2 0x1A15 PUSH2 0x172C SWAP4 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1773 JUMP JUMPDEST CALLDATASIZE SWAP2 PUSH2 0xAFE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 PUSH2 0x171F DUP4 PUSH2 0x52B JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1A5A SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xBE4 JUMP JUMPDEST SWAP1 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1A73 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST SWAP2 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1A8C SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xCAA JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP3 DUP4 GT PUSH2 0x73E JUMPI PUSH2 0x6DB SWAP4 PUSH2 0x1AAB PUSH2 0x1564 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST SWAP3 PUSH2 0x3051 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1ACE DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1B1F SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xBE4 JUMP JUMPDEST SWAP1 PUSH1 0x24 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1B38 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST DUP2 MLOAD DUP2 MLOAD SUB PUSH2 0x1BE4 JUMPI PUSH2 0x1B4D DUP3 MLOAD ISZERO ISZERO PUSH2 0x4F7B JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x1BB2 JUMPI DUP1 PUSH2 0x1B77 PUSH2 0x1B70 PUSH2 0xDC4 PUSH2 0x125E PUSH2 0x1BAD SWAP6 DUP9 PUSH2 0x34AC JUMP JUMPDEST ISZERO ISZERO PUSH2 0x4FB6 JUMP JUMPDEST PUSH2 0x1B8C PUSH2 0x1B84 DUP3 DUP6 PUSH2 0x34AC JUMP JUMPDEST MLOAD ISZERO ISZERO PUSH2 0x4FF1 JUMP JUMPDEST PUSH2 0x1294 PUSH2 0x1B9C PUSH2 0x125E DUP4 DUP8 PUSH2 0x34AC JUMP JUMPDEST PUSH2 0x1BA6 DUP4 DUP7 PUSH2 0x34AC JUMP JUMPDEST MLOAD SWAP1 PUSH2 0x5050 JUMP JUMPDEST PUSH2 0x1B50 JUMP JUMPDEST POP PUSH32 0x3BE9B2A692D7F70F180696D23AB769875FEC1B9EC86909E5E62E96E3D709CD0 SWAP2 PUSH2 0x86B PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 DUP4 PUSH2 0x502B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x82E4E4C2F2E640D8CADCCEE8D040DAD2E6DAC2E8C6D PUSH1 0x53 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x1C42 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x1C34 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x1CF1 PUSH2 0x1C93 PUSH32 0x0 PUSH2 0x44C4 JUMP JUMPDEST PUSH2 0x6DB PUSH2 0x1CBF PUSH32 0x0 PUSH2 0x45BD JUMP JUMPDEST PUSH2 0x1CFF PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1CCF DUP4 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 MLOAD SWAP6 DUP7 SWAP6 PUSH1 0xF PUSH1 0xF8 SHL DUP8 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0xE0 DUP8 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x40 DUP8 ADD MSTORE PUSH2 0x5B9 JUMP JUMPDEST SWAP1 CHAINID PUSH1 0x60 DUP6 ADD MSTORE ADDRESS PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0x0 PUSH1 0xA0 DUP6 ADD MSTORE DUP4 DUP3 SUB PUSH1 0xC0 DUP6 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x1D3C PUSH1 0x4 CALLDATALOAD PUSH2 0x3BDD JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x0 DUP3 SWAP2 PUSH1 0x5 DUP5 GT PUSH2 0x1D94 JUMPI JUMPDEST PUSH2 0x1D57 SWAP4 POP PUSH2 0x4D95 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x1D6C JUMPI POP POP PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0xA PUSH2 0x1D79 PUSH1 0x20 SWAP4 PUSH2 0x3AA6 JUMP JUMPDEST SWAP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C5D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR PUSH2 0x13BD JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x1D9F DUP2 PUSH2 0x480A JUMP JUMPDEST DUP2 SUB SWAP1 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x1D57 SWAP4 PUSH1 0xA DUP4 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C5D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x1DDD JUMPI POP SWAP2 PUSH2 0x1D4D JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x1DE9 SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP1 PUSH2 0x1D4D JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1E0B PUSH2 0x16C4 JUMP JUMPDEST SWAP1 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH2 0x1E19 DUP4 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x1230 PUSH2 0x1E3E PUSH2 0x1ECB SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE PUSH2 0x1EC5 SWAP1 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 ADD SWAP2 PUSH32 0xF2AAD550CF55F045CB27E9C559F9889FDFB6E6CDAA032301D6EA397784AE51D7 DUP4 MSTORE DUP9 PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0xFF DUP9 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP11 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH2 0x1EBD DUP2 PUSH2 0x546 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 PUSH2 0x438A JUMP JUMPDEST DUP7 PUSH2 0x4677 JUMP JUMPDEST PUSH2 0x1EE6 JUMPI SWAP1 PUSH2 0x1564 SWAP2 PUSH2 0x6DB SWAP4 PUSH2 0x1EE0 PUSH2 0x2F00 JUMP JUMPDEST SWAP3 PUSH2 0x35BB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x94AB6C07 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x981 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0x4 SLOAD PUSH2 0x1F4D DUP2 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x957 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1F76 JUMPI PUSH2 0x6DB DUP6 PUSH2 0x8F0 DUP2 DUP8 SUB DUP3 PUSH2 0x598 JUMP JUMPDEST SWAP3 POP PUSH1 0x4 DUP4 MSTORE PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B JUMPDEST DUP3 DUP5 LT PUSH2 0x1FB9 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0x8F0 DUP3 PUSH2 0x6DB PUSH2 0x8E0 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x1F9E JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x64 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x200A DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x2061 SWAP2 PUSH2 0x202F PUSH1 0x20 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST SUB DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL DUP1 ISZERO PUSH2 0xF85 JUMPI PUSH2 0x6DB SWAP2 PUSH1 0x0 SWAP2 PUSH2 0x20B2 JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH2 0x20CA SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xFB0 JUMPI PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST CODESIZE PUSH2 0x20A1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x20ED DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 PUSH2 0x2119 SWAP1 PUSH2 0x49C9 JUMP JUMPDEST AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH2 0x2119 PUSH2 0x4935 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2162 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH2 0x216A PUSH2 0x3786 JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH32 0x8F74EA46EF7894F65EABFB5E6E695DE773A000B47C529AB559178069B226401 PUSH1 0x40 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP5 AND SWAP4 DUP2 MLOAD SWAP1 DUP5 AND DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x13 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x21E3 PUSH1 0x4 CALLDATALOAD PUSH2 0x21D9 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x3E7E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2232 DUP2 PUSH1 0x0 MSTORE PUSH1 0x1F PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x6 DUP2 ADD SWAP1 PUSH2 0x224D PUSH2 0x2248 PUSH2 0x1230 DUP5 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x551F JUMP JUMPDEST PUSH2 0x225C PUSH1 0x2 DUP3 ADD SLOAD TIMESTAMP LT PUSH2 0x556B JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x2277 SWAP1 SLOAD ISZERO ISZERO PUSH2 0x55AA JUMP JUMPDEST PUSH1 0x40 MLOAD CALLER PUSH1 0x60 SHL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x22B6 SWAP1 PUSH2 0x22AD DUP2 PUSH1 0x34 DUP2 ADD JUMPDEST SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x5 DUP4 ADD PUSH2 0x55EA JUMP JUMPDEST PUSH1 0x7 PUSH1 0x8 DUP3 ADD SWAP2 PUSH2 0x22C7 DUP4 SLOAD PUSH2 0x3487 JUMP JUMPDEST SWAP3 DUP4 SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP7 DUP2 MSTORE CALLER PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0x9F1B808CCD95CFAD6377948752267D2AD18CBD81217EC7ABD183A497D47C81D1 SWAP1 PUSH1 0x60 SWAP1 LOG1 ADD SLOAD GT ISZERO PUSH2 0x230E JUMPI STOP JUMPDEST DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH32 0x712AE1383F79AC853F8D882153778E0260EF8F03B504E2866E0593E04D2B291F SWAP1 PUSH2 0x86B SWAP1 PUSH2 0x1564 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 ADD SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0xF SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x23B5 PUSH1 0x4 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH2 0x23C0 PUSH1 0x24 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x44 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x23E0 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x23F9 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x2412 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST POP PUSH2 0x6DB PUSH2 0x241E PUSH2 0x37FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x172C PUSH1 0x4 CALLDATALOAD PUSH2 0x301F JUMP JUMPDEST PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x246F DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 SWAP2 PUSH2 0x2496 PUSH2 0x21 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x1773 JUMP JUMPDEST SWAP1 PUSH2 0x249F PUSH2 0x3786 JUMP JUMPDEST DUP2 PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 DUP4 CALLDATACOPY DUP2 ADD DUP5 DUP2 MSTORE SUB SWAP2 PUSH1 0x24 CALLDATALOAD SWAP1 GAS CALL PUSH2 0x24BD PUSH2 0x3756 JUMP JUMPDEST SWAP1 PUSH2 0x3FE3 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x24E0 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD PUSH2 0x24EF PUSH2 0x16D4 JUMP JUMPDEST DUP4 TIMESTAMP GT PUSH2 0x2577 JUMPI PUSH2 0x256B PUSH2 0x21 SWAP5 PUSH2 0x2572 SWAP3 PUSH1 0x40 MLOAD SWAP1 PUSH1 0x20 DUP3 ADD SWAP3 PUSH32 0xE48329057BFD03D55E49B547132E39CFFD9C1820AD7B9D4C5307691425D15ADF DUP5 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x40 DUP5 ADD MSTORE DUP7 PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x80 DUP3 MSTORE PUSH2 0x2553 DUP3 PUSH2 0x561 JUMP JUMPDEST PUSH2 0x2566 PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH1 0x84 CALLDATALOAD SWAP4 MLOAD SWAP1 KECCAK256 PUSH2 0x438A JUMP JUMPDEST PUSH2 0x4257 JUMP JUMPDEST SWAP2 DUP3 PUSH2 0x400C JUMP JUMPDEST PUSH2 0x3C16 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2341D787 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x172C PUSH2 0x25A3 CALLDATASIZE PUSH2 0xD2A JUMP JUMPDEST SWAP3 SWAP2 SWAP1 SWAP2 PUSH2 0x2FA5 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x25DD SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x73E JUMPI PUSH32 0x2DE0B4AD2878FFF8E0328D13D59576E6595E750E974AEC7069BD4E182D2D5AAF PUSH2 0x11F2 PUSH2 0x261C PUSH2 0x6DB SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xC4C JUMP JUMPDEST SWAP3 PUSH2 0x26D6 PUSH1 0x44 CALLDATALOAD SWAP5 PUSH2 0x2630 DUP4 MLOAD ISZERO ISZERO PUSH2 0x50FC JUMP JUMPDEST PUSH2 0x263C DUP2 MLOAD ISZERO ISZERO PUSH2 0x513A JUMP JUMPDEST PUSH2 0x2647 TIMESTAMP DUP8 GT PUSH2 0x517C JUMP JUMPDEST PUSH1 0x20 SLOAD SWAP6 PUSH2 0x265C PUSH2 0x2657 DUP9 PUSH2 0x3487 JUMP JUMPDEST PUSH1 0x20 SSTORE JUMP JUMPDEST PUSH2 0x2664 PUSH2 0x51BB JUMP JUMPDEST PUSH2 0x267D PUSH2 0x2676 PUSH1 0x2 SLOAD PUSH1 0x21 SLOAD SWAP1 PUSH2 0x408F JUMP JUMPDEST PUSH1 0x64 SWAP1 DIV SWAP1 JUMP JUMPDEST SWAP2 PUSH2 0x2686 PUSH2 0xAB4 JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x64 CALLDATALOAD PUSH1 0x60 DUP5 ADD MSTORE CALLER PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0x0 PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x100 DUP3 ADD MSTORE PUSH2 0x26D1 DUP7 PUSH1 0x0 MSTORE PUSH1 0x1F PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x5453 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 CALLER DUP7 DUP5 PUSH2 0x54F7 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x13 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x6DB PUSH1 0x40 MLOAD PUSH2 0x272D DUP2 PUSH2 0x510 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH32 0x737570706F72743D627261766F2671756F72756D3D666F722C6162737461696E PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH2 0x27C5 PUSH1 0x4 CALLDATALOAD PUSH2 0x278D DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH2 0x279A DUP3 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x1 DUP4 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0xF2AAD550CF55F045CB27E9C559F9889FDFB6E6CDAA032301D6EA397784AE51D7 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH2 0x73E JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x2835 PUSH2 0x2809 JUMP JUMPDEST PUSH2 0x283D PUSH2 0x3786 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP1 DUP3 AND SWAP2 DUP3 ISZERO PUSH2 0x28AA JUMPI PUSH32 0x7E3F7F0708A84DE9203036ABAA450DCCC85AD5FF52F78C170F3EDB55CF5E8828 PUSH1 0x40 PUSH10 0xFFFFFFFF000000000000 SWAP4 PUSH1 0x10 SLOAD SWAP6 DUP3 MLOAD SWAP2 DUP8 PUSH1 0x30 SHR AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x30 SHL AND SWAP1 PUSH10 0xFFFFFFFF000000000000 NOT AND OR PUSH1 0x10 SSTORE PUSH1 0x0 DUP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF1CFBF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x2061 PUSH1 0x20 PUSH1 0x4 CALLDATALOAD PUSH2 0x28E5 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x28F3 DUP2 PUSH2 0x52B JUMP JUMPDEST MSTORE PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2941 PUSH2 0x3786 JUMP JUMPDEST PUSH1 0xF SLOAD PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0xCCB45DA8D5717E6C4544694297C4BA5CF151D455C9BB0ED4FC7A38411BC05461 SWAP2 LOG1 PUSH1 0xF SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x2997 DUP2 PUSH2 0x984 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH2 0x73E JUMPI PUSH2 0x6DB SWAP2 PUSH2 0x29E7 SWAP2 PUSH2 0x29B8 PUSH2 0x3FCA JUMP JUMPDEST POP PUSH2 0x29C1 PUSH2 0x3FCA JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x29E1 PUSH2 0x3FCA JUMP JUMPDEST POP PUSH2 0x3AB5 JUMP JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 PUSH2 0x29F5 DUP3 PUSH2 0x510 JUMP JUMPDEST SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP1 DUP4 MSTORE PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHR PUSH1 0x20 SWAP3 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP2 DUP3 SWAP2 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH2 0x2A4D PUSH1 0x4 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH2 0x2A58 PUSH1 0x24 CALLDATALOAD PUSH2 0x984 JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x73E JUMPI PUSH2 0x2A77 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB35 JUMP JUMPDEST POP PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0xBBB JUMPI PUSH1 0x40 MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0x16 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x2AAC DUP3 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x2B23 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2ACA JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x16 PUSH1 0x0 MSTORE PUSH32 0xD833147D7DC355BA459FC788F669E58CFAF9DC25DDCD0702E87D69C7B5124289 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x2B0B JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2AF9 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP4 SWAP5 POP PUSH1 0xFF SWAP3 SWAP2 SWAP3 NOT AND DUP4 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x2B50 DUP3 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x2B23 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2B6E JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x17 PUSH1 0x0 MSTORE PUSH32 0xC624B66CC0138B8FABC209247F72D758E1CF3343756D543BADBF24212BED8C15 SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x2BAF JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2B9D JUMP JUMPDEST PUSH1 0x18 SLOAD PUSH1 0x0 SWAP3 SWAP2 PUSH2 0x2BD7 DUP3 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP3 MSTORE SWAP2 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x2B23 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2BF5 JUMPI POP POP POP JUMP JUMPDEST SWAP2 SWAP3 SWAP4 POP PUSH1 0x18 PUSH1 0x0 MSTORE PUSH32 0xB13D2D76D1F4B7BE834882E410B3E3A8AFAF69F83600AE24DB354391D2378D2E SWAP2 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x2C36 JUMPI POP POP PUSH1 0x20 SWAP3 POP ADD ADD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP6 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2C24 JUMP JUMPDEST SWAP8 SWAP5 SWAP10 SWAP9 SWAP6 SWAP3 PUSH2 0x2C93 SWAP1 PUSH2 0x2C85 PUSH2 0x2CA1 SWAP5 PUSH2 0x2C77 PUSH2 0x100 SWAP12 SWAP9 SWAP6 DUP14 PUSH2 0x120 SWAP1 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST DUP13 DUP2 SUB PUSH1 0x20 DUP15 ADD MSTORE SWAP1 PUSH2 0x5B9 JUMP JUMPDEST SWAP1 DUP11 DUP3 SUB PUSH1 0x40 DUP13 ADD MSTORE PUSH2 0x5B9 JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x60 DUP11 ADD MSTORE PUSH2 0x5B9 JUMP JUMPDEST SWAP8 PUSH1 0x80 DUP8 ADD MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE ISZERO ISZERO SWAP2 ADD MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x981 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP2 DUP2 PUSH1 0x15 SLOAD PUSH2 0x2CE1 DUP2 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP5 MSTORE SWAP4 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x2DC9 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2D6C JUMPI JUMPDEST POP POP PUSH2 0x2D09 SWAP3 POP SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x2D21 DUP3 PUSH2 0x2D1A DUP2 PUSH2 0x2A9C JUMP JUMPDEST SUB DUP4 PUSH2 0x598 JUMP JUMPDEST PUSH2 0x6DB PUSH1 0x40 MLOAD PUSH2 0x2D3B DUP2 PUSH2 0x2D34 DUP2 PUSH2 0x2B40 JUMP JUMPDEST SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D4B DUP2 PUSH2 0x2D34 DUP2 PUSH2 0x2BC7 JUMP JUMPDEST PUSH1 0x19 SLOAD PUSH1 0x1A SLOAD PUSH1 0x1C SLOAD SWAP2 PUSH1 0x1D SLOAD SWAP4 PUSH1 0xFF PUSH1 0x1E SLOAD AND SWAP6 PUSH1 0x40 MLOAD SWAP10 DUP11 SWAP10 DUP11 PUSH2 0x2C4E JUMP JUMPDEST SWAP2 POP PUSH1 0x15 DUP3 MSTORE PUSH32 0x55F448FDEA98C4D29EB340757EF0A66CD03DBB9538908A6A81D96026B71EC475 JUMPDEST DUP5 DUP4 LT PUSH2 0x2DAE JUMPI POP PUSH2 0x2D09 SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE DUP1 PUSH2 0x2CFB JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x2D94 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 SWAP3 POP PUSH2 0x2D09 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE DUP1 PUSH2 0x2CFB JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x40 MLOAD PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP1 CALLDATALOAD SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xF85 JUMPI PUSH2 0x6DB SWAP3 PUSH1 0x64 SWAP3 PUSH2 0x2E71 SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x2E83 JUMPI JUMPDEST POP PUSH2 0x2E6B SWAP1 PUSH2 0x3ACD JUMP JUMPDEST SWAP1 PUSH2 0x408F JUMP JUMPDEST DIV PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 SWAP2 SWAP1 PUSH1 0x20 DUP4 ADD SWAP3 MSTORE JUMP JUMPDEST PUSH2 0x2E6B SWAP2 SWAP3 POP PUSH2 0x2EA0 SWAP1 PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xFB0 JUMPI PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x2E61 JUMP JUMPDEST CALLVALUE PUSH2 0x73E JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x73E JUMPI PUSH1 0x40 MLOAD PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0xBBB JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x2F0D DUP3 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP3 MSTORE JUMP JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x2F33 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x2F25 JUMP JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 SWAP3 ADD SWAP2 DUP3 DUP2 DUP4 PUSH1 0x5 SHL DUP6 ADD SWAP6 ADD SWAP4 PUSH1 0x0 SWAP2 JUMPDEST DUP5 DUP4 LT PUSH2 0x2F7B JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 DUP5 DUP1 PUSH2 0x2F95 DUP4 DUP6 PUSH1 0x1 SWAP6 SUB DUP8 MSTORE DUP11 MLOAD PUSH2 0x5B9 JUMP JUMPDEST SWAP9 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP5 SWAP4 SWAP3 SWAP1 PUSH2 0x2F6B JUMP JUMPDEST SWAP3 SWAP1 PUSH2 0x2FF1 SWAP3 PUSH2 0x3003 SWAP3 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP3 PUSH2 0x2FE1 PUSH2 0x2FCE PUSH1 0x20 DUP7 ADD SWAP10 PUSH1 0x80 DUP12 MSTORE PUSH1 0xA0 DUP8 ADD SWAP1 PUSH2 0x2F13 JUMP JUMPDEST PUSH1 0x1F NOT SWAP7 DUP8 DUP8 DUP4 SUB ADD PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST SWAP1 DUP6 DUP6 DUP4 SUB ADD PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x2F50 JUMP JUMPDEST SWAP1 PUSH1 0x80 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x598 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 PUSH4 0xFFFFFFFF DUP3 PUSH1 0xD0 SHR AND SWAP2 PUSH1 0xA0 SHR AND ADD DUP2 DUP2 GT PUSH2 0x143E JUMPI AND SWAP1 JUMP JUMPDEST SWAP2 SWAP4 SWAP3 SWAP1 SWAP4 PUSH2 0x3060 DUP3 CALLER PUSH2 0x38BB JUMP JUMPDEST ISZERO PUSH2 0x315D JUMPI PUSH1 0xF SLOAD SWAP5 DUP6 PUSH2 0x307C JUMPI JUMPDEST PUSH2 0x8A0 SWAP5 SWAP6 POP CALLER SWAP4 PUSH2 0x32C8 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER DUP2 AND PUSH1 0x0 NOT ADD DUP2 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x30CD SWAP2 PUSH1 0x20 SWAP2 PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x30A6 DUP2 PUSH2 0x52B JUMP JUMPDEST MSTORE PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE SWAP2 DUP3 SWAP1 DUP2 SWAP1 PUSH1 0x44 DUP3 ADD SWAP1 JUMP JUMPDEST SUB DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x313F JUMPI JUMPDEST POP DUP7 DUP2 LT PUSH2 0x3118 JUMPI POP PUSH2 0x306F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6121770B PUSH1 0xE1 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH2 0x3157 SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xFB0 JUMPI PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST CODESIZE PUSH2 0x310A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD9B39557 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 SWAP1 PUSH2 0x3191 PUSH1 0x0 SWAP4 SWAP6 SWAP5 PUSH1 0x60 DUP4 ADD SWAP7 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST ADD MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x143E JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x143E JUMPI JUMP JUMPDEST SWAP1 PUSH2 0x31BA DUP3 PUSH2 0xBCD JUMP JUMPDEST PUSH2 0x31C7 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x598 JUMP JUMPDEST DUP3 DUP2 MSTORE DUP1 SWAP3 PUSH2 0x31D8 PUSH1 0x1F NOT SWAP2 PUSH2 0xBCD JUMP JUMPDEST ADD SWAP1 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x31E9 JUMPI POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x60 PUSH1 0x20 DUP1 SWAP4 DUP6 ADD ADD MSTORE ADD PUSH2 0x31DD JUMP JUMPDEST SWAP6 SWAP3 PUSH2 0x322D SWAP1 PUSH2 0x323B SWAP4 SWAP12 SWAP11 SWAP9 SWAP10 SWAP7 SWAP6 SWAP3 DUP9 MSTORE PUSH1 0x20 SWAP12 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP13 DUP10 ADD MSTORE PUSH2 0x120 DUP1 PUSH1 0x40 DUP11 ADD MSTORE DUP9 ADD SWAP1 PUSH2 0x2F13 JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x60 DUP9 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST SWAP8 DUP5 DUP10 SUB PUSH1 0x80 DUP7 ADD MSTORE DUP3 MLOAD DUP1 DUP11 MSTORE DUP2 DUP11 ADD SWAP2 DUP1 DUP1 DUP4 PUSH1 0x5 SHL DUP14 ADD ADD SWAP6 ADD SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP4 DUP3 LT PUSH2 0x329A JUMPI POP POP POP POP POP PUSH2 0x8A0 SWAP7 SWAP8 POP SWAP1 PUSH2 0x3281 SWAP2 DUP5 DUP3 SUB PUSH1 0xA0 DUP7 ADD MSTORE PUSH2 0x2F50 JUMP JUMPDEST SWAP4 PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x100 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x5B9 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP6 DUP4 DUP1 PUSH2 0x32B9 DUP16 SWAP4 PUSH1 0x1 SWAP5 PUSH1 0x1F NOT SWAP1 DUP3 SUB ADD DUP7 MSTORE DUP11 MLOAD PUSH2 0x5B9 JUMP JUMPDEST SWAP9 ADD SWAP3 ADD SWAP3 ADD SWAP1 SWAP4 SWAP3 SWAP2 PUSH2 0x325D JUMP JUMPDEST SWAP2 SWAP5 SWAP4 SWAP1 SWAP3 SWAP5 PUSH2 0x32E0 DUP7 MLOAD PUSH1 0x20 DUP9 ADD KECCAK256 DUP3 DUP7 DUP7 PUSH2 0x2FA5 JUMP JUMPDEST SWAP6 DUP4 MLOAD DUP6 MLOAD SWAP1 DUP2 DUP2 EQ DUP1 ISZERO SWAP1 PUSH2 0x347C JUMPI JUMPDEST DUP1 ISZERO PUSH2 0x3474 JUMPI JUMPDEST PUSH2 0x344B JUMPI POP POP PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 PUSH2 0x332D PUSH2 0x331E DUP11 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xA0 SHR PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST AND PUSH2 0x3424 JUMPI PUSH32 0x7D84A6263AE0D98D3329BD7B46BB4E8D6F98CD35A7ADB45C274C8B7FD5EBD5E0 SWAP6 PUSH2 0x341F SWAP4 PUSH4 0xFFFFFFFF PUSH2 0x336F PUSH1 0x10 SLOAD SWAP4 DUP1 DUP6 AND SWAP1 NUMBER AND PUSH2 0x31A3 JUMP JUMPDEST SWAP3 PUSH1 0x30 SHR AND PUSH2 0x33FD PUSH2 0x338B DUP13 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND OR DUP2 SSTORE PUSH2 0x33D4 PUSH2 0x33B0 DUP7 PUSH2 0x4788 JUMP JUMPDEST DUP3 SLOAD PUSH6 0xFFFFFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0xA0 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFFFFFF PUSH1 0xA0 SHL AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x33DD DUP4 PUSH2 0x47BA JUMP JUMPDEST DUP2 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xD0 SHL NOT AND PUSH1 0xD0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xD0 SHL AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x3411 PUSH2 0x340A DUP10 MLOAD PUSH2 0x31B0 JUMP JUMPDEST SWAP2 DUP5 PUSH2 0x31A3 JUMP JUMPDEST SWAP4 PUSH1 0x40 MLOAD SWAP9 DUP10 SWAP9 DUP14 DUP11 PUSH2 0x31FA JUMP JUMPDEST SUB SWAP1 LOG1 JUMP JUMPDEST DUP8 PUSH2 0x342E DUP2 PUSH2 0x5718 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE SWAP2 DUP3 SWAP2 PUSH2 0x1132 SWAP2 PUSH1 0x4 DUP5 ADD PUSH2 0x3175 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x40 MLOAD PUSH4 0x447B05D PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST POP DUP1 ISZERO PUSH2 0x32F8 JUMP JUMPDEST POP DUP4 MLOAD DUP2 EQ ISZERO PUSH2 0x32F1 JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x143E JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH2 0x34C0 JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH2 0x3496 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 SWAP2 SWAP7 SWAP6 PUSH2 0x1230 PUSH2 0x357F SWAP2 PUSH2 0x3579 DUP11 PUSH2 0x34FB DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 PUSH1 0x1 DUP3 ADD SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH2 0x3506 CALLDATASIZE DUP9 DUP11 PUSH2 0xAFE JUMP JUMPDEST PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 DUP12 MLOAD PUSH1 0x20 DUP14 ADD KECCAK256 SWAP1 PUSH1 0x40 MLOAD SWAP3 PUSH1 0x20 DUP5 ADD SWAP5 PUSH32 0x3E83946653575F9A39005E1545185629E92736B7528AB20CA3816F315424A811 DUP7 MSTORE DUP14 PUSH1 0x40 DUP7 ADD MSTORE PUSH1 0xFF DUP14 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0xE0 DUP2 MSTORE PUSH2 0x1EBD DUP2 PUSH2 0x57C JUMP JUMPDEST DUP11 PUSH2 0x4677 JUMP JUMPDEST PUSH2 0x359A JUMPI PUSH2 0x8A0 SWAP6 SWAP7 SWAP2 PUSH2 0x3594 SWAP2 CALLDATASIZE SWAP2 PUSH2 0xAFE JUMP JUMPDEST SWAP3 PUSH2 0x3637 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x94AB6C07 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP2 PUSH2 0x8A0 SWAP4 SWAP2 PUSH1 0x40 MLOAD SWAP4 PUSH2 0x35CE DUP6 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP6 MSTORE PUSH2 0x3637 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 PUSH1 0xFF PUSH2 0x3603 SWAP4 PUSH2 0x8A0 SWAP8 SWAP6 DUP8 MSTORE AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xA0 PUSH1 0x60 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x5B9 JUMP JUMPDEST SWAP1 SWAP3 PUSH1 0xFF PUSH1 0x80 SWAP4 PUSH2 0x8A0 SWAP7 SWAP6 DUP5 MSTORE AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD MSTORE DUP2 PUSH1 0x60 DUP3 ADD MSTORE ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST SWAP3 SWAP2 SWAP1 PUSH2 0x3643 DUP5 PUSH2 0x5718 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x2 PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x3728 JUMPI POP DUP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH2 0x369F PUSH2 0x3697 PUSH2 0x3691 PUSH2 0x3686 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH6 0xFFFFFFFFFFFF SWAP1 SLOAD PUSH1 0xA0 SHR AND SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST DUP4 PUSH2 0x3A29 JUMP JUMPDEST DUP4 DUP4 DUP8 PUSH2 0x3923 JUMP JUMPDEST SWAP5 DUP1 MLOAD ISZERO PUSH1 0x0 EQ PUSH2 0x36EC JUMPI POP PUSH2 0x36E6 PUSH32 0xB8E138887D0AA13BAB447E82DE9D5C1777041ECD21CA36BA824FF1E6C07DDDA4 SWAP4 DUP7 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP8 DUP6 PUSH2 0x3611 JUMP JUMPDEST SUB SWAP1 LOG2 SWAP1 JUMP JUMPDEST PUSH2 0x36E6 SWAP1 PUSH32 0xE2BABFBAC5889A709B63BB7F598B324E08BC5A4FB9EC647FB3CBC9EC07EB8712 SWAP5 DUP8 PUSH1 0x40 MLOAD SWAP6 DUP7 SWAP6 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP9 DUP7 PUSH2 0x35D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 SWAP2 PUSH2 0x374D SWAP1 PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x3781 JUMPI RETURNDATASIZE SWAP1 PUSH2 0x3767 DUP3 PUSH2 0xAE3 JUMP JUMPDEST SWAP2 PUSH2 0x3775 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x598 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY JUMP JUMPDEST PUSH1 0x60 SWAP1 JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 SUB PUSH2 0x37E2 JUMPI ADDRESS SUB PUSH2 0x37A1 JUMPI JUMP JUMPDEST PUSH2 0x37AA CALLDATASIZE PUSH2 0xAE3 JUMP JUMPDEST PUSH2 0x37B7 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x598 JUMP JUMPDEST CALLDATASIZE DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 CALLDATASIZE PUSH1 0x0 DUP4 CALLDATACOPY PUSH1 0x0 PUSH1 0x20 CALLDATASIZE DUP4 ADD ADD MSTORE MLOAD SWAP1 KECCAK256 JUMPDEST DUP1 PUSH2 0x37DA PUSH2 0x4F23 JUMP JUMPDEST SUB PUSH2 0x37D1 JUMPI POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x47096E47 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x13 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0xBBB JUMPI PUSH4 0xBC197C81 PUSH1 0xE0 SHL SWAP1 JUMP JUMPDEST PUSH2 0x3820 DUP2 PUSH2 0x5718 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x10 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x383D JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x3860 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x3872 DUP2 PUSH2 0x5718 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x30 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x388F JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x38B2 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x30 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 DUP1 MLOAD PUSH1 0x34 DUP2 LT PUSH2 0x391B JUMPI PUSH1 0x13 NOT DUP2 DUP4 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xB0 SHL SUB NOT AND PUSH10 0xDC8F8D908F908C9A8DC3 PUSH1 0xB0 SHL ADD PUSH2 0x391B JUMPI PUSH2 0x38FA SWAP2 PUSH1 0x29 NOT DUP3 ADD SWAP1 PUSH2 0x40A2 JUMP JUMPDEST SWAP1 ISZERO SWAP2 DUP3 ISZERO PUSH2 0x3908 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 AND EQ SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x393A SWAP1 SWAP3 SWAP2 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP2 PUSH1 0x3 DUP4 ADD PUSH2 0x3965 PUSH2 0x395E DUP4 DUP4 SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x39ED JUMPI PUSH2 0x398B PUSH1 0xFF SWAP4 SWAP3 PUSH2 0x3998 SWAP3 SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST AND DUP1 PUSH2 0x39AF JUMPI POP PUSH2 0x39AA DUP3 DUP3 SLOAD PUSH2 0x31A3 JUMP JUMPDEST SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x39C6 JUMPI POP PUSH1 0x1 ADD PUSH2 0x39AA DUP3 DUP3 SLOAD PUSH2 0x31A3 JUMP JUMPDEST PUSH1 0x2 SUB PUSH2 0x39DB JUMPI PUSH1 0x2 ADD PUSH2 0x39AA DUP3 DUP3 SLOAD PUSH2 0x31A3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3599BE1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x71C6AF49 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x73E JUMPI MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x20 SWAP1 DUP3 SWAP1 PUSH1 0x44 SWAP1 DUP3 SWAP1 PUSH32 0x0 AND GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x3A8E JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x8A0 SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xFB0 JUMPI PUSH2 0xFA1 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP3 GT PUSH2 0x143E JUMPI JUMP JUMPDEST DUP1 SLOAD DUP3 LT ISZERO PUSH2 0x34C0 JUMPI PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP1 PUSH1 0x0 NOT DUP3 ADD DUP3 DUP2 GT PUSH2 0x143E JUMPI DUP3 GT ISZERO PUSH2 0x34C0 JUMPI PUSH1 0x0 SWAP2 PUSH1 0x12 DUP4 MSTORE PUSH32 0xBB8A6A4669BA250D26CD7A459ECA9D215F8307E33AEBE50379BC5A3617EC3443 DUP2 ADD SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP3 DUP2 DUP5 DUP3 AND GT ISZERO PUSH2 0x3BD2 JUMPI POP PUSH2 0x3B2C SWAP1 PUSH2 0x4788 JUMP JUMPDEST DUP4 SWAP1 DUP3 PUSH1 0x5 DUP2 GT PUSH2 0x3B7C JUMPI JUMPDEST POP PUSH2 0x3B43 SWAP4 POP PUSH2 0x4DFE JUMP JUMPDEST DUP1 PUSH2 0x3B56 JUMPI POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x3B61 PUSH1 0x12 SWAP2 PUSH2 0x3AA6 JUMP JUMPDEST SWAP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C3D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR PUSH2 0x3B4A JUMP JUMPDEST SWAP1 SWAP3 PUSH2 0x3B87 DUP3 PUSH2 0x480A JUMP JUMPDEST DUP3 SUB SWAP2 DUP3 GT PUSH2 0x143E JUMPI PUSH2 0x3B43 SWAP5 PUSH1 0x12 DUP8 MSTORE DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C3D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x3BC0 JUMPI POP SWAP2 JUMPDEST CODESIZE PUSH2 0x3B38 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x3BCC SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP1 PUSH2 0x3BBA JUMP JUMPDEST SWAP4 POP POP POP POP PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP1 DUP3 LT ISZERO PUSH2 0x3BF8 JUMPI POP PUSH2 0x8A0 SWAP1 PUSH2 0x4788 JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0x7669FC0F PUSH1 0xE1 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP7 DUP6 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH2 0xAE1 SWAP7 SWAP5 AND SWAP5 PUSH2 0x3C93 SWAP4 SWAP1 SWAP3 DUP7 SWAP2 SWAP1 PUSH32 0x3134E8A2E6D97E929A7E54011EA5485D7D196DD5F0BA4D4EF95803E8E3FC257F SWAP1 DUP1 LOG4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST SWAP2 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND SWAP4 SWAP3 SWAP2 SWAP1 DUP2 AND SWAP1 DUP2 DUP6 EQ ISZERO DUP1 PUSH2 0x3DDD JUMPI JUMPDEST PUSH2 0x3CBD JUMPI JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH2 0x3D42 JUMPI JUMPDEST POP POP DUP3 PUSH2 0x3CD2 JUMPI JUMPDEST DUP1 DUP1 PUSH2 0x3CB6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 SWAP2 PUSH2 0x3D1F SWAP2 PUSH2 0x3D19 SWAP1 SWAP2 PUSH2 0x4755 JUMP JUMPDEST SWAP1 PUSH2 0x3DE6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE LOG2 CODESIZE DUP1 DUP1 PUSH2 0x3CCB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x3D62 DUP5 PUSH2 0x4755 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x3D76 DUP6 PUSH2 0x49C9 JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB DUP2 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x3DBA PUSH2 0x3DD3 SWAP2 PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 SWAP5 PUSH6 0xFFFFFFFFFFFF NUMBER AND SWAP1 PUSH2 0x4CD9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP6 AND DUP4 MSTORE SWAP4 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 DUP3 SWAP2 SWAP1 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG2 CODESIZE DUP1 PUSH2 0x3CC3 JUMP JUMPDEST POP DUP4 ISZERO ISZERO PUSH2 0x3CB1 JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x3DFB DUP6 PUSH2 0x49C9 JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x3E19 SWAP2 PUSH6 0xFFFFFFFFFFFF NUMBER AND SWAP1 PUSH2 0x4CD9 JUMP JUMPDEST SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x3E30 PUSH2 0x497F JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x3E19 SWAP1 PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x4C22 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x3E60 PUSH2 0x497F JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB SWAP1 DUP2 GT PUSH2 0x143E JUMPI PUSH2 0x3E19 SWAP1 PUSH6 0xFFFFFFFFFFFF NUMBER AND PUSH2 0x4C22 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 DUP6 ISZERO PUSH2 0x3F77 JUMPI DUP3 AND DUP1 ISZERO PUSH2 0x3F5E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP6 DUP5 DUP8 LT PUSH2 0x3F2F JUMPI DUP5 PUSH2 0xAE1 SWAP7 SWAP8 SUB PUSH2 0x3EE0 DUP5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD DUP9 ADD SWAP1 SSTORE SWAP1 MLOAD DUP7 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 SWAP1 LOG3 PUSH2 0x5695 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND ISZERO PUSH2 0xA4A JUMPI DUP2 AND ISZERO PUSH2 0xA31 JUMPI PUSH2 0x9E2 PUSH2 0x3FC7 SWAP3 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x3FD7 DUP3 PUSH2 0x510 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP4 DUP3 DUP2 MSTORE ADD MSTORE JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0xAE1 JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x3FFA JUMPI DUP1 MLOAD SWAP1 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE DUP1 SWAP3 SUB PUSH2 0x4038 JUMPI POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1D4B623 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST SWAP1 DUP2 PUSH1 0x1 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x2 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x143E JUMPI JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x4 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x10 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x143E JUMPI JUMP JUMPDEST DUP2 DUP2 MUL SWAP3 SWAP2 DUP2 ISZERO SWAP2 DUP5 DIV EQ OR ISZERO PUSH2 0x143E JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD DUP3 GT DUP1 ISZERO PUSH2 0x412B JUMPI JUMPDEST PUSH2 0x4102 JUMPI PUSH2 0x40BC DUP2 PUSH2 0x3195 JUMP JUMPDEST DUP3 GT DUP1 PUSH2 0x410D JUMPI JUMPDEST PUSH2 0x40CF SWAP1 ISZERO ISZERO PUSH2 0x4063 JUMP JUMPDEST PUSH1 0x28 ADD DUP1 PUSH1 0x28 GT PUSH2 0x143E JUMPI DUP2 DUP4 SUB DUP4 DUP2 GT PUSH2 0x143E JUMPI SUB PUSH2 0x4102 JUMPI PUSH2 0x40F2 SWAP3 PUSH2 0x4134 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 JUMP JUMPDEST POP POP POP PUSH1 0x0 SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST POP DUP3 DUP2 ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x60F PUSH1 0xF3 SHL EQ PUSH2 0x40C4 JUMP JUMPDEST POP DUP2 DUP2 GT PUSH2 0x40AF JUMP JUMPDEST SWAP3 SWAP1 SWAP3 PUSH2 0x4140 DUP5 PUSH2 0x3195 JUMP JUMPDEST DUP4 GT DUP1 PUSH2 0x41C7 JUMPI JUMPDEST PUSH2 0x4153 SWAP1 ISZERO ISZERO PUSH2 0x4063 JUMP JUMPDEST SWAP4 PUSH1 0x0 SWAP5 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x143E JUMPI SWAP2 SWAP3 SWAP1 JUMPDEST DUP2 DUP4 LT PUSH2 0x4174 JUMPI POP POP POP PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP4 PUSH1 0xFF PUSH2 0x4195 PUSH2 0x4190 PUSH1 0x20 DUP9 DUP7 ADD ADD MLOAD PUSH1 0xFF PUSH1 0xF8 SHL AND SWAP1 JUMP JUMPDEST PUSH2 0x41E5 JUMP JUMPDEST AND SWAP1 PUSH1 0xF DUP3 GT PUSH2 0x41BB JUMPI SWAP1 PUSH2 0x41AC PUSH2 0x41B3 SWAP3 PUSH2 0x4079 JUMP JUMPDEST ADD SWAP5 PUSH2 0x3487 JUMP JUMPDEST SWAP2 SWAP3 SWAP1 PUSH2 0x4164 JUMP JUMPDEST POP PUSH1 0x0 SWAP5 POP DUP5 SWAP4 POP POP POP JUMP JUMPDEST POP DUP1 DUP5 ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x60F PUSH1 0xF3 SHL EQ PUSH2 0x4148 JUMP JUMPDEST PUSH1 0xF8 SHR PUSH1 0x2F DUP2 GT DUP1 PUSH2 0x424D JUMPI JUMPDEST ISZERO PUSH2 0x4201 JUMPI PUSH1 0x2F NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 GT DUP1 PUSH2 0x4243 JUMPI JUMPDEST ISZERO PUSH2 0x421A JUMPI PUSH1 0x56 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 GT DUP1 PUSH2 0x4239 JUMPI JUMPDEST ISZERO PUSH2 0x4233 JUMPI PUSH1 0x36 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST POP PUSH1 0xFF SWAP1 JUMP JUMPDEST POP PUSH1 0x47 DUP2 LT PUSH2 0x4224 JUMP JUMPDEST POP PUSH1 0x67 DUP2 LT PUSH2 0x420B JUMP JUMPDEST POP PUSH1 0x3A DUP2 LT PUSH2 0x41F2 JUMP JUMPDEST SWAP2 PUSH2 0x8A0 SWAP4 SWAP2 PUSH2 0x4266 SWAP4 PUSH2 0x426F JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP3 PUSH2 0x42FD JUMP JUMPDEST SWAP2 SWAP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT PUSH2 0x42E7 JUMPI SWAP3 PUSH1 0x20 SWAP3 SWAP2 PUSH1 0xFF PUSH1 0x80 SWAP6 PUSH1 0x40 MLOAD SWAP5 DUP6 MSTORE AND DUP5 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x0 SWAP3 DUP4 SWAP2 DUP3 DUP1 MSTORE PUSH1 0x1 GAS STATICCALL ISZERO PUSH2 0xF85 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x42DE JUMPI SWAP2 DUP2 SWAP1 JUMP JUMPDEST POP DUP1 SWAP2 PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST POP POP POP PUSH1 0x0 SWAP2 PUSH1 0x3 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0x4 GT ISZERO PUSH2 0x1463 JUMPI JUMP JUMPDEST PUSH2 0x4306 DUP2 PUSH2 0x42F3 JUMP JUMPDEST DUP1 PUSH2 0x430F JUMPI POP POP JUMP JUMPDEST PUSH2 0x4318 DUP2 PUSH2 0x42F3 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x4332 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH2 0x433B DUP2 PUSH2 0x42F3 JUMP JUMPDEST PUSH1 0x2 DUP2 SUB PUSH2 0x435C JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST DUP1 PUSH2 0x4368 PUSH1 0x3 SWAP3 PUSH2 0x42F3 JUMP JUMPDEST EQ PUSH2 0x4370 JUMPI POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x42 SWAP1 PUSH2 0x4395 PUSH2 0x43B0 JUMP JUMPDEST SWAP1 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1901 PUSH1 0xF0 SHL DUP4 MSTORE PUSH1 0x2 DUP4 ADD MSTORE PUSH1 0x22 DUP3 ADD MSTORE KECCAK256 SWAP1 JUMP JUMPDEST ADDRESS PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x449B JUMPI JUMPDEST ISZERO PUSH2 0x440B JUMPI PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP3 MSTORE PUSH32 0x0 PUSH1 0x40 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH2 0x3003 DUP2 PUSH2 0x546 JUMP JUMPDEST POP PUSH32 0x0 CHAINID EQ PUSH2 0x43E2 JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x4502 JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x44F0 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x44E6 DUP4 PUSH2 0x510 JUMP JUMPDEST DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x5 SLOAD DUP2 PUSH1 0x0 PUSH2 0x4515 DUP4 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x459B JUMPI POP PUSH1 0x1 EQ PUSH2 0x453C JUMPI JUMPDEST POP PUSH2 0x8A0 SWAP3 POP SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0x36B6384B5ECA791C62761152D0C79BB0604C104A5FB6F4EB0703F3154BB3DB0 JUMPDEST DUP5 DUP4 LT PUSH2 0x4580 JUMPI POP PUSH2 0x8A0 SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x452F JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x4567 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 SWAP3 POP PUSH2 0x8A0 SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE PUSH2 0x452F JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x45DF JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x44F0 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x44E6 DUP4 PUSH2 0x510 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x6 SLOAD DUP2 PUSH1 0x0 PUSH2 0x45F2 DUP4 PUSH2 0x4A8 JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x459B JUMPI POP PUSH1 0x1 EQ PUSH2 0x4618 JUMPI POP PUSH2 0x8A0 SWAP3 POP SUB DUP3 PUSH2 0x598 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F JUMPDEST DUP5 DUP4 LT PUSH2 0x465C JUMPI POP PUSH2 0x8A0 SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x452F JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x4643 JUMP JUMPDEST SWAP1 SWAP2 DUP2 EXTCODESIZE PUSH2 0x469F JUMPI PUSH2 0x4689 SWAP2 SWAP3 PUSH2 0x4719 JUMP JUMPDEST POP PUSH2 0x4693 DUP2 PUSH2 0x42F3 JUMP JUMPDEST ISZERO SWAP2 DUP3 PUSH2 0x3908 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 SWAP2 PUSH1 0x40 MLOAD PUSH2 0x46D5 DUP2 PUSH2 0x229F PUSH1 0x20 DUP3 ADD SWAP5 PUSH4 0xB135D3F PUSH1 0xE1 SHL SWAP10 DUP11 DUP8 MSTORE PUSH1 0x24 DUP5 ADD MSTORE PUSH1 0x40 PUSH1 0x44 DUP5 ADD MSTORE PUSH1 0x64 DUP4 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST MLOAD SWAP2 GAS STATICCALL SWAP1 PUSH2 0x46E2 PUSH2 0x3756 JUMP JUMPDEST DUP3 PUSH2 0x470B JUMPI JUMPDEST DUP3 PUSH2 0x46F2 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH2 0x4707 SWAP2 SWAP3 POP PUSH1 0x20 DUP1 DUP3 MLOAD DUP4 ADD ADD SWAP2 ADD PUSH2 0x3A0E JUMP JUMPDEST EQ SWAP1 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP3 MLOAD LT ISZERO SWAP2 PUSH2 0x46E8 JUMP JUMPDEST DUP2 MLOAD SWAP2 SWAP1 PUSH1 0x41 DUP4 SUB PUSH2 0x474A JUMPI PUSH2 0x4743 SWAP3 POP PUSH1 0x20 DUP3 ADD MLOAD SWAP1 PUSH1 0x60 PUSH1 0x40 DUP5 ADD MLOAD SWAP4 ADD MLOAD PUSH1 0x0 BYTE SWAP1 PUSH2 0x426F JUMP JUMPDEST SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 PUSH1 0x2 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP2 GT PUSH2 0x4769 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0xD0 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x479B JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x30 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH4 0xFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x47CB JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x20 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST DUP2 ISZERO PUSH2 0x47F4 JUMPI DIV SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x8A0 JUMPI PUSH1 0x1 DUP2 PUSH1 0x1 PUSH1 0x80 SHL DUP2 LT ISZERO PUSH2 0x4923 JUMPI JUMPDEST PUSH2 0x48CB PUSH2 0x48C1 PUSH2 0x48B7 PUSH2 0x48AD PUSH2 0x48A3 PUSH2 0x4899 PUSH2 0x48D7 SWAP8 PUSH1 0x4 DUP9 PUSH1 0x1 PUSH1 0x40 SHL PUSH2 0x48D2 SWAP11 LT ISZERO PUSH2 0x4916 JUMPI JUMPDEST PUSH5 0x100000000 DUP2 LT ISZERO PUSH2 0x4909 JUMPI JUMPDEST PUSH3 0x10000 DUP2 LT ISZERO PUSH2 0x48FC JUMPI JUMPDEST PUSH2 0x100 DUP2 LT ISZERO PUSH2 0x48F0 JUMPI JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x48E4 JUMPI JUMPDEST LT ISZERO PUSH2 0x48DC JUMPI JUMPDEST PUSH1 0x3 MUL PUSH1 0x1 SHR PUSH2 0x4892 DUP2 DUP12 PUSH2 0x47EA JUMP JUMPDEST ADD PUSH1 0x1 SHR SWAP1 JUMP JUMPDEST PUSH2 0x4892 DUP2 DUP11 PUSH2 0x47EA JUMP JUMPDEST PUSH2 0x4892 DUP2 DUP10 PUSH2 0x47EA JUMP JUMPDEST PUSH2 0x4892 DUP2 DUP9 PUSH2 0x47EA JUMP JUMPDEST PUSH2 0x4892 DUP2 DUP8 PUSH2 0x47EA JUMP JUMPDEST PUSH2 0x4892 DUP2 DUP7 PUSH2 0x47EA JUMP JUMPDEST DUP1 SWAP4 PUSH2 0x47EA JUMP JUMPDEST DUP3 GT SWAP1 JUMP JUMPDEST SWAP1 SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 SHL PUSH2 0x4882 JUMP JUMPDEST DUP2 SHR SWAP2 PUSH1 0x2 SHL SWAP2 PUSH2 0x487B JUMP JUMPDEST PUSH1 0x8 SHR SWAP2 DUP2 SHL SWAP2 PUSH2 0x4871 JUMP JUMPDEST PUSH1 0x10 SHR SWAP2 PUSH1 0x8 SHL SWAP2 PUSH2 0x4866 JUMP JUMPDEST PUSH1 0x20 SHR SWAP2 PUSH1 0x10 SHL SWAP2 PUSH2 0x485A JUMP JUMPDEST PUSH1 0x40 SHR SWAP2 PUSH1 0x20 SHL SWAP2 PUSH2 0x484C JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 POP PUSH1 0x80 DUP3 SWAP1 SHR PUSH2 0x4823 JUMP JUMPDEST PUSH1 0x12 SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x4947 JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x143E JUMPI PUSH1 0x12 PUSH32 0xBB8A6A4669BA250D26CD7A459ECA9D215F8307E33AEBE50379BC5A3617EC3443 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x4991 JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x143E JUMPI PUSH1 0xA PUSH32 0xC65A7BB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2A7 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x0 SWAP2 DUP2 PUSH2 0x49DB JUMPI POP POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT SWAP3 DUP3 DUP5 DUP2 ADD GT PUSH2 0x143E JUMPI PUSH1 0x20 SWAP2 DUP2 MSTORE KECCAK256 ADD ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x12 SLOAD SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0x50B JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0x12 SSTORE DUP3 LT ISZERO PUSH2 0x34C0 JUMPI PUSH2 0xAE1 SWAP2 PUSH1 0x12 PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C3D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 PUSH2 0x4A6D PUSH6 0xFFFFFFFFFFFF DUP3 MLOAD AND DUP4 SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x20 ADD MLOAD DUP2 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFFFFFF NOT AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0x50B JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0xA SSTORE DUP3 LT ISZERO PUSH2 0x34C0 JUMPI PUSH2 0xAE1 SWAP2 PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C5D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 PUSH2 0x4A6D PUSH6 0xFFFFFFFFFFFF DUP3 MLOAD AND DUP4 SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 LT ISZERO PUSH2 0x50B JUMPI PUSH2 0x4B0C SWAP2 PUSH1 0x1 DUP3 ADD DUP2 SSTORE PUSH2 0x3AB5 JUMP JUMPDEST PUSH2 0x4B34 JUMPI DUP2 MLOAD DUP2 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP2 SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0xAE1 SWAP2 PUSH2 0x4A6D JUMP JUMPDEST PUSH2 0x49F7 JUMP JUMPDEST PUSH1 0x12 SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x4BF8 JUMPI PUSH2 0x4B51 PUSH2 0x4B69 SWAP2 PUSH2 0x3AA6 JUMP JUMPDEST PUSH1 0x12 PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C3D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 JUMP JUMPDEST SWAP1 DUP2 SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP5 AND SWAP2 DUP4 AND DUP1 DUP4 GT PUSH2 0x4BE6 JUMPI DUP7 SWAP3 SUB PUSH2 0x4BAE JUMPI PUSH2 0x4BA7 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x30 SHR SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH2 0x4BE1 SWAP1 PUSH2 0x4BCD PUSH2 0x4BBF PUSH2 0xAD4 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP3 AND DUP3 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x4A0D JUMP JUMPDEST PUSH2 0x4BA7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH2 0x4C1C SWAP1 PUSH2 0x4C08 PUSH2 0x4BBF PUSH2 0xAD4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x4A0D JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x4CB5 JUMPI PUSH2 0x4C3A PUSH2 0x4C52 SWAP2 PUSH2 0x3AA6 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C5D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 JUMP JUMPDEST SWAP1 DUP2 SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP5 AND SWAP2 DUP4 AND DUP1 DUP4 GT PUSH2 0x4BE6 JUMPI DUP7 SWAP3 SUB PUSH2 0x4C90 JUMPI PUSH2 0x4BA7 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST POP POP PUSH2 0x4BE1 SWAP1 PUSH2 0x4CA1 PUSH2 0x4BBF PUSH2 0xAD4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x4A8F JUMP JUMPDEST POP PUSH2 0x4C1C SWAP1 PUSH2 0x4CC5 PUSH2 0x4BBF PUSH2 0xAD4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x4A8F JUMP JUMPDEST DUP1 SLOAD SWAP3 SWAP4 SWAP3 DUP1 ISZERO PUSH2 0x4D70 JUMPI PUSH2 0x4CF0 PUSH2 0x4CFD SWAP2 PUSH2 0x3AA6 JUMP JUMPDEST DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 JUMP JUMPDEST SWAP2 DUP3 SLOAD SWAP3 PUSH6 0xFFFFFFFFFFFF SWAP2 DUP3 DUP6 AND SWAP3 DUP2 AND DUP1 DUP5 GT PUSH2 0x4BE6 JUMPI DUP8 SWAP4 SUB PUSH2 0x4D3C JUMPI POP PUSH2 0x4BA7 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x4BE1 SWAP2 PUSH2 0x4D5C PUSH2 0x4D4E PUSH2 0xAD4 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP4 AND DUP4 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP7 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x4AEF JUMP JUMPDEST POP SWAP1 PUSH2 0x4C1C SWAP2 PUSH2 0x4D81 PUSH2 0x4D4E PUSH2 0xAD4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x4AEF JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x4DA3 JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x143E JUMPI PUSH1 0xA PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C5D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x4DEC JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x4D97 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x4DF8 SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP1 PUSH2 0x4DE6 JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x4E0C JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x143E JUMPI PUSH1 0x12 PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5C3D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x4E55 JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x4E00 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x4E61 SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP1 PUSH2 0x4E4F JUMP JUMPDEST SWAP2 SWAP1 JUMPDEST DUP4 DUP3 LT PUSH2 0x4E77 JUMPI POP POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 DUP1 DUP4 AND SWAP1 DUP1 DUP5 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x143E JUMPI PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 DUP3 ADD SLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP5 AND LT ISZERO PUSH2 0x4EB6 JUMPI POP SWAP3 JUMPDEST SWAP2 SWAP1 PUSH2 0x4E6A JUMP JUMPDEST SWAP4 SWAP3 POP PUSH2 0x4EC2 SWAP1 PUSH2 0x3195 JUMP JUMPDEST SWAP2 PUSH2 0x4EAF JUMP JUMPDEST PUSH1 0xD SLOAD DUP1 PUSH1 0x80 SHR SWAP2 PUSH1 0x1 DUP4 ADD SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 SWAP4 AND DUP4 DUP6 AND EQ PUSH2 0x4F10 JUMPI PUSH1 0x0 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE PUSH1 0xD SLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT SWAP1 PUSH1 0x80 SHL AND SWAP2 AND OR PUSH1 0xD SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0xD SLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x80 SHR DUP4 EQ PUSH2 0x4F68 JUMPI DUP3 PUSH1 0x0 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP4 PUSH1 0x0 DUP6 SLOAD SWAP6 SSTORE ADD AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT PUSH1 0xD SLOAD AND OR PUSH1 0xD SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST ISZERO PUSH2 0x4F82 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x456D70747920617272617973 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x4FBD JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x5A65726F2061646472657373 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x4FF8 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x16995C9BC8185B5BDD5B9D PUSH1 0xAA SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP1 SWAP2 PUSH2 0x5042 PUSH2 0x8A0 SWAP4 PUSH1 0x40 DUP5 MSTORE PUSH1 0x40 DUP5 ADD SWAP1 PUSH2 0x2F13 JUMP JUMPDEST SWAP2 PUSH1 0x20 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP1 ISZERO PUSH2 0x3F5E JUMPI PUSH1 0x2 SLOAD DUP3 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x143E JUMPI PUSH1 0x2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 SWAP1 LOG3 PUSH1 0x2 SLOAD SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 GT PUSH2 0x50D6 JUMPI PUSH2 0xAE1 SWAP3 SWAP4 POP PUSH2 0x5617 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE58AE93 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5103 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x22B6B83A3C9037B832B930BA34B7B7 PUSH1 0x89 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5141 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x456D7074792074617267657420636861696E73 PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5183 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x496E76616C69642074696D656C6F636B PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x51C7 DUP2 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST DUP2 DUP2 LT PUSH2 0x51D9 JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x51CE JUMP JUMPDEST SWAP2 SWAP1 PUSH1 0x1F DUP2 GT PUSH2 0x51F4 JUMPI POP POP POP JUMP JUMPDEST PUSH2 0xAE1 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP4 ADD SWAP4 LT PUSH2 0x5220 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 PUSH2 0x51CE JUMP JUMPDEST SWAP1 SWAP2 POP DUP2 SWAP1 PUSH2 0x5213 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x50B JUMPI PUSH2 0x5251 DUP2 PUSH2 0x524B DUP5 SLOAD PUSH2 0x4A8 JUMP JUMPDEST DUP5 PUSH2 0x51E5 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH2 0x528D JUMPI POP DUP2 SWAP3 SWAP4 SWAP5 PUSH1 0x0 SWAP3 PUSH2 0x5282 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH2 0x526C JUMP JUMPDEST SWAP1 PUSH1 0x1F NOT DUP4 AND SWAP6 PUSH2 0x52A3 DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP9 DUP3 LT PUSH2 0x52E0 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 SWAP8 LT PUSH2 0x52C7 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH2 0x52BD JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH2 0x52A8 JUMP JUMPDEST DUP2 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x50B JUMPI PUSH1 0x1 PUSH1 0x40 SHL DUP4 GT PUSH2 0x50B JUMPI DUP2 SLOAD DUP4 DUP4 SSTORE DUP1 DUP5 LT PUSH2 0x5353 JUMPI JUMPDEST POP PUSH1 0x20 DUP1 SWAP2 ADD SWAP2 PUSH1 0x0 MSTORE DUP1 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x5341 JUMPI POP POP POP POP POP JUMP JUMPDEST DUP4 MLOAD DUP4 DUP3 ADD SSTORE SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x5333 JUMP JUMPDEST PUSH2 0x536B SWAP1 DUP4 PUSH1 0x0 MSTORE DUP5 PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x51CE JUMP JUMPDEST CODESIZE PUSH2 0x5321 JUMP JUMPDEST DUP2 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x40 SHL DUP4 GT PUSH2 0x50B JUMPI DUP2 SLOAD DUP4 DUP4 SSTORE DUP1 DUP5 LT PUSH2 0x53CF JUMPI JUMPDEST POP PUSH2 0x53A1 PUSH1 0x20 DUP1 SWAP3 ADD SWAP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x53B3 JUMPI POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP4 DUP3 PUSH2 0x53C3 DUP4 SWAP5 MLOAD DUP7 PUSH2 0x522A JUMP JUMPDEST ADD SWAP3 ADD SWAP4 ADD SWAP3 SWAP1 PUSH2 0x53A5 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 KECCAK256 SWAP3 DUP4 ADD SWAP3 ADD JUMPDEST DUP3 DUP2 LT PUSH2 0x53ED JUMPI POP POP PUSH2 0x538C JUMP JUMPDEST DUP1 PUSH2 0x53FA PUSH1 0x1 SWAP3 SLOAD PUSH2 0x4A8 JUMP JUMPDEST DUP1 PUSH2 0x5407 JUMPI JUMPDEST POP ADD PUSH2 0x53DF JUMP JUMPDEST PUSH1 0x1F SWAP1 DUP2 DUP2 GT DUP5 EQ PUSH2 0x541F JUMPI POP POP DUP3 DUP2 SSTORE JUMPDEST CODESIZE PUSH2 0x5400 JUMP JUMPDEST DUP4 PUSH2 0x5441 SWAP3 PUSH2 0x5433 DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP3 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 ADD PUSH2 0x51CE JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP2 DUP4 SSTORE SSTORE PUSH2 0x5419 JUMP JUMPDEST SWAP1 PUSH2 0x100 PUSH1 0x8 SWAP2 PUSH2 0x5465 DUP2 MLOAD DUP6 PUSH2 0x522A JUMP JUMPDEST PUSH2 0x5476 PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x1 DUP7 ADD PUSH2 0x52F8 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x2 DUP6 ADD SSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x3 DUP6 ADD SSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x4 DUP6 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x54C1 PUSH1 0xA0 DUP3 ADD MLOAD PUSH1 0x5 DUP7 ADD PUSH2 0x5371 JUMP JUMPDEST PUSH2 0x54E6 PUSH2 0x54D1 PUSH1 0xC0 DUP4 ADD MLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x6 DUP7 ADD SWAP1 PUSH1 0xFF DUP1 NOT DUP4 SLOAD AND SWAP2 ISZERO ISZERO AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x7 DUP6 ADD SSTORE ADD MLOAD SWAP2 ADD SSTORE JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x8A0 SWAP3 SWAP2 ADD SWAP1 PUSH2 0x5B9 JUMP JUMPDEST ISZERO PUSH2 0x5526 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50726F706F73616C20616C726561647920657865637574656400000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x5572 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x141C9BDC1BDCD85B08195E1C1A5C9959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x55B1 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x2737903A37B5B2B739903A379039B4B3B7 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 LT ISZERO PUSH2 0x50B JUMPI PUSH2 0x5607 SWAP2 PUSH1 0x1 DUP3 ADD DUP2 SSTORE PUSH2 0x3AB5 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 PUSH2 0x4B34 JUMPI PUSH2 0xAE1 SWAP2 PUSH2 0x522A JUMP JUMPDEST SWAP1 PUSH2 0xAE1 SWAP2 PUSH2 0x562D PUSH2 0x5628 DUP4 PUSH2 0x4755 JUMP JUMPDEST PUSH2 0x3E1D JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x567D JUMPI JUMPDEST PUSH1 0x8 PUSH1 0x20 MSTORE PUSH32 0x5EFF886EA0CE6CA488A3D6E336D6C0F75F46D19B42C06CE5EE98E42C96D256C7 SLOAD PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 SWAP1 SWAP3 KECCAK256 SLOAD DUP2 AND SWAP2 AND PUSH2 0x3C95 JUMP JUMPDEST PUSH2 0x568E PUSH2 0x5689 DUP5 PUSH2 0x4755 JUMP JUMPDEST PUSH2 0x3E4D JUMP JUMPDEST POP POP PUSH2 0x5642 JUMP JUMPDEST PUSH2 0xAE1 SWAP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 SWAP1 DUP2 SWAP1 DUP4 ISZERO PUSH2 0x56ED JUMPI JUMPDEST AND SWAP2 DUP3 ISZERO PUSH2 0x56DA JUMPI JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE DUP1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 PUSH2 0x3C95 JUMP JUMPDEST PUSH2 0x56E6 PUSH2 0x5689 DUP6 PUSH2 0x4755 JUMP JUMPDEST POP POP PUSH2 0x56B9 JUMP JUMPDEST PUSH2 0x56F9 PUSH2 0x5628 DUP7 PUSH2 0x4755 JUMP JUMPDEST POP POP PUSH2 0x56B0 JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x73E JUMPI MLOAD DUP1 ISZERO ISZERO DUP2 SUB PUSH2 0x73E JUMPI SWAP1 JUMP JUMPDEST PUSH2 0x5721 DUP2 PUSH2 0x582A JUMP JUMPDEST SWAP1 PUSH2 0x572B DUP3 PUSH2 0x1459 JUMP JUMPDEST PUSH1 0x5 DUP3 SUB PUSH2 0x5826 JUMPI PUSH2 0x5748 SWAP2 POP PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x13 SLOAD PUSH2 0x575E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xDC4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2C258A9F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP4 DUP2 PUSH1 0x24 DUP2 DUP6 GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x5809 JUMPI JUMPDEST POP ISZERO PUSH2 0x579C JUMPI POP POP POP PUSH1 0x5 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2AB0F529 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP3 SWAP1 DUP3 SWAP1 PUSH1 0x24 SWAP1 DUP3 SWAP1 GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x57DC JUMPI JUMPDEST POP POP ISZERO PUSH2 0x57D7 JUMPI PUSH1 0x7 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST PUSH2 0x57FB SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0x5802 JUMPI JUMPDEST PUSH2 0x57F3 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x5700 JUMP JUMPDEST CODESIZE DUP1 PUSH2 0x57CB JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0x57E9 JUMP JUMPDEST PUSH2 0x5820 SWAP2 POP DUP5 RETURNDATASIZE DUP7 GT PUSH2 0x5802 JUMPI PUSH2 0x57F3 DUP2 DUP4 PUSH2 0x598 JUMP JUMPDEST CODESIZE PUSH2 0x578E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x583E DUP2 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xFF DUP2 PUSH1 0xF0 SHR AND PUSH2 0x5936 JUMPI PUSH1 0xF8 SHR PUSH2 0x5930 JUMPI PUSH2 0x586B PUSH2 0x3686 PUSH2 0x331E DUP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5917 JUMPI PUSH6 0xFFFFFFFFFFFF NUMBER AND DUP1 SWAP2 LT ISZERO PUSH2 0x5910 JUMPI PUSH2 0x588B DUP3 PUSH2 0x301F JUMP JUMPDEST LT PUSH2 0x5896 JUMPI POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x58A2 PUSH2 0x1230 DUP3 PUSH2 0x593D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x58EB JUMPI JUMPDEST ISZERO PUSH2 0x58B4 JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST PUSH2 0x3686 PUSH1 0x1 PUSH2 0x58D0 PUSH2 0x58DD SWAP4 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST ADD SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH2 0x58E6 JUMPI PUSH1 0x4 SWAP1 JUMP JUMPDEST PUSH1 0x5 SWAP1 JUMP JUMPDEST POP PUSH2 0x590B PUSH2 0x1230 DUP3 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD SWAP1 SLOAD LT SWAP1 JUMP JUMPDEST PUSH2 0x58A9 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6AD06075 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST POP PUSH1 0x2 SWAP1 JUMP JUMPDEST POP POP PUSH1 0x7 SWAP1 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0xC PUSH1 0x20 MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0xA0 SHR AND PUSH1 0x40 MLOAD SWAP1 PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP3 MSTORE DUP1 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xF85 JUMPI PUSH2 0x59DA SWAP3 PUSH1 0x64 SWAP3 PUSH2 0x59C8 SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x2E83 JUMPI POP PUSH2 0x2E6B SWAP1 PUSH2 0x3ACD JUMP JUMPDEST DIV SWAP2 PUSH1 0x2 PUSH1 0x1 DUP3 ADD SLOAD SWAP2 ADD SLOAD SWAP1 PUSH2 0x31A3 JUMP JUMPDEST LT ISZERO SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x59EB SWAP4 SWAP3 SWAP2 PUSH2 0x2FA5 JUMP JUMPDEST PUSH2 0x59F4 DUP2 PUSH2 0x5718 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x3B PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x5AF3 JUMPI POP PUSH2 0x5A39 PUSH2 0x5A24 DUP3 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB AND PUSH1 0x1 PUSH1 0xF8 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x789CF55BE980739DAD1D0699B93B58E806B51C9D96619BFA8FE0A28ABAA7B30C SWAP1 PUSH1 0x20 SWAP1 LOG1 PUSH2 0x5A79 DUP2 PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD DUP1 PUSH2 0x5A83 JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0x13 SLOAD PUSH2 0x5A98 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xDC4 JUMP JUMPDEST DUP1 EXTCODESIZE ISZERO PUSH2 0x73E JUMPI PUSH1 0x40 MLOAD PUSH4 0xC4D252F5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP1 DUP3 SWAP1 PUSH1 0x24 SWAP1 DUP3 SWAP1 DUP5 SWAP1 GAS CALL DUP1 ISZERO PUSH2 0xF85 JUMPI PUSH2 0x5AE0 JUMPI JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE SWAP1 JUMP JUMPDEST DUP1 PUSH2 0xF79 PUSH2 0x5AED SWAP3 PUSH2 0x4F8 JUMP JUMPDEST CODESIZE PUSH2 0x5ACD JUMP JUMPDEST SWAP1 PUSH2 0x5B17 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x3B PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP5 SWAP4 SWAP3 PUSH2 0x5B4C PUSH1 0x80 SWAP4 PUSH2 0x5B3E PUSH2 0x5B5A SWAP5 PUSH1 0xA0 DUP11 MSTORE PUSH1 0xA0 DUP11 ADD SWAP1 PUSH2 0x2F13 JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x20 DUP11 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x2F50 JUMP JUMPDEST SWAP4 PUSH1 0x0 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x5B95 PUSH1 0xA0 SWAP5 PUSH2 0x5B87 PUSH2 0x5BA3 SWAP5 SWAP10 SWAP9 SWAP8 SWAP10 PUSH1 0xC0 DUP8 MSTORE PUSH1 0xC0 DUP8 ADD SWAP1 PUSH2 0x2F13 JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x1C22 JUMP JUMPDEST SWAP1 DUP4 DUP3 SUB PUSH1 0x40 DUP6 ADD MSTORE PUSH2 0x2F50 JUMP JUMPDEST SWAP5 PUSH1 0x0 PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SWAP3 SWAP1 SWAP4 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x13 SLOAD AND SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x73E JUMPI PUSH1 0x0 SWAP4 PUSH2 0x5C03 PUSH1 0x40 MLOAD SWAP8 DUP9 SWAP6 DUP7 SWAP5 DUP6 SWAP5 PUSH4 0xE38335E5 PUSH1 0xE0 SHL DUP7 MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT ADDRESS PUSH1 0x60 SHL AND XOR SWAP3 PUSH1 0x4 DUP7 ADD PUSH2 0x5B20 JUMP JUMPDEST SUB SWAP2 CALLVALUE SWAP1 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0xF85 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x3FC7 SWAP3 PUSH2 0x5C2D JUMPI JUMPDEST POP PUSH1 0x0 MSTORE PUSH1 0x14 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST PUSH2 0x5C36 SWAP1 PUSH2 0x4F8 JUMP JUMPDEST CODESIZE PUSH2 0x5C1C JUMP INVALID 0xBB DUP11 PUSH11 0x4669BA250D26CD7A459ECA SWAP14 0x21 PUSH0 DUP4 SMOD 0xE3 GASPRICE 0xEB 0xE5 SUB PUSH26 0xBC5A3617EC3444C65A7BB8D6351C1CF70C95A316CC6A92839C98 PUSH7 0x82D98BC35F958F BASEFEE DUP4 0xF9 0xD2 0xA8 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x26 0x27 0xBE 0xFB NUMBER DUP9 SWAP11 0xC8 DUP3 CODECOPY 0x2B 0xE1 PUSH7 0xD232B6CF88EF98 PUSH23 0x54F0F10B333640CB78EBE464736F6C6343000814003300 ","sourceMap":"782:8552:46:-:0;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;:::o;:::-;;:::i;:::-;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;1910:45;782:8552;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1910:45;;;782:8552;;1910:45;;782:8552;;1910:45;;782:8552;;;;;-1:-1:-1;;;;;782:8552:46;1910:45;;;782:8552;;;1910:45;;;;;782:8552;1910:45;;782:8552;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4125:42:2;;;:107;;;;782:8552:46;4125:159:2;;;;782:8552:46;;;;;;;;;;4125:159:2;-1:-1:-1;;;862:40:38;;-1:-1:-1;4125:159:2;;;:107;-1:-1:-1;;;4183:49:2;;;-1:-1:-1;4125:107:2;;782:8552:46;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;;1460:13:6;782:8552:46;;;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;3401:72:2;;:::i;:::-;2544:3:9;3674:32;;3670:132;;3961:62;;-1:-1:-1;;;;;1586:32:9;;:::i;:::-;782:8552:46;8310:38:43;3906::9;;;:::i;:::-;782:8552:46;6633:12;782:8552;8310:38:43;:::i;:::-;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;3961:62:9;;;;782:8552:46;3670:132:9;782:8552:46;;;;3729:62:9;;;;;;782:8552:46;3729:62:9;;782:8552:46;2544:3:9;782:8552:46;;;;3729:62:9;782:8552:46;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;4424:5:2;782:8552:46;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;4424:5:2;782:8552:46;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;;;735:10:27;9813:19:20;9809:89;;-1:-1:-1;;;;;782:8552:46;;;9911:21:20;;9907:90;;735:10:27;782:8552:46;;;;;;;;;;735:10:27;;10006:27:20;;:18;782:8552:46;;;;;;;;;;;;;;;;10006:27:20;782:8552:46;;;;;;10085:31:20;782:8552:46;735:10:27;10085:31:20;;782:8552:46;;;;;;;9907:90:20;782:8552:46;;-1:-1:-1;;;9955:31:20;;-1:-1:-1;782:8552:46;9955:31:20;;782:8552:46;;;9955:31:20;9809:89;782:8552:46;;-1:-1:-1;;;9855:32:20;;9830:1;782:8552:46;9855:32:20;;782:8552:46;;;9855:32:20;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;1961:30;782:8552;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;-1:-1:-1;782:8552:46;7918:10:2;782:8552:46;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;:::o;:::-;;;;;;;:::i;:::-;:::o;:::-;-1:-1:-1;;;;;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;:::i;:::-;-1:-1:-1;3033:9:7;782:8552:46;-1:-1:-1;;;;;782:8552:46;25338:4:2;25315:28;25311:91;;782:8552:46;;-1:-1:-1;;;782:8552:46;;;;;25311:91:2;782:8552:46;;-1:-1:-1;;;25366:25:2;;782:8552:46;;25366:25:2;782:8552:46;-1:-1:-1;;;;;782:8552:46;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;:::i;:::-;13576:57:2;;;;;;;;:::i;:::-;13644:77;;;;:::i;:::-;-1:-1:-1;3576:9:7;782:8552:46;3576:21:7;;-1:-1:-1;;;;;782:8552:46;;-1:-1:-1;;;;;782:8552:46;;;3576:21:7;782:8552:46;;;;;;;;;3576:23:7;;;;;;782:8552:46;3576:23:7;;;;;;;;;-1:-1:-1;3576:23:7;;;782:8552:46;;;;6677:4:7;782:8552:46;;;6661:40:7;782:8552:46;;;;;;;;;3692:65:7;;;;;;;;;782:8552:46;3692:65:7;;;:::i;:::-;;;;;;;;;;-1:-1:-1;3692:65:7;;;782:8552:46;3665:24:7;;;;782:8552:46;;3665:12:7;782:8552:46;;;;;;;3665:24:7;782:8552:46;3576:9:7;782:8552:46;3767:23:7;;-1:-1:-1;;;;;782:8552:46;;;3767:23:7;:67;;;;;;-1:-1:-1;782:8552:46;;3767:67:7;782:8552:46;;;;;;;;;;;;;3767:67:7;;782:8552:46;3767:67:7;;;:::i;:::-;;;;;;;;;;3852:42;3767:67;3870:23;3767:67;;;782:8552:46;3870:15:7;;:23;:::i;:::-;3852:42;:::i;:::-;782:8552:46;;;13840:15:2;782:8552:46;;13871:22:2;13936:38;;13871:22;:46;782:8552:46;13871:22:2;782:8552:46;13871:22:2;;782:8552:46;;13871:10:2;782:8552:46;;;;;;;13871:22:2;:33;782:8552:46;;;;;;;;;;;;13871:46:2;782:8552:46;;;;;;;;;;;;;;;;;;;;;13936:38:2;;;;782:8552:46;;;;;;;;;;;;13836:216:2;782:8552:46;;-1:-1:-1;;;14012:29:2;;782:8552:46;;14012:29:2;3767:67:7;;;;;;:::i;:::-;;;:::i;:::-;;;;;;:::i;3692:65::-;;;;;;-1:-1:-1;3692:65:7;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;3576:23;;;;;;;;;;;;;;;:::i;:::-;;;;;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;;2927:12:20;782:8552:46;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;6222:44;782:8552;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:8552:46;;;;;;;6222:44;;;782:8552;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;-1:-1:-1;;;;;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;735:10:27;782:8552:46;;;;;;;;;;;;;-1:-1:-1;;10580:36:20;;10576:309;;782:8552:46;4986:5:20;;;;:::i;:::-;782:8552:46;;3657:11:20;782:8552:46;;;;;10576:309:20;10636:24;;;10632:130;;10854:5;782:8552:46;4986:5:20;782:8552:46;;735:10:27;10854:5:20;;:::i;:::-;10576:309;;10632:130;782:8552:46;;-1:-1:-1;;;10687:60:20;;735:10:27;782:8552:46;10687:60:20;;782:8552:46;;;;;;;;;;;;;;;10687:60:20;;;;;782:8552:46;;;;:::i;:::-;15373:57:2;;;;;;;;:::i;:::-;15441:154;;;;:::i;:::-;;15667:38;:22;;782:8552:46;;13871:10:2;782:8552:46;;;;;;;15667:22:2;782:8552:46;;-1:-1:-1;;;;782:8552:46;-1:-1:-1;;;782:8552:46;;;;15667:38:2;3033:9:7;782:8552:46;-1:-1:-1;;;;;782:8552:46;;;;15805:4:2;15782:28;15778:258;;782:8552:46;9309:15;;;;782:8552;9309:15;;;:::i;:::-;3033:9:7;782:8552:46;15805:4:2;;782:8552:46;-1:-1:-1;;;;;782:8552:46;16193:28:2;;:56;;;782:8552:46;16189:110:2;;782:8552:46;;;;;;16314:28:2;;782:8552:46;;;;16314:28:2;;;;782:8552:46;;;;;;;;;;;;;16189:110:2;16265:21;1536:4:30;16265:15:2;1536:4:30;5141:109:44;16265:21:2;16189:110;;16193:56;16226:23;16225:24;16226:23;:15;782:8552:46;-1:-1:-1;;;;;782:8552:46;;;;;5653:26:44;5564:122;;16226:23:2;16225:24;;782:8552:46;16225:24:2;16193:56;;15778:258;15831:13;;;;-1:-1:-1;15866:3:2;782:8552:46;;15846:18:2;;;;;15866:3;15805:4;;15893:27;:10;;;;;:::i;:::-;782:8552:46;-1:-1:-1;;;;;782:8552:46;;;15893:27:2;;15889:123;;15866:3;:::i;:::-;15831:13;;15889:123;15969:23;15979:12;;;;:::i;:::-;;782:8552:46;;;;;15969:23:2;;:::i;:::-;15866:3;:::i;15846:18::-;-1:-1:-1;15846:18:2;;;;15778:258;;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;;;-1:-1:-1;782:8552:46;7464:10:2;782:8552:46;;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;1616:138:2;782:8552:46;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;2780:2:20;782:8552:46;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;1289:12:6;782:8552:46;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:8552:46;-1:-1:-1;782:8552:46;;;4411:20:11;782:8552:46;;;;;;4459:29:11;782:8552:46;;4459:29:11;:::i;:::-;782:8552:46;;;9737:15:43;9762:18;;9801:1;9795:7;;9791:234;;782:8552:46;10049:53:43;;782:8552:46;10049:53:43;;;;;:::i;:::-;10120:8;;;:63;;;782:8552:46;;-1:-1:-1;;;;;782:8552:46;;;;;;10120:63:43;10168:7;;;;;;:::i;:::-;14439:109;;;;;782:8552:46;;;10120:63:43;;9791:234;9838:14;;;;:::i;:::-;782:8552:46;;;;;;;;14439:109:43;10049:53;14439:109;;;;782:8552:46;14439:109:43;;;;;;782:8552:46;;;;;9870:48:43;9866:149;782:8552:46;;;9938:10:43;9866:149;;9791:234;;;;;;9866:149;9993:7;;;;;;:::i;:::-;9866:149;;;782:8552:46;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;:::o;:::-;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;7624:23;782:8552;;7624:23;:::i;:::-;782:8552;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;1159:44:5;782:8552:46;;;;;:::i;:::-;;;-1:-1:-1;782:8552:46;1159:14:5;782:8552:46;;;;-1:-1:-1;782:8552:46;1159:35:5;782:8552:46;;;;;;;;;;;;;;;;1159:44:5;782:8552:46;;;;;;;;;;;;;;;;;:::i;:::-;17878:57:2;;;;;;;;;:::i;:::-;7624:23:46;;;:::i;:::-;782:8552;;;;;;;;;;;;27519:48:2;:62;27515:172;;-1:-1:-1;;782:8552:46;;;7918:10:2;782:8552:46;;;;;;-1:-1:-1;;;;;782:8552:46;735:10:27;18116:44:2;18112:116;;782:8552:46;8054:58;;;;:::i;:::-;782:8552;;;;;;;;;;;;;18112:116:2;782:8552:46;;-1:-1:-1;;;18183:34:2;;735:10:27;782:8552:46;18183:34:2;;782:8552:46;;;10687:60:20;27515:172:2;782:8552:46;;;;;;27604:72:2;;;;;;;;;782:8552:46;;;;;;:::i;:::-;;;;;;27604:72:2;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;1997:31;782:8552;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;-1:-1:-1;782:8552:46;1476:14:5;782:8552:46;;;-1:-1:-1;782:8552:46;;;;1570:25:5;1547:21;;;782:8552:46;1570:25:5;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;22885:65:2;782:8552:46;;:::i;:::-;;;;;;:::i;:::-;-1:-1:-1;782:8552:46;;;;;;;;:::i;:::-;-1:-1:-1;782:8552:46;;735:10:27;782:8552:46;;22885:65:2;:::i;:::-;782:8552:46;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;782:8552:46;5674:10:11;782:8552:46;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;;:::i;:::-;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;5903:9:11;782:8552:46;;;;;:::i;:::-;735:10:27;5903:9:11;:::i;782:8552:46:-;;;;;;-1:-1:-1;;782:8552:46;;;;;;:::i;:::-;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;20688:53:2;782:8552:46;;;;;;;;;:::i;:::-;;;;;:::i;:::-;735:10:27;;782:8552:46;;20688:53:2;:::i;782:8552:46:-;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;782:8552:46;8741:20:11;782:8552:46;;;8723:57:11;782:8552:46;-1:-1:-1;782:8552:46;;8723:57:11;:::i;:::-;782:8552:46;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:8552:46;3095:9:20;782:8552:46;;;;;;;;;;;;3004:116:20;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;3401:72:2;;:::i;:::-;2801:44:6;782:8552:46;2816:12:6;782:8552:46;;;;;;;;;;;;;;2801:44:6;-1:-1:-1;;782:8552:46;;2816:12:6;782:8552:46;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;:::i;:::-;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;22885:65:2;782:8552:46;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;782:8552:46;624:7:29;782:8552:46;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;4075:35;782:8552;;4147:45;782:8552;;4155:20;;4147:45;:::i;:::-;-1:-1:-1;4244:3:46;782:8552;;4222:20;;;;;4271:12;4263:51;4271:26;:12;;4244:3;4271:12;;;:::i;:26::-;;;4263:51;:::i;:::-;4328:39;4336:11;;;;:::i;:::-;782:8552;4336:15;;4328:39;:::i;:::-;4401:11;4387:12;;;;;:::i;:::-;4401:11;;;;:::i;:::-;782:8552;4401:11;;:::i;4244:3::-;4207:13;;4222:20;;4438:38;4222:20;4438:38;782:8552;;4438:38;;;;;:::i;782:8552::-;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;6099:41:35;:5;:41;:::i;:::-;782:8552:46;6554:47:35;:8;:47;:::i;:::-;782:8552:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;5590:13:35;;782:8552:46;;;;5625:4:35;782:8552:46;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;5270:29:11;782:8552:46;;5270:29:11;:::i;:::-;5234:17;782:8552:46;9737:15:43;-1:-1:-1;9762:18:43;9795:7;9801:1;9795:7;;9791:234;;782:8552:46;10049:53:43;;;;:::i;:::-;-1:-1:-1;10120:8:43;;;-1:-1:-1;;782:8552:46;;-1:-1:-1;782:8552:46;;;;;10120:63:43;5234:17:11;10168:7:43;782:8552:46;10168:7:43;;:::i;:::-;14439:109;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:8552:46;;;10120:63:43;;9791:234;9838:14;;;;;:::i;:::-;782:8552:46;;;;;;;10049:53:43;14439:109;5234:17:11;14439:109:43;;782:8552:46;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:8552:46;;;;;9870:48:43;9866:149;782:8552:46;;;9938:10:43;9866:149;9791:234;;9866:149;9993:7;;;;;;:::i;:::-;9866:149;9791:234;;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;782:8552:46;;;;21004:204:2;782:8552:46;21223:6:2;782:8552:46;;;;;;:::i;:::-;-1:-1:-1;;;;;782:8552:46;;-1:-1:-1;782:8552:46;;;1121:7:29;782:8552:46;;;;;;;;;;;;;21073:102:2;;782:8552:46;;;21100:73:2;;782:8552:46;1470:81:2;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21100:73:2;;;;;:::i;:::-;782:8552:46;21090:84:2;;21073:102;:::i;:::-;21004:204;;:::i;21223:6::-;21219:75;;782:8552:46;21311:41:2;782:8552:46;;;;;:::i;:::-;21311:41:2;;:::i;21219:75::-;782:8552:46;;-1:-1:-1;;;21252:31:2;;-1:-1:-1;;;;;782:8552:46;;;21252:31:2;;782:8552:46;;;10687:60:20;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;6633:12;782:8552;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;2544:3:9;782:8552:46;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;782:8552:46;;;;1998:40:8;782:8552:46;;;;;;;;;:::i;:::-;-1:-1:-1;782:8552:46;;-1:-1:-1;;;1998:40:8;;-1:-1:-1;;;;;782:8552:46;;;;1998:40:8;;782:8552:46;;;;;;;;;;;;;;;;;;1998:40:8;;782:8552:46;867:6:8;-1:-1:-1;;;;;782:8552:46;1998:40:8;;;;;;782:8552:46;1998:40:8;-1:-1:-1;1998:40:8;;;782:8552:46;-1:-1:-1;782:8552:46;;;;;;;;;;;;;1998:40:8;;;;782:8552:46;1998:40:8;;;;;;;;;:::i;:::-;;;;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;782:8552:46;-1:-1:-1;782:8552:46;;;3868:20:11;782:8552:46;;;;;;;;-1:-1:-1;;;;;782:8552:46;3868:38:11;;;:::i;:::-;782:8552:46;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;-1:-1:-1;;;;;1586:32:9;;:::i;782:8552:46:-;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;3401:72:2;;:::i;:::-;6268:9:7;782:8552:46;6245:56:7;782:8552:46;;;;;;;;;;;;;;;;;;;;;;6245:56:7;-1:-1:-1;;;;;;782:8552:46;;6268:9:7;782:8552:46;;;;;;;;-1:-1:-1;;782:8552:46;;;;3459:5:20;782:8552:46;;;;;:::i;:::-;;;735:10:27;;3459:5:20;:::i;:::-;782:8552:46;;;3482:4:20;782:8552:46;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;3222:4:7;782:8552:46;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;5531:22;;782:8552;;5531:9;782:8552;;;;;;;5531:22;5572:17;;;782:8552;5563:56;5571:18;782:8552;;;;;;;5571:18;5563:56;:::i;:::-;5629:64;5655:17;;;782:8552;5637:15;:35;5629:64;:::i;:::-;5721:10;3095:9:20;782:8552:46;;;;;;;;;;5703:55;;782:8552;5711:25;;5703:55;:::i;:::-;782:8552;;5721:10;782:8552;;-1:-1:-1;;782:8552:46;;5793:28;;782:8552;5768:54;;5793:28;782:8552;;;;5793:28;;782:8552;;5793:28;;;;;;:::i;:::-;5768:19;;;:54;:::i;:::-;5980:23;5832:24;;;782:8552;5832:26;782:8552;;5832:26;:::i;:::-;782:8552;;;;;;;;;;5721:10;782:8552;;;;;;;;;;5873:65;;782:8552;;5873:65;5980:23;782:8552;-1:-1:-1;5952:51:46;5948:164;;782:8552;5948:164;782:8552;;-1:-1:-1;;782:8552:46;6039:4;782:8552;;;6062:39;;;;6019:24;782:8552;;;;;;;-1:-1:-1;;782:8552:46;;;;;;-1:-1:-1;782:8552:46;8115:10:2;782:8552:46;;;;8115:33:2;782:8552:46;-1:-1:-1;782:8552:46;8115:33:2;782:8552:46;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;1641:18:6;782:8552:46;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;:::i;:::-;;;;;:::i;:::-;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;-1:-1:-1;;;;;;782:8552:46;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;782:8552:46;;;;-1:-1:-1;782:8552:46;;;24659:45:2;782:8552:46;;;;;;:::i;:::-;3401:72:2;;;:::i;:::-;782:8552:46;;;;;;;;;;;;;24618:31:2;782:8552:46;;;24618:31:2;;;;;:::i;:::-;24659:45;;:::i;782:8552:46:-;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;6185:15:11;;:24;6181:91;;6298:168;6535:9;782:8552:46;6501:5:11;782:8552:46;;;6352:57:11;782:8552:46;6352:57:11;;782:8552:46;2063:71:11;782:8552:46;;;;;;;;;;2063:71:11;;782:8552:46;2063:71:11;782:8552:46;2063:71:11;;782:8552:46;;2063:71:11;;782:8552:46;;6352:57:11;;;;;:::i;:::-;6325:86;782:8552:46;;;;;;;6342:68:11;;6325:86;:::i;:::-;6298:168;:::i;:::-;6501:5;;;:::i;:::-;6535:9;:::i;6181:91::-;782:8552:46;;-1:-1:-1;;;6232:29:11;;782:8552:46;6232:29:11;;782:8552:46;;;;;6232:29:11;782:8552:46;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;:::i;:::-;;;;;;;;5350:51;;782:8552;;;;;;;;:::i;:::-;;;;;;4690:49;782:8552;;4698:21;;4690:49;:::i;:::-;4749:56;782:8552;;4757:24;;4749:56;:::i;:::-;4815;4835:15;4823:27;;4815:56;:::i;:::-;782:8552;;4902:17;;;;;:::i;:::-;782:8552;;;4902:17;5179:14;;:::i;:::-;5252:40;5253:32;2927:12:20;782:8552:46;5269:16;782:8552;5253:32;;:::i;:::-;5289:3;782:8552;;;;5252:40;782:8552;;;:::i;:::-;;;;;4953:382;;782:8552;;;;;4953:382;;782:8552;;;;4953:382;;782:8552;5143:10;782:8552;4953:382;;782:8552;4953:382;;;782:8552;-1:-1:-1;4953:382:46;;;782:8552;4953:382;;;782:8552;-1:-1:-1;4953:382:46;;;782:8552;4929:21;;782:8552;;5531:9;782:8552;;;;;;;4929:21;782:8552;:::i;:::-;;;5143:10;;;;5350:51;;;:::i;782:8552::-;;;;;;-1:-1:-1;;782:8552:46;;;;3033:9:7;782:8552:46;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;3657:27:20;782:8552:46;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;782:8552:46;;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;3657:27:20;782:8552:46;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;1470:81:2;782:8552:46;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;782:8552:46;;;;;;:::i;:::-;3401:72:2;;:::i;:::-;782:8552:46;;;;3092:20:6;;;3088:88;;3190:47;782:8552:46;;;3206:13:6;782:8552:46;;;;;;;;;;;;;;;3190:47:6;782:8552:46;;;;;;;;3206:13:6;782:8552:46;-1:-1:-1;782:8552:46;;3088:88:6;782:8552:46;;-1:-1:-1;;;3135:30:6;;-1:-1:-1;782:8552:46;3135:30:6;;782:8552:46;;;3135:30:6;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;1998:40:8;782:8552:46;;;;;;:::i;:::-;-1:-1:-1;782:8552:46;;;;;:::i;:::-;;;;-1:-1:-1;;;1998:40:8;;-1:-1:-1;;;;;782:8552:46;;;;1998:40:8;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;3401:72:2;;:::i;:::-;3529:18:6;782:8552:46;;;;;;;;;;;;;3508:62:6;;;3529:18;782:8552:46;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11452:22:43;782:8552:46;;;:::i;:::-;;;;:::i;:::-;-1:-1:-1;;;;;;782:8552:46;-1:-1:-1;782:8552:46;;;9019:20:11;782:8552:46;;;;;;;:::i;:::-;;11452:22:43;:::i;:::-;782:8552:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;:::i;:::-;-1:-1:-1;3033:9:7;782:8552:46;-1:-1:-1;;;;;782:8552:46;25808:4:2;25785:28;25781:91;;782:8552:46;;-1:-1:-1;;;782:8552:46;;;;;;1882:22;782:8552;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;1882:22;-1:-1:-1;782:8552:46;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;1882:22;782:8552;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;1882:22;-1:-1:-1;782:8552:46;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;1882:22;782:8552;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;1882:22;-1:-1:-1;782:8552:46;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;1882:22;782:8552;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;:::i;:::-;1882:22;782:8552;1882:22;782:8552;1882:22;782:8552;;1882:22;782:8552;;;1882:22;782:8552;;;;;;;;;;:::i;:::-;;;1882:22;782:8552;;;;;;;;;-1:-1:-1;782:8552:46;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;-1:-1:-1;;;2789:37:9;;782:8552:46;;;2789:37:9;;;782:8552:46;;;;;;;867:6:8;-1:-1:-1;;;;;782:8552:46;2789:37:9;;;;;;;782:8552:46;2789:37:9;2544:3;2789:37;:66;:37;-1:-1:-1;2789:37:9;;;782:8552:46;2829:26:9;;;;:::i;:::-;2789:66;;:::i;:::-;782:8552:46;;;;;;;;;;;;;;;2789:37:9;2829:26;2789:37;;;;;782:8552:46;2789:37:9;;;;;;;;;:::i;:::-;;;;;782:8552:46;;;;;;-1:-1:-1;;782:8552:46;;;;;;867:6:8;-1:-1:-1;;;;;782:8552:46;;;;;;3779:142:2;3033:9:7;782:8552:46;-1:-1:-1;;;;;782:8552:46;3851:4:2;3828:28;3824:91;;3779:142::o;782:8552:46:-;;;;;;;:::i;:::-;-1:-1:-1;782:8552:46;;:::o;:::-;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;5530:299:2;;;782:8552:46;5530:299:2;5765:55;5530:299;782:8552:46;;5765:55:2;;;782:8552:46;;5765:55:2;;;782:8552:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;5765:55:2;;;;;;;;:::i;:::-;782:8552:46;5755:66:2;;5530:299;:::o;782:8552:46:-;;;;;;;;;;;;7571:178:2;-1:-1:-1;782:8552:46;7672:10:2;782:8552:46;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;7571:178:2;:::o;10887:863::-;;;;;;11177:53;735:10:27;;11177:53:2;:::i;:::-;11176:54;11172:128;;1641:18:6;782:8552:46;11404:18:2;;11400:267;;10887:863;11684:59;735:10:27;;;;11684:59:2;;:::i;11400:267::-;782:8552:46;6633:12;782:8552;;-1:-1:-1;;782:8552:46;;;;;;1998:40:8;782:8552:46;;;10599:17:20;782:8552:46;;;;;:::i;:::-;;;;-1:-1:-1;;;1998:40:8;;735:10:27;1998:40:8;;;782:8552:46;;;;;;;;;;;;;;;;;1998:40:8;;782:8552:46;867:6:8;-1:-1:-1;;;;;782:8552:46;1998:40:8;;;;;;;10599:17:20;1998:40:8;;;11400:267:2;11511:30;;;;11507:150;;11400:267;;;11507:150;782:8552:46;;-1:-1:-1;;;11568:74:2;;735:10:27;1998:40:8;11568:74:2;;782:8552:46;;;;;;;;;;;;;;;;10687:60:20;1998:40:8;;;;782:8552:46;1998:40:8;;;;;;;;;:::i;:::-;;;;11172:128:2;782:8552:46;;-1:-1:-1;;;11253:36:2;;735:10:27;11253:36:2;;;782:8552:46;;;11253:36:2;782:8552:46;;;;12485:32:2;782:8552:46;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;15088:1:33;782:8552:46;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11927:1373:2;;;;;;;12182:71;782:8552:46;;;;;12223:29:2;12182:71;;;;:::i;:::-;782:8552:46;;;;;12268:31:2;;;;;;:69;;;11927:1373;12268:92;;;;11927:1373;12264:208;;782:8552:46;;;12485:22:2;;:32;:22;;782:8552:46;;13871:10:2;782:8552:46;;;;;;;12485:22:2;782:8552:46;;;;;;;12485:32:2;782:8552:46;12481:149:2;;12963:257;782:8552:46;12963:257:2;782:8552:46;;12659:23:2;1289:12:6;782:8552:46;;;;;6633:12;;782:8552;12659:23:2;:::i;:::-;782:8552:46;;;;12896:51:2;12768:22;;782:8552:46;;13871:10:2;782:8552:46;;;;;;;12768:22:2;782:8552:46;;-1:-1:-1;;;;;;782:8552:46;-1:-1:-1;;;;;782:8552:46;;;;;12838:48:2;12859:27;;;:::i;:::-;782:8552:46;;-1:-1:-1;;;;782:8552:46;;;;;;-1:-1:-1;;;782:8552:46;;;;;12838:48:2;12920:27;;;:::i;:::-;782:8552:46;;-1:-1:-1;;;;782:8552:46;;;;;;-1:-1:-1;;;782:8552:46;;;;;12896:51:2;13166:19;13079:28;782:8552:46;;13079:28:2;:::i;:::-;13166:19;;;:::i;:::-;782:8552:46;;;12963:257:2;;;;;;:::i;:::-;;;;11927:1373::o;12481:149::-;7624:23:46;;;;:::i;:::-;782:8552;;-1:-1:-1;;;12545:74:2;;782:8552:46;;;12545:74:2;;;;;;:::i;12264:208::-;782:8552:46;;;;-1:-1:-1;;;12383:78:2;;;;;782:8552:46;;;;;;;;;;;;;;;;;10687:60:20;12268:92:2;12341:19;;;12268:92;;:69;782:8552:46;;;12303:34:2;;;12268:69;;782:8552:46;-1:-1:-1;;782:8552:46;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;:::i;21443:950:2:-;;;;;;;21714:516;22245:6;21443:950;21783:414;22034:16;;;782:8552:46;;;;;;-1:-1:-1;782:8552:46;1121:7:29;782:8552:46;;;-1:-1:-1;782:8552:46;;;;;;;;;759:395:29;;22034:16:2;782:8552:46;;;;;:::i;:::-;;;;;;22076:24:2;782:8552:46;;;;;22126:17:2;782:8552:46;;;21848:317:2;782:8552:46;21848:317:2;;782:8552:46;1616:138:2;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21848:317:2;;;;;:::i;21783:414::-;21714:516;;:::i;22245:6::-;22241:75;;22333:53;782:8552:46;;;;;;;;:::i;:::-;22333:53:2;;:::i;22241:75::-;782:8552:46;;-1:-1:-1;;;22274:31:2;;-1:-1:-1;;;;;782:8552:46;;22274:31:2;;;782:8552:46;;;10687:60:20;22702:255:2;;22885:65;22702:255;;782:8552:46;;;;;;:::i;:::-;;;;22885:65:2;:::i;782:8552:46:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23239:769:2:-;;;;7624:23:46;;;:::i;:::-;782:8552;;;;;;;27000:1:2;782:8552:46;;;;27519:48:2;:62;27515:172;;782:8552:46;;-1:-1:-1;782:8552:46;7464:10:2;782:8552:46;;2454:864:5;;7457:39:2;7464:32;782:8552:46;-1:-1:-1;782:8552:46;;;;;;;;;7464:32:2;782:8552:46;;;;7457:39:2;2454:864:5;;:::i;:::-;;;;;:::i;:::-;782:8552:46;;;23715:18:2;23711:226;23715:13;;;782:8552:46;23754:59:2;;782:8552:46;;;;;;;;;;;;;23754:59:2;;;:::i;:::-;;;;23239:769;:::o;23711:226::-;23849:77;782:8552:46;23849:77:2;782:8552:46;;;;;;;;;;;;;23849:77:2;;;:::i;27515:172::-;782:8552:46;;-1:-1:-1;;;27604:72:2;;;;;782:8552:46;;;;;;;;;;;;:::i;:::-;;;;;;27604:72:2;782:8552:46;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;-1:-1:-1;782:8552:46;;;;:::o;:::-;;;:::o;8592:446:2:-;3033:9:7;782:8552:46;-1:-1:-1;;;;;782:8552:46;735:10:27;8651:27:2;;8647:99;;8782:4;8759:28;8755:277;;8592:446::o;8755:277::-;782:8552:46;842:8:27;782:8552:46;:::i;:::-;;;;;;;:::i;:::-;842:8:27;782:8552:46;;;;;842:8:27;;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;842:8:27;782:8552:46;;;;;8825:21:2;;8970:52;8977:26;;;:::i;:::-;:41;8970:52;8977:41;;8592:446::o;8647:99::-;782:8552:46;;-1:-1:-1;;;8701:34:2;;735:10:27;8701:34:2;;;782:8552:46;;;8701:34:2;26138:338;3033:9:7;782:8552:46;-1:-1:-1;;;;;782:8552:46;26353:4:2;26330:28;26326:91;;-1:-1:-1;;;782:8552:46;26138:338:2:o;27338:384::-;7624:23:46;;;:::i;:::-;782:8552;;;;;;;;27000:1:2;782:8552:46;;;;27519:48:2;:62;27515:172;;27696:19;27338:384;:::o;27515:172::-;782:8552:46;;;;;27604:72:2;;;;;;;;;782:8552:46;;;;;;:::i;:::-;;;;;;27604:72:2;27338:384;7624:23:46;;;:::i;:::-;782:8552;;;;;;;15499:86:2;27000:1;782:8552:46;;;;27519:48:2;:62;27515:172;;27696:19;27338:384;:::o;27515:172::-;782:8552:46;;;;;27604:72:2;;;;;;;;;782:8552:46;;;;;;:::i;:::-;15499:86:2;782:8552:46;;;;27604:72:2;28848:999;;782:8552:46;;29166:2:2;29157:11;;29153:61;;-1:-1:-1;;30978:95:2;;;;;-1:-1:-1;;;;;;782:8552:46;-1:-1:-1;;;29490:31:2;29486:81;;29719:57;;-1:-1:-1;;782:8552:46;;;29719:57:2;:::i;:::-;29797:8;;782:8552:46;;;29797:33:2;;29790:40;;28848:999;:::o;29797:33::-;-1:-1:-1;;;;;782:8552:46;;;;;29809:21:2;;28848:999;-1:-1:-1;28848:999:2:o;29486:81::-;29541:11;;;29548:4;29541:11;:::o;2454:864:5:-;2707:26;2454:864;;;;782:8552:46;;2707:14:5;782:8552:46;;;;;;;2707:26:5;2748:21;;;;:30;;;;782:8552:46;;;;;;;;;;;;;;;;2748:30:5;782:8552:46;;;;;2748:30:5;2744:100;;2853:30;782:8552:46;2853:30:5;;:37;:30;782:8552:46;;;;;;;;;;;;;;;;2853:30:5;782:8552:46;;-1:-1:-1;;782:8552:46;6039:4;782:8552;;;;2853:37:5;782:8552:46;2905:34:5;;;782:8552:46;2955:40:5;782:8552:46;;;2955:40:5;:::i;:::-;782:8552:46;;2454:864:5;:::o;2901:382::-;2886:4;3016:30;;2886:4;;3062:21;2886:4;3062:21;:36;782:8552:46;;;3062:36:5;:::i;3012:271::-;3136:16;3119:34;3136:16;;;3169:25;:40;782:8552:46;;;3169:40:5;:::i;3115:168::-;782:8552:46;;-1:-1:-1;;;3247:25:5;;;;;2744:100;782:8552:46;;-1:-1:-1;;;2801:32:5;;-1:-1:-1;;;;;782:8552:46;;2801:32:5;;;782:8552:46;;;10687:60:20;782:8552:46;;;;;;;;;;;:::o;:::-;;;;;;;;;;1822:223:8;782:8552:46;;-1:-1:-1;;;1998:40:8;;-1:-1:-1;;;;;782:8552:46;;;1998:40:8;;;782:8552:46;;;;;;;;1998:40:8;;782:8552:46;;;;;;867:6:8;782:8552:46;1998:40:8;;;;;;;-1:-1:-1;1998:40:8;;;1991:47;1822:223;:::o;1998:40::-;;;;;;;;;;;;;;:::i;782:8552:46:-;-1:-1:-1;;782:8552:46;;;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;-1:-1:-1;782:8552:46;:::o;1738:616:9:-;1847:23;782:8552:46;;-1:-1:-1;;782:8552:46;;;;;;;;-1:-1:-1;782:8552:46;;;10599:17:20;782:8552:46;1847:23:9;782:8552:46;;;;;;;;;;;;;2149:22:9;;2145:71;;2318:28;;;;:::i;:::-;9737:15:43;9762:18;;9801:1;9795:7;;9791:234;;1738:616:9;10049:53:43;;;;;:::i;:::-;10120:8;;;:63;;-1:-1:-1;;;;;782:8552:46;;1738:616:9:o;10120:63:43:-;10168:7;1847:23:9;10168:7:43;;:::i;:::-;14439:109;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:8552:46;;;10120:63:43;;9791:234;9838:14;;;;;:::i;:::-;782:8552:46;;;;;;;10049:53:43;14439:109;1847:23:9;14439:109:43;;;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:8552:46;;;;;9870:48:43;9866:149;782:8552:46;;;9938:10:43;9866:149;;9791:234;;;9866:149;9993:7;;;;;;:::i;:::-;9866:149;;;2145:71:9;782:8552:46;;;;;;;2187:18:9;:::o;3415:273:11:-;782:8552:46;6633:12;782:8552;3550:29:11;;;;3546:90;;3653:28;;;;:::i;3546:90::-;782:8552:46;;;;;3588:48:11;;;;;;;;;782:8552:46;;;;;3588:48:11;6730:312;-1:-1:-1;;;;;782:8552:46;;;-1:-1:-1;782:8552:46;;;5674:10:11;782:8552:46;;;;;;;;;;-1:-1:-1;;;;;;782:8552:46;;;;;;;7010:24:11;;782:8552:46;;;3137:18:22;;782:8552:46;;;;;6909:48:11;;-1:-1:-1;6909:48:11;-1:-1:-1;;;;;782:8552:46;3095:9:20;782:8552:46;;;;;;;;;;;;3004:116:20;3137:18:22;7010:24:11;7761:789;-1:-1:-1;;;;;782:8552:46;;;;7761:789:11;;782:8552:46;;;;7862:10:11;;;;;:24;;7761:789;7858:686;;7761:789;;;;;;:::o;7858:686::-;7906:18;7902:315;;7858:686;8234:16;;;8230:304;;7858:686;;;;;8230:304;-1:-1:-1;;;;;782:8552:46;;;;;8010:20:11;782:8552:46;;;;;8475:44:11;;8309:143;;8408:26;;;;:::i;:::-;8309:143;;:::i;:::-;782:8552:46;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;8475:44:11;8230:304;;;;;7902:315;-1:-1:-1;;;;;782:8552:46;;;;;8010:20:11;782:8552:46;;;;;8089:26:11;;;:::i;:::-;-1:-1:-1;;;;;782:8552:46;;;9312:14:11;;;:::i;:::-;782:8552:46;;;;;;;;;;8310:38:43;8156:46:11;6633:12:46;8156:46:11;6633:12:46;782:8552;6633:12;782:8552;8310:38:43;;:::i;:::-;782:8552:46;;;;;;;;;;;;;;;;;;;;;;8156:46:11;;;;7902:315;;;;7862:24;7876:10;;;;7862:24;;9069:273;;-1:-1:-1;;;;;782:8552:46;;;9312:14:11;9069:273;9312:14;:::i;:::-;782:8552:46;;;;;;;;;8310:38:43;6633:12:46;782:8552;6633:12;782:8552;8310:38:43;;:::i;:::-;9282:53:11;;9069:273::o;:::-;-1:-1:-1;;;;;782:8552:46;;;9312:14:11;;:::i;:::-;782:8552:46;;;;;;;;;8310:38:43;6633:12:46;782:8552;6633:12;782:8552;8310:38:43;:::i;9069:273:11:-;-1:-1:-1;;;;;782:8552:46;;;9312:14:11;;:::i;:::-;782:8552:46;;;;;;;;;;8310:38:43;6633:12:46;782:8552;6633:12;782:8552;8310:38:43;:::i;5393:300:20:-;-1:-1:-1;;;;;782:8552:46;;;;5393:300:20;;;;5476:18;;5472:86;;782:8552:46;;5571:16:20;;5567:86;;-1:-1:-1;;;;;782:8552:46;;3095:9:20;782:8552:46;;;;;;;;;;;6340:19:20;;;;6336:115;;782:8552:46;2756:5:22;782:8552:46;;;6571:15:20;;782:8552:46;;;;;;3095:9:20;782:8552:46;3095:9:20;782:8552:46;;;3095:9:20;782:8552:46;;;6571:15:20;782:8552:46;-1:-1:-1;;;;;782:8552:46;;3095:9:20;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;7083:25:20;;782:8552:46;7083:25:20;2756:5:22;:::i;6336:115:20:-;782:8552:46;;-1:-1:-1;;;6386:50:20;;-1:-1:-1;;;;;782:8552:46;;6386:50:20;;;782:8552:46;;;;;;;;;;;;;;;10687:60:20;5567:86;782:8552:46;;-1:-1:-1;;;5610:32:20;;5492:1;5610:32;;;782:8552:46;;;5610:32:20;5472:86;782:8552:46;;-1:-1:-1;;;5517:30:20;;5492:1;5517:30;;;782:8552:46;;;5517:30:20;9701:432;;-1:-1:-1;;;;;782:8552:46;;;9813:19:20;9809:89;;782:8552:46;;9911:21:20;9907:90;;10006:18;:27;:18;782:8552:46;;;;;;;;;;;;;;;;10006:27:20;782:8552:46;9701:432:20:o;782:8552:46:-;;;;;;;:::i;:::-;-1:-1:-1;782:8552:46;;;;;;;:::o;5221:224:26:-;;;;5337:8;;-1:-1:-1;782:8552:46;;5690:21:26;:17;;5815:158;;;;;;5686:354;782:8552:46;;-1:-1:-1;;;6010:19:26;;;;;1265:222:29;-1:-1:-1;;;;;782:8552:46;;-1:-1:-1;782:8552:46;;;1121:7:29;782:8552:46;;;;;;;;;;;;;1396:16:29;;;1392:89;;1265:222;;:::o;1392:89::-;782:8552:46;;-1:-1:-1;;;1435:35:29;;-1:-1:-1;;;;;782:8552:46;;;;1435:35:29;;;782:8552:46;;;;;;;;;;10687:60:20;782:8552:46;;;;;;;;;15293:1:33;782:8552:46;;;;;;;:::o;:::-;;;;;;;;;12994:2:33;782:8552:46;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::o;14807:889:33:-;;;782:8552:46;;14977:25:33;;:40;;;;14807:889;14973:72;;15080:9;;;:::i;:::-;15074:15;;15073:88;;;14807:889;15272:22;34863:71:41;;;15272:22:33;:::i;:::-;15267:2;782:8552:46;;15267:2:33;782:8552:46;;;;;;;;;;;15359:29:33;15267:27;;15527:50;;;:::i;:::-;15591:31;;-1:-1:-1;;;;;782:8552:46;;;;15591:31:33:o;15355:335::-;15653:26;;;-1:-1:-1;15653:26:33;-1:-1:-1;15653:26:33;:::o;15073:88::-;-1:-1:-1;30978:95:2;;;;;;-1:-1:-1;;;;;;782:8552:46;-1:-1:-1;;;15094:67:33;15073:88;;14977:40;15006:11;;;;14977:40;;12276:1051;;;;12563:9;;;:::i;:::-;12557:15;;12556:82;;;12276:1051;12736:22;34863:71:41;;;12736:22:33;:::i;:::-;12769:18;-1:-1:-1;782:8552:46;;;;;;;;12802:26:33;;;12830:7;;;;;;13299:21;;;12571:1;13299:21;12276:1051;:::o;12839:3::-;30978:95:2;;;;782:8552:46;12870:55:33;12883:41;30978:95:2;;;;;;782:8552:46;;;;;;12883:41:33;12870:55;:::i;:::-;782:8552:46;12943:8:33;12949:2;12943:8;;12939:31;;12984:12;;12839:3;12984:12;;:::i;:::-;782:8552:46;12839:3:33;;:::i;:::-;12802:26;;;;;12939:31;-1:-1:-1;;;;;;;;;12953:17:33:o;12556:82::-;-1:-1:-1;30978:95:2;;;;;;-1:-1:-1;;;;;;782:8552:46;-1:-1:-1;;;12577:61:33;12556:82;;15702:524;782:8552:46;;15995:2:33;15987:10;;:24;;;15702:524;15983:203;;;-1:-1:-1;;782:8552:46;;;15702:524:33;:::o;15983:203::-;16055:2;16047:10;;:25;;;15983:203;16043:143;;;-1:-1:-1;;782:8552:46;;;;15702:524:33:o;16043:143::-;16116:2;16108:10;;:24;;;16043:143;16104:82;;;-1:-1:-1;;782:8552:46;;;;:::o;16104:82:33:-;16164:22;782:8552:46;16164:22:33;:::o;16108:24::-;16122:10;16130:2;16122:10;;16108:24;;16047:25;16061:11;16069:3;16061:11;;16047:25;;15987:24;16001:10;16009:2;16001:10;;15987:24;;6887:260:34;;7105:8;6887:260;;7051:25;6887:260;7051:25;:::i;:::-;7105:8;;;;;:::i;5203:1551::-;;;6283:66;6270:79;;6266:164;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6541:24:34;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;6579:20:34;6575:113;;6698:49;;5203:1551;:::o;6575:113::-;6615:62;;;6541:24;6615:62;;:::o;6266:164::-;6365:54;;;6381:1;6365:54;6385:30;6365:54;;:::o;782:8552:46:-;;-1:-1:-1;782:8552:46;;;:::o;7280:532:34:-;782:8552:46;;;:::i;:::-;7366:29:34;;;7411:7;;:::o;7362:444::-;782:8552:46;;;:::i;:::-;7471:29:34;7462:38;;7471:29;;782:8552:46;;-1:-1:-1;;;7523:23:34;;;;;7458:348;782:8552:46;;;:::i;:::-;7576:35:34;7567:44;;7576:35;;782:8552:46;;-1:-1:-1;;;7634:46:34;;;;;782:8552:46;;;;;10687:60:20;7563:243:34;782:8552:46;;7710:30:34;782:8552:46;;:::i;:::-;7701:39:34;7697:109;;7563:243;7280:532::o;7697:109::-;782:8552:46;;-1:-1:-1;;;7763:32:34;;;;;782:8552:46;;;;;;10687:60:20;4917:176:35;3445:249:36;4917:176:35;5053:20;;:::i;:::-;3445:249:36;;;;-1:-1:-1;;;3445:249:36;;;;;;;;;;;4917:176:35;:::o;3845:262::-;3929:4;3938:11;-1:-1:-1;;;;;782:8552:46;3921:28:35;;:63;;3845:262;3917:184;;;4007:22;4000:29;:::o;3917:184::-;782:8552:46;;4204:80:35;;;782:8552:46;2079:95:35;782:8552:46;;4226:11:35;782:8552:46;2079:95:35;;782:8552:46;4239:14:35;2079:95;;;782:8552:46;4255:13:35;2079:95;;;782:8552:46;3929:4:35;782:8552:46;2079:95:35;;782:8552:46;;4204:80:35;;;;;:::i;3921:63::-;3970:14;;3953:13;:31;3921:63;;3358:267:31;1390:66;3481:46;;1390:66;;;2625:40;;2679:11;2688:2;2679:11;;2675:69;;782:8552:46;;;;;;:::i;:::-;2324:106:31;;2311:2;782:8552:46;;2324:106:31;3543:22;:::o;2675:69::-;782:8552:46;;-1:-1:-1;;;2713:20:31;;;;;3477:142;-1:-1:-1;782:8552:46;;6126:13:35;782:8552:46;;-1:-1:-1;782:8552:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1390:66:31;;;;;;;:::i;782:8552:46:-;6126:13:35;-1:-1:-1;782:8552:46;;;-1:-1:-1;;782:8552:46;;;;;;;-1:-1:-1;1390:66:31;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390:66:31;782:8552:46;;;;;;;;;;;;6126:13:35;782:8552:46;;;;;;;3358:267:31;1390:66;3481:46;;1390:66;;;2625:40;;2679:11;2688:2;2679:11;;2675:69;;782:8552:46;;;;;;:::i;3477:142:31:-;-1:-1:-1;782:8552:46;;6584:16:35;782:8552:46;;-1:-1:-1;782:8552:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;1390:66:31;;;;;;;:::i;782:8552:46:-;6584:16:35;-1:-1:-1;782:8552:46;;;-1:-1:-1;;782:8552:46;;;;;;;-1:-1:-1;1390:66:31;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041:429:37;;;1167:18;;;;1254:33;;;;:::i;:::-;782:8552:46;;;;:::i;:::-;1308:33:37;:56;;;;1301:63;;;:::o;1163:301::-;1189:1;782:8552:46;;;;;2105:60:37;;782:8552:46;2105:60:37;;;;;;;;;;;;;;782:8552:46;;;;;;;;;;;:::i;2105:60:37:-;2074:101;;;;;;;:::i;:::-;2193:42;;;1163:301;2193:134;;;1395:58;;;:::o;2193:134::-;2251:29;782:8552:46;;;2105:60:37;782:8552:46;;;2251:29:37;;;;;;:::i;:::-;:76;1395:58;:::o;2193:42::-;782:8552:46;;2105:60:37;782:8552:46;;2216:19:37;;2193:42;;;2129:778:34;782:8552:46;;;2129:778:34;2319:2;2299:22;;2319:2;;2751:25;2535:196;;;;;;;;;;;;;;;-1:-1:-1;2535:196:34;2751:25;;:::i;:::-;2744:32;;;;;:::o;2295:606::-;2807:83;;2823:1;2807:83;2827:35;2807:83;;:::o;4174:218:41:-;-1:-1:-1;;;;;782:8552:46;4254:25:41;;;4250:105;;782:8552:46;4174:218:41;:::o;4250:105::-;782:8552:46;;;;4302:42:41;;;;;;782:8552:46;4302:42:41;;;782:8552:46;;;;;4302:42:41;14296:213;782:8552:46;14374:24:41;;;;14370:103;;782:8552:46;14296:213:41;:::o;14370:103::-;782:8552:46;;;;4302:42:41;;;;14421:41;;14452:2;14421:41;;;782:8552:46;;;;;14421:41:41;15296:213;782:8552:46;15374:24:41;;;;15370:103;;782:8552:46;15296:213:41;:::o;15370:103::-;782:8552:46;;;;4302:42:41;;;;15421:41;;15452:2;15421:41;;;782:8552:46;;;;;15421:41:41;782:8552:46;;;;;;;:::o;:::-;;;;;;;;;;;;18080:5181:40;18246:1;18241:6;;;18237:53;;18246:1;19217:14;-1:-1:-1;;;19278:16:40;;;19274:92;;18080:5181;22827:18;22717;22607;22498;22387;22278;23216:28;19383:15;19898:6;19383:15;-1:-1:-1;;;23237:6:40;19383:15;;;19379:90;;18080:5181;19493:7;19486:15;;;19482:90;;18080:5181;19596:7;19589:15;;;19585:89;;18080:5181;19698:6;19691:14;;;19687:87;;18080:5181;19798:6;19791:14;;;19787:87;;18080:5181;19891:14;;19887:61;;18080:5181;20374:1;782:8552:46;18246:1:40;782:8552:46;22284:6:40;;;;:::i;:::-;782:8552:46;;;;;22278:18:40;22393:6;;;;:::i;22387:18::-;22504:6;;;;:::i;22498:18::-;22613:6;;;;:::i;22607:18::-;22723:6;;;;:::i;22717:18::-;22833:6;;;;:::i;22827:18::-;23237:6;;;:::i;:::-;23232:11;;;782:8552:46;23216:28:40;782:8552:46;;18080:5181:40;:::o;19887:61::-;18246:1;782:8552:46;19887:61:40;;19787:87;782:8552:46;;;;;19787:87:40;;;19687;782:8552:46;;;;;19687:87:40;;;19585:89;782:8552:46;;;;;19585:89:40;;;19482:90;782:8552:46;;;;;19482:90:40;;;19379;782:8552:46;;;;;19379:90:40;;;19274:92;-1:-1:-1;;;;782:8552:46;-1:-1:-1;19285:8:40;782:8552:46;;;19274:92:40;;10310:206:43;1586:23:9;782:8552:46;10405:17:43;;10446:8;;;:63;;10405:17;10310:206;:::o;10446:63::-;10599:17:20;;;782:8552:46;;;;;1586:23:9;14439:109:43;;;;782:8552:46;;;10310:206:43;:::o;:::-;7419:17:11;782:8552:46;10405:17:43;;10446:8;;;:63;;10405:17;10310:206;:::o;10446:63::-;10599:17:20;;;782:8552:46;;;;;7419:17:11;14439:109:43;;;;782:8552:46;;;10310:206:43;:::o;:::-;782:8552:46;;10405:17:43;;10446:8;;;:63;;;10405:17;10310:206;:::o;10446:63::-;10599:17:20;;782:8552:46;;;;;;;;14439:109:43;;;;;;;782:8552:46;;;10310:206:43;:::o;782:8552:46:-;;;;;;;;;;;;;1586:23:9;782:8552:46;;-1:-1:-1;;;782:8552:46;;;;;;;;;1586:23:9;782:8552:46;;;;;;;;1586:23:9;-1:-1:-1;782:8552:46;-1:-1:-1;;;;;;;;;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;782:8552:46;;;;;;7419:17:11;782:8552:46;;-1:-1:-1;;;782:8552:46;;;;;;;;;7419:17:11;782:8552:46;;;;;;;;7419:17:11;-1:-1:-1;782:8552:46;-1:-1:-1;;;;;;;;;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;782:8552:46;;;;;;;;;;;;;;;:::i;11657:922:43:-;1586:23:9;782:8552:46;11657:922:43;;;11864:7;;;;11936;11916:28;11936:7;;:::i;:::-;1586:23:9;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;14289:265;;11916:28;782:8552:46;;;;;;;;;;;;12103:13:43;;;12099:89;;12251:14;;;;;12285:19;;;782:8552:46;;;;;;;;;;;;;;;;;12285:19:43;782:8552:46;;12423:25:43;;:::o;12247:163::-;782:8552:46;;12343:52:43;782:8552:46;12353:41:43;782:8552:46;;:::i;:::-;;;;;;;;12353:41:43;-1:-1:-1;;;;;782:8552:46;;12353:41:43;;;782:8552:46;12343:52:43;:::i;:::-;12247:163;;12099:89;782:8552:46;;-1:-1:-1;;;12143:30:43;;;;;11860:713;782:8552:46;12479:52:43;782:8552:46;12489:41:43;782:8552:46;;:::i;12489:41:43:-;-1:-1:-1;;;;;782:8552:46;;12489:41:43;;;782:8552:46;12343:52:43;:::i;12479:::-;11870:1;12545:17;;:::o;11657:922::-;7419:17:11;782:8552:46;11657:922:43;;;11864:7;;;;11936;11916:28;11936:7;;:::i;:::-;7419:17:11;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;14289:265;;11916:28;782:8552:46;;;;;;;;;;;;12103:13:43;;;12099:89;;12251:14;;;;;12285:19;;;782:8552:46;;;;;;;;;;;;;;;;;12247:163:43;782:8552:46;;12343:52:43;782:8552:46;12353:41:43;782:8552:46;;:::i;12353:41:43:-;-1:-1:-1;;;;;782:8552:46;;12353:41:43;;;782:8552:46;12343:52:43;:::i;11860:713::-;782:8552:46;12479:52:43;782:8552:46;12489:41:43;782:8552:46;;:::i;12489:41:43:-;-1:-1:-1;;;;;782:8552:46;;12489:41:43;;;782:8552:46;12343:52:43;:::i;11657:922::-;782:8552:46;;11657:922:43;;;11864:7;;;;11936;11916:28;11936:7;;:::i;:::-;11916:28;14439:109;;;;;;14289:265;;11916:28;782:8552:46;;;;;;;;;;;;12103:13:43;;;12099:89;;12251:14;;;;;12285:19;;;;782:8552:46;;;;;;;;;;;;;;;;;12247:163:43;782:8552:46;;;12343:52:43;782:8552:46;12353:41:43;782:8552:46;;:::i;:::-;;;;;;;;12353:41:43;-1:-1:-1;;;;;782:8552:46;;12353:41:43;;;782:8552:46;12343:52:43;:::i;11860:713::-;782:8552:46;;12479:52:43;782:8552:46;12489:41:43;782:8552:46;;:::i;12489:41:43:-;-1:-1:-1;;;;;782:8552:46;;12489:41:43;;;782:8552:46;12343:52:43;:::i;12929:433::-;;13112:10;;;;;;13344:11;;12929:433;:::o;13105:230::-;3721:5:40;;;;;3731;;;;782:8552:46;;;;;;;;;5234:17:11;-1:-1:-1;14439:109:43;782:8552:46;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:8552:46;;;;;-1:-1:-1;13189:136:43;782:8552:46;;;13248:10:43;13189:136;;13105:230;;;13189:136;13303:7;;;;;;:::i;:::-;13189:136;;;12929:433;;13112:10;;;;;;13344:11;;12929:433;:::o;13105:230::-;3721:5:40;;;;;3731;;;;782:8552:46;;;;;;;;;1847:23:9;-1:-1:-1;14439:109:43;782:8552:46;14439:109:43;;-1:-1:-1;;;;;;;;;;;14439:109:43;782:8552:46;;;;;-1:-1:-1;13189:136:43;782:8552:46;;;13248:10:43;13189:136;;13105:230;;;13189:136;13303:7;;;;;;:::i;:::-;13189:136;;;12929:433;;;13112:10;;;;;;13344:11;;;12929:433;:::o;13105:230::-;3721:5:40;;;;;;3731;;;;782:8552:46;;;;;;;;;-1:-1:-1;14439:109:43;;;;;;;;782:8552:46;;;;;;;;-1:-1:-1;782:8552:46;;;13248:10:43;13189:136;;13105:230;;;;13189:136;13303:7;;;;;;:::i;:::-;13189:136;;;1637:317:44;15944:15:2;782:8552:46;;;;;1801:1:44;782:8552:46;;;-1:-1:-1;;;;;782:8552:46;;;;;;1789:29:44;1785:68;;-1:-1:-1;1536:4:30;1867:11:44;1536:4:30;;;-1:-1:-1;1536:4:30;782:8552:46;15944:15:2;1536:4:30;;-1:-1:-1;;;;;1536:4:30;;782:8552:46;1536:4:30;;;;;15944:15:2;1536:4:30;1637:317:44:o;1785:68::-;1829:135:30;-1:-1:-1;1829:135:30;1536:4;1829:135;;;;;3149:373:44;8977:15:2;782:8552:46;;-1:-1:-1;;;;;782:8552:46;;;;;;3313:24:44;;3309:64;;1536:4:30;-1:-1:-1;1536:4:30;3395:11:44;1536:4:30;;3395:11:44;1536:4:30;-1:-1:-1;1536:4:30;1315;-1:-1:-1;1315:4:30;;;;782:8552:46;;-1:-1:-1;;;;;1536:4:30;8977:15:2;1315:4:30;;;8977:15:2;1315:4:30;3149:373:44:o;3309:64::-;1829:135:30;-1:-1:-1;1829:135:30;1315:4;1829:135;;;;;782:8552:46;;;;:::o;:::-;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;7458:208:20:-;;;-1:-1:-1;;;;;782:8552:46;;7528:21:20;;7524:91;;6233:21;782:8552:46;;;;;;;;;6233:21:20;782:8552:46;-1:-1:-1;;;;;782:8552:46;;3095:9:20;782:8552:46;;;;;;;;;;;;;;;;;;;;;7083:25:20;;782:8552:46;7083:25:20;6233:21;782:8552:46;;-1:-1:-1;;;;;2616:12:22;;2612:94;;2756:5;;;;;:::i;2612:94::-;782:8552:46;;-1:-1:-1;;;2655:36:22;;;;;782:8552:46;;;-1:-1:-1;;;;;782:8552:46;;;;;;10687:60:20;782:8552:46;;;;:::o;:::-;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;782:8552:46;;;:::o;:::-;;;;;;;;:::o;:::-;-1:-1:-1;1315:4:30;;782:8552:46;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;782:8552:46;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;10599:17:20;;;782:8552:46;;;;;;;;;:::o;:::-;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;10599:17:20;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;782:8552:46;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;-1:-1:-1;782:8552:46;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;782:8552:46;;;-1:-1:-1;782:8552:46;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;782:8552:46;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;;;;;782:8552:46;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;-1:-1:-1;;;782:8552:46;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;7276:399:11:-;;7661:6;7276:399;7413:58;7444:26;;;:::i;:::-;7413:58;:::i;:::-;-1:-1:-1;;;;;;;782:8552:46;;;;7495:16:11;;7491:110;;7276:399;5674:10;782:8552:46;;;;;;;;;;;;;;;;;7661:6:11;:::i;7491:110::-;7527:63;7563:26;;;:::i;:::-;7527:63;:::i;:::-;7491:110;;;;7276:399;7661:6;;7276:399;-1:-1:-1;;;;;782:8552:46;;;;;;;7379:18:11;;7375:107;;7276:399;782:8552:46;7495:16:11;;;7491:110;;7276:399;7395:1;782:8552:46;5674:10:11;782:8552:46;;;;7395:1:11;782:8552:46;;;;7395:1:11;782:8552:46;;7395:1:11;782:8552:46;;;7661:6:11;;:::i;7491:110::-;7527:63;7563:26;;;:::i;7527:63::-;7491:110;;;;7375:107;7413:58;7444:26;;;:::i;7413:58::-;7375:107;;;;782:8552:46;;;;;;;;;;;;;;;;;;:::o;2123:740:7:-;2250:23;;;:::i;:::-;782:8552:46;;;;:::i;:::-;2304:20:7;2288:36;;2284:86;;2398:24;;;782:8552:46;;3665:12:7;782:8552:46;;;;;;;2398:24:7;1315:4:30;2436:9:7;782:8552:46;2436:28:7;;-1:-1:-1;;;;;782:8552:46;;;2436:28:7;782:8552:46;;-1:-1:-1;;;2436:37:7;;;;;782:8552:46;;;2436:37:7;;782:8552:46;;2436:37:7;782:8552:46;;;;2436:37:7;;;;;;;-1:-1:-1;2436:37:7;;;2123:740;-1:-1:-1;2432:425:7;;;2489:27;;;2304:20;2489:27;:::o;2432:425::-;782:8552:46;;-1:-1:-1;;;2537:34:7;;2436:37;2537:34;;782:8552:46;;;;;;;;;;;;2537:34:7;;;;;;;-1:-1:-1;2537:34:7;;;2432:425;-1:-1:-1;;2533:324:7;;;2679:22;2672:29;:::o;2533:324::-;2824:22;2817:29;:::o;2537:34::-;;;;;;-1:-1:-1;2537:34:7;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;2436:37;;;;;;;;;;;;;;:::i;:::-;;;;2284:86;2340:19;;:::o;5886:1248:2:-;6100:22;;782:8552:46;;13871:10:2;782:8552:46;;;;;;;6100:22:2;782:8552:46;;;;;;6235:76:2;;782:8552:46;;6321:76:2;;7457:39;7464:32;:22;;782:8552:46;;13871:10:2;782:8552:46;;;;;;;7457:39:2;6469:13;;6465:90;;782:8552:46;6633:12;782:8552;6614:28:2;;;;6610:87;;6726:28;;;:::i;:::-;6769;;;6813:27;6820:20;6813:27;:::o;6765:363::-;6861:27;6862:26;;;:::i;6861:27::-;:58;;;;6765:363;6857:271;;;6935:29;6942:22;6935:29;:::o;6857:271::-;8115:33;;:22;8108:40;8115:22;782:8552:46;;13871:10:2;782:8552:46;;;;;;;8115:22:2;:33;782:8552:46;;;;;8108:40:2;8115:33;;7036:23;7029:30;:::o;6981:147::-;7097:20;7090:27;:::o;6861:58::-;6893:26;6892:27;6893:26;;-1:-1:-1;782:8552:46;2214:14:5;782:8552:46;;;-1:-1:-1;782:8552:46;2258:21:5;;;782:8552:46;;;-1:-1:-1;2078:236:5;;6892:27:2;6861:58;;6610:87;6658:28;;-1:-1:-1;6658:28:2;:::o;6465:90::-;782:8552:46;;-1:-1:-1;;;6505:39:2;;;;;782:8552:46;;;;;10687:60:20;6321:76:2;6357:29;6364:22;6357:29;:::o;6235:76::-;6271:29;;6278:22;6271:29;:::o;1668:276:5:-;-1:-1:-1;782:8552:46;1804:14:5;782:8552:46;;;-1:-1:-1;782:8552:46;7464:10:2;782:8552:46;;;;-1:-1:-1;782:8552:46;;;;;;;;;;;2789:37:9;;;;;;782:8552:46;;;;;;;;;;867:6:8;782:8552:46;2789:37:9;;;;;;;1888:49:5;2789:37:9;2544:3;2789:37;:66;:37;-1:-1:-1;2789:37:9;;;2829:26;;;;:::i;2789:66::-;782:8552:46;1888:21:5;1912:25;782:8552:46;1888:21:5;;782:8552:46;1912:25:5;;782:8552:46;1888:49:5;;:::i;:::-;-1:-1:-1;1848:89:5;1668:276;:::o;4908:554:7:-;;18812:57:2;4908:554:7;;;18812:57:2;:::i;:::-;7624:23:46;;;:::i;:::-;782:8552;;;;;;18938:208:2;27000:1;782:8552:46;;;;27519:48:2;:62;27515:172;;19167:22;:38;:22;;782:8552:46;;13871:10:2;782:8552:46;;;;;;;19167:22:2;2002:56;;-1:-1:-1;;;;;2002:56:2;-1:-1:-1;;;2002:56:2;;;;19167:38;782:8552:46;;;;;19220:28:2;;782:8552:46;;19220:28:2;5230:24:7;;782:8552:46;;3665:12:7;782:8552:46;;;;;;;5230:24:7;1315:4:30;5268:15:7;5264:164;;5438:17;4908:554;:::o;5264:164::-;5321:9;782:8552:46;5321:16:7;;-1:-1:-1;;;;;782:8552:46;;;5321:16:7;:28;;;;;782:8552:46;;-1:-1:-1;;;5321:28:7;;782:8552:46;5321:28:7;;782:8552:46;;;;-1:-1:-1;;782:8552:46;;;;;;-1:-1:-1;;5321:28:7;;;;;;;;5264:164;-1:-1:-1;;782:8552:46;;;3665:12:7;782:8552:46;;;;;1315:4:30;4908:554:7;:::o;5321:28::-;;;;;;:::i;:::-;;;;27515:172:2;782:8552:46;;;;;;27604:72:2;;;;;;;;;782:8552:46;;;;;;:::i;:::-;18938:208:2;782:8552:46;;;;27604:72:2;782:8552:46;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;-1:-1:-1;782:8552:46;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;-1:-1:-1;782:8552:46;;;;;;;;;;:::o;4067:432:7:-;;;;;782:8552:46;;;;;4318:9:7;782:8552:46;;4318:103:7;;;;;;-1:-1:-1;782:8552:46;4318:103:7;782:8552:46;;;;;;;;;;;;4318:103:7;;782:8552:46;;6677:4:7;782:8552:46;;;6661:40:7;4318:103;;;;;:::i;:::-;;4348:9;;4318:103;;;;;;;;-1:-1:-1;4318:103:7;4468:24;4318:103;;;4067:432;4468:24;782:8552:46;;3665:12:7;782:8552:46;;;;;;;4318:103:7;;;;:::i;:::-;;;"},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","checkpoints(address,uint32)":"f1127ed8","clock()":"91ddadf4","createProposal(bytes,uint256[],uint256,uint256)":"d1fad4cd","decimals()":"313ce567","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","distributeInitialTokens(address[],uint256[])":"824e83e1","dleInfo()":"f2c26a47","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","installModule(string,address)":"194a94fc","name()":"06fdde03","nonces(address)":"7ecebe00","numCheckpoints(address)":"6fcfff45","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalCounter()":"0c0512e9","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","proposalVotes(uint256)":"544ffc9c","proposals(uint256)":"013cf08b","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","quorumDenominator()":"97c3d334","quorumNumerator()":"a7713a70","quorumNumerator(uint256)":"60c4247f","quorumPercentage()":"4fa76ec9","relay(address,uint256,bytes)":"c28bc2fa","setProposalThreshold(uint256)":"ece40cc1","setVotingDelay(uint48)":"79051887","setVotingPeriod(uint32)":"e540d01d","signProposal(uint256)":"ab273016","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","timelock()":"d33219b4","token()":"fc0c546a","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","updateQuorumNumerator(uint256)":"06f3f9e6","updateTimelock(address)":"a890c910","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"internalType\":\"string[]\",\"name\":\"okvedCodes\",\"type\":\"string[]\"},{\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"votingDelay\",\"type\":\"uint48\"},{\"internalType\":\"uint32\",\"name\":\"votingPeriod\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"proposalThreshold\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"quorumPercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct DLE.DLEConfig\",\"name\":\"config\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"timelockAddress\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"increasedSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cap\",\"type\":\"uint256\"}],\"name\":\"ERC20ExceededSafeSupply\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"clock\",\"type\":\"uint48\"}],\"name\":\"ERC5805FutureLookup\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC6372InconsistentClock\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"quorumNumerator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"quorumDenominator\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidQuorumFraction\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyProposer\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"}],\"name\":\"VotesExpiredSignature\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"okvedCodes\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"tokenAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"timelockAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"governorAddress\",\"type\":\"address\"}],\"name\":\"DLEInitialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousVotes\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotes\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"moduleName\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"moduleAddress\",\"type\":\"address\"}],\"name\":\"ModuleInstalled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"operation\",\"type\":\"bytes\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"signaturesCount\",\"type\":\"uint256\"}],\"name\":\"ProposalSigned\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldProposalThreshold\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newProposalThreshold\",\"type\":\"uint256\"}],\"name\":\"ProposalThresholdSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldQuorumNumerator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newQuorumNumerator\",\"type\":\"uint256\"}],\"name\":\"QuorumNumeratorUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldTimelock\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newTimelock\",\"type\":\"address\"}],\"name\":\"TimelockChange\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"partners\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"name\":\"TokensDistributed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldVotingDelay\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotingDelay\",\"type\":\"uint256\"}],\"name\":\"VotingDelaySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldVotingPeriod\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotingPeriod\",\"type\":\"uint256\"}],\"name\":\"VotingPeriodSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"pos\",\"type\":\"uint32\"}],\"name\":\"checkpoints\",\"outputs\":[{\"components\":[{\"internalType\":\"uint48\",\"name\":\"_key\",\"type\":\"uint48\"},{\"internalType\":\"uint208\",\"name\":\"_value\",\"type\":\"uint208\"}],\"internalType\":\"struct Checkpoints.Checkpoint208\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_operation\",\"type\":\"bytes\"},{\"internalType\":\"uint256[]\",\"name\":\"_targetChains\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256\",\"name\":\"_timelock\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_governanceChain\",\"type\":\"uint256\"}],\"name\":\"createProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"_partners\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"_amounts\",\"type\":\"uint256[]\"}],\"name\":\"distributeInitialTokens\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"dleInfo\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"location\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"coordinates\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"jurisdiction\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"oktmo\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"kpp\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"creationTimestamp\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isActive\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_moduleName\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"_moduleAddress\",\"type\":\"address\"}],\"name\":\"installModule\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"numCheckpoints\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalCounter\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"againstVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"forVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"abstainVotes\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposals\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"operation\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"timelock\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"governanceChain\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"executed\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"quorumRequired\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"signaturesCount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumDenominator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorumNumerator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumNumerator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumPercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newProposalThreshold\",\"type\":\"uint256\"}],\"name\":\"setProposalThreshold\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint48\",\"name\":\"newVotingDelay\",\"type\":\"uint48\"}],\"name\":\"setVotingDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"newVotingPeriod\",\"type\":\"uint32\"}],\"name\":\"setVotingPeriod\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_proposalId\",\"type\":\"uint256\"}],\"name\":\"signProposal\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"timelock\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract IERC5805\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newQuorumNumerator\",\"type\":\"uint256\"}],\"name\":\"updateQuorumNumerator\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract TimelockController\",\"name\":\"newTimelock\",\"type\":\"address\"}],\"name\":\"updateTimelock\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"\\u041e\\u0441\\u043d\\u043e\\u0432\\u043d\\u043e\\u0439 \\u043a\\u043e\\u043d\\u0442\\u0440\\u0430\\u043a\\u0442 DLE \\u0441 \\u043e\\u0442\\u0434\\u0435\\u043b\\u044c\\u043d\\u044b\\u043c \\u043c\\u043e\\u0434\\u0443\\u043b\\u0435\\u043c TimelockController.\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC20ExceededSafeSupply(uint256,uint256)\":[{\"details\":\"Total supply cap has been exceeded, introducing a risk of votes overflowing.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC5805FutureLookup(uint256,uint48)\":[{\"details\":\"Lookup to future votes is not available.\"}],\"ERC6372InconsistentClock()\":[{\"details\":\"The clock was incorrectly modified.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidQuorumFraction(uint256,uint256)\":[{\"details\":\"The quorum set is not a valid fraction.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorOnlyProposer(address)\":[{\"details\":\"The `account` is not a proposer.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"VotesExpiredSignature(uint256)\":[{\"details\":\"The signature used has expired.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"TimelockChange(address,address)\":{\"details\":\"Emitted when the timelock controller used for proposal execution is modified.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"COUNTING_MODE()\":{\"details\":\"See {IGovernor-COUNTING_MODE}.\"},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"checkpoints(address,uint32)\":{\"details\":\"Get the `pos`-th checkpoint for `account`.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"See {IGovernor-hasVoted}.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"numCheckpoints(address)\":{\"details\":\"Get number of checkpoints for `account`.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalVotes(uint256)\":{\"details\":\"Accessor to the internal vote counts.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorumDenominator()\":{\"details\":\"Returns the quorum denominator. Defaults to 100, but may be overridden.\"},\"quorumNumerator()\":{\"details\":\"Returns the current quorum numerator. See {quorumDenominator}.\"},\"quorumNumerator(uint256)\":{\"details\":\"Returns the quorum numerator at a specific timepoint. See {quorumDenominator}.\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"setProposalThreshold(uint256)\":{\"details\":\"Update the proposal threshold. This operation can only be performed through a governance proposal. Emits a {ProposalThresholdSet} event.\"},\"setVotingDelay(uint48)\":{\"details\":\"Update the voting delay. This operation can only be performed through a governance proposal. Emits a {VotingDelaySet} event.\"},\"setVotingPeriod(uint32)\":{\"details\":\"Update the voting period. This operation can only be performed through a governance proposal. Emits a {VotingPeriodSet} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"timelock()\":{\"details\":\"Public accessor to check the address of the timelock\"},\"token()\":{\"details\":\"The token that voting power is sourced from.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"},\"updateQuorumNumerator(uint256)\":{\"details\":\"Changes the quorum numerator. Emits a {QuorumNumeratorUpdated} event. Requirements: - Must be called through a governance proposal. - New numerator must be smaller or equal to the denominator.\"},\"updateTimelock(address)\":{\"details\":\"Public endpoint to update the underlying timelock instance. Restricted to the timelock itself, so updates must be proposed, scheduled, and executed through governance proposals. CAUTION: It is not recommended to change the timelock while there are other queued governance proposals.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"}},\"title\":\"DLE (Digital Legal Entity)\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/DLE.sol\":\"DLE\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0xa30ab326d0542cc4bee22c242395ee41fb85994acfce4dfe294526c17f76b637\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7a3cf4dd15a0e09c98d1bda8a3b6d68301bc5c212af6464abc0a8d5177b8729\",\"dweb:/ipfs/QmSn8GHANwtepfhQC6h81StbSXWBJwpVYHSBQuYdnCJWv6\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0x9406604436e6925413ab70149fec16f3b28cc9e492b2baaa09c0acefd315b2a7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e7a82b7b863fe03be982b1cec333813eb8bc9b11f7d3c09110b6f986fc1e8301\",\"dweb:/ipfs/QmcTuh55tccJJaDVbkseQJ9fTHP6EPduCMKAe4tcQMBirQ\"]},\"@openzeppelin/contracts/governance/TimelockController.sol\":{\"keccak256\":\"0x50ea4919331ca84a89c44be1e1fdecd597c7f5575c3d93f582197db97171c2c9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a80401f75260f9f42440c05baee0d2ff7cdd1e1e451400000eabb9c901abe383\",\"dweb:/ipfs/QmVdWjwkxmWrxcmz6ffmC8nCLwj5ixKrgWF7mKERdkZSfR\"]},\"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol\":{\"keccak256\":\"0xdc21c15a8582ca58529bf4b63209718a86fd944cbb206a492687333fe8cce0ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4a4a30ef6ff3d7165c00a6f41a37569035a8b1602b77ecac8453a6ef2cf7c149\",\"dweb:/ipfs/QmZjt4yg3vWWeDMQ6avpXLYLMjctv3jwaWgrH4c5ozSg83\"]},\"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol\":{\"keccak256\":\"0x1e0810708b8f5de8d3db73240ccee2d36a305cb904aa5acd4588834ebce6acce\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9758197a4d3cb1aa3036a9bd0edbf34a2eba82e484d3d519da495e495d752dee\",\"dweb:/ipfs/QmYtV61Sp55bfcW4DZvsRuDo2EKb5PekqoY3nx5STJn6Zt\"]},\"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol\":{\"keccak256\":\"0xe5d4ce636fd706494b1f488fc562995e9486a3d14203ad311be6c6f724955bad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3d90512ee129236608a01e2d1541c9740a0f4d16863f214191e443342e540901\",\"dweb:/ipfs/QmStf5H59Lu2WNKPxmifFU6kJrWcMEvb2yKbFjsXkCvP43\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\":{\"keccak256\":\"0x6fc0e9e0c3ed137dc2281a120cdc01b92010a26e6fd5fc4e6af08fc0f28bdb9e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2de2620f20f2ec0f52b14b241bec63815a5e5c42a76198a754d899fedfbdb97a\",\"dweb:/ipfs/QmTPcYhinbDv9T6T1hzNjbZrWNWSFYauoug4zdPvDTXect\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol\":{\"keccak256\":\"0x5b5cdb361ed018c0162942d673c17e187c1a52ded2ce4f41e8a3f3f5d1656e00\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd78b11b946d9001725a38844f1d6163906965ec321e1b09bd7e476baedc5d12\",\"dweb:/ipfs/QmPgTnTYDbgXgwHXbkxofSH51QDFfycwx1tn8Qj5hGGk5u\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/governance/utils/Votes.sol\":{\"keccak256\":\"0x3f91c79d6f55db9e4fc36e1cfe6a483a7b0f5be60fecbd979555071673746d47\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9b1e3c64cbeb2757a2a1a45c69f7f3984a93b0eadd1016341b64f9d94f89d7c4\",\"dweb:/ipfs/QmP1Mj14U4vMTFa2rv2nodMbWSCov2ac9Md8W2aUcgYdKX\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x4aaaf1c0737dd16e81f0d2b9833c549747a5ede6873bf1444bc72aa572d03e98\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://eada27d7668eebaea16c3b890aa1b38ffc53965292e26c96f7c44834623f4710\",\"dweb:/ipfs/QmVSWuLtxyCqNbLyY89ptxkvsk4CLLKDQYigEne5Qj8k1L\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":{\"keccak256\":\"0xe103e95f854ef0cd1bba5f469175f67cd332f5c2561941f165e3dd65cee94d6d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cf8cc5d07cf8003255f9d766fe8188b9f6e33b6240e126a605f0d061566b23e\",\"dweb:/ipfs/Qmd7okDCSoUt1L4G9hmb5c4W8kWUnfpAa2jyBKUp4xKErd\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol\":{\"keccak256\":\"0x62dc9346044aabf22d78541bd495aa6ca05a7f5100aed26196ba35d40b59fcb5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5221df4501c74cd4493fee1a0f0788e02c4dc78c3c601e9f557f557c5a53ea92\",\"dweb:/ipfs/QmZpzyYY9dKLrgvYhXSHT93jwqb1UGvtGNMQk5dpECY5pa\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":{\"keccak256\":\"0xaad20f8713b5cd98114278482d5d91b9758f9727048527d582e8e88fd4901fd8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5396e8dbb000c2fada59b7d2093b9c7c870fd09413ab0fdaba45d882959c6244\",\"dweb:/ipfs/QmXQn5XckSiUsUBpMYuiFeqnojRX4rKa9jmgjCPeTuPmhh\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x7d94fa0af099a2172eb01f9c8a8a443cbe7e0e43654841563e4e09968efdb549\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65e38fb76b6add407d4557753ae83dd1268e8261195dbe5c19a580d5ba6e4e9a\",\"dweb:/ipfs/QmTkGSJtaQrqjcyWM4AgemeEmKgtDydKPPVRajsUJRQSrK\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x10eb97d047f8d84fe263a02bb4a656ac6674f6679d74532cc37546289e073a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e41287d40b0c46982f1083d40d32de2761f009c5c51627fe79a7feb0ab1cf5c\",\"dweb:/ipfs/Qme7dbh6HX3ZvUJdbQAcVqXkmyXyfcLiUZRhhon3cU6K8p\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x66364cd3247ea71cdb58f080f5d5ed6732433a8001413139661841535494692f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0f87914c6645b58eaf75f00a156037a7da91129f3a56aec44aebfc715b19ea44\",\"dweb:/ipfs/QmNX7NLSMXyWuogvf8wfCwjUGwLhLBZrGktWPSdoHtERGp\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]},\"contracts/DLE.sol\":{\"keccak256\":\"0x1df38e144b504aedaf1b19b676fbaa3a29d368ae2a1140e82cd520a8035b208b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ce163d0cc51c05c8db28015759fdc009e5cf49abbed5133ff4a88dc650f77acc\",\"dweb:/ipfs/QmP32iWkjCqUfpRgo8mvBKdEj4hkjEA6zwnP5Wfe49opi9\"]}},\"version\":1}"}}}}}